-
-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/danieleteti/delphimvcframework/issues/349
- Loading branch information
1 parent
1fd7740
commit 841edeb
Showing
6 changed files
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,9 +61,9 @@ Congratulations to Daniele Teti and all the staff for the excellent work!" -- Ma | |
* Works on Linux (Delphi 10.2 Tokyo or better) | ||
* Completely unit tested (more than 130 unit tests) | ||
* There is a sample for each functionality (check the [dmvcframework_(yourversion)_samples.zip](https://github.com/danieleteti/delphimvcframework/releases)) | ||
* Server side generated pages using [Mustache for Delphi](https://github.com/synopse/dmustache) | ||
* Server side generated pages using [Mustache for Delphi](https://github.com/synopse/dmustache) or [TemplatePro](https://github.com/danieleteti/templatepro) | ||
* Specific trainings are available (email to `[email protected]` for a date and a place) | ||
* Messaging extension using [ServerSentEvents](https://github.com/danieleteti/delphimvcframework/tree/master/samples/serversentevents) | ||
* Push notifications support using [ServerSentEvents](https://github.com/danieleteti/delphimvcframework/tree/master/samples/serversentevents) | ||
* Automatic documentation through `/system/describeserver.info` | ||
* Driven by its huge community (Facebook group https://www.facebook.com/groups/delphimvcframework) | ||
* Semantic Versioning | ||
|
@@ -195,6 +195,8 @@ end; | |
|
||
- New! Added `TMVCActiveRecord.Count<T>(RQL)` to count record based on RQL criteria | ||
|
||
- New! `TMVCActiveRecord` can handle non autogenerated primary key. | ||
|
||
- New! Calling `<jsonrpcendpoint>/describe` returns the methods list available for that endpoint. | ||
|
||
- New! Experimental (alpha stage) support for Android servers! | ||
|
@@ -249,9 +251,9 @@ begin | |
end; | ||
``` | ||
- New! Shortcut render' methods which simplify RESTful API development | ||
- `procedure ResponseCreated(const Location: String = ''; const Reason: String = 'Created'); virtual;` | ||
- ` procedure ResponseAccepted(const HREF: String; const ID: String; const Reason: String = 'Accepted'); virtual;` | ||
- `procedure ResponseNoContent(const Reason: String = 'No Content'); virtual;` | ||
- `procedure Render201Created(const Location: String = ''; const Reason: String = 'Created'); virtual;` | ||
- ` procedure Render202Accepted(const HREF: String; const ID: String; const Reason: String = 'Accepted'); virtual;` | ||
- `procedure Render204NoContent(const Reason: String = 'No Content'); virtual;` | ||
|
||
- Added de/serializing iterables (e.g. generic lists) support without `MVCListOf` attribute (Thank you to [João Antônio Duarte](https://github.com/joaoduarte19)). | ||
|
||
|
@@ -277,6 +279,8 @@ end; | |
- New! The **MVCAREntitiesGenerator** can optionally register all the generated entities also in the `ActiveRecordMappingRegistry` (Thanks to [Fabrizio Bitti](https://twitter.com/fabriziobitti) from [bit Time Software](http://www.bittime.it)) | ||
- Fixed! [issue38](https://github.com/danieleteti/delphimvcframework/issues/38) | ||
- Fixed! [issue184](https://github.com/danieleteti/delphimvcframework/issues/184) | ||
- Fixed! [issue278](https://github.com/danieleteti/delphimvcframework/issues/278) | ||
|
@@ -305,6 +309,8 @@ end; | |
- Fixed! [issue345](https://github.com/danieleteti/delphimvcframework/issues/345) | ||
- Fixed! [issue349](https://github.com/danieleteti/delphimvcframework/issues/349) | ||
- **Breaking Change!** In `MVCActiveRecord` attribute `MVCPrimaryKey` has been removed and merged with `MVCTableField`, so now `TMVCActiveRecordFieldOption` is a set of `foPrimaryKey`, `foAutoGenerated`, `foTransient` (check `activerecord_showcase.dproj` sample). | ||
- **Breaking Change!** Middleware `OnAfterControllerAction` are now invoked in the same order of `OnBeforeControllerAction` (previously were invoked in reversed order). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters