forked from danieleteti/delphimvcframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.TXT
40 lines (33 loc) · 1.48 KB
/
CHANGES.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
28/06/2016
- added method TWebContext.SessionStarted (check sample Sessions to see how it works)
- added method TWebContext.SessionID
- added unit test for TWebContext.SessionStarted
27/06/2016
- updated IDE Expert to generate parameterless actions
23/06/2016
- completed jwt middleware (check jwtmiddleware sample to know how to use)
- added "HasError" and "Error" properties to the IRESTResponse (thank you Mathias Pannier)
- added "Context.Request.QueryStringParams: TStrings"
22/06/2016
- Added strongly typed actions
- TWebContext param in the actions is optional
- In caso of "action not found", the server dont returns NEVER the document index
- Refactoring
- More unit tests
- BasicDemo updated
- articles_crud.dproj updated to user typed action
15/03/2015
- all the built-in methods have been moved under the /system controller
- messaging system is ready to test. It now uses RabbitMQ
- authentication/authorization architecture
- basic authentication is builtin
- new method for middleware: OnBeforeControllerAction
- new configuration block in TMVCEngine.Create (now is the preferred way to configure the server)
- Declared in MVCFramework.Commons the record HTTP_STATUS which defines all the HTTP/1.1 status code.
31/03/2015
- messaging system now supports queues and topics
- some minor bug fixes in the objectsmappers
- added new build system based on a python script
- added more unit tests
- added support for JWT
- added auth middleware based on JWT