Update drogon version to v1.0.0-beta8
This commit is contained in:
parent
e8a6bdc245
commit
5b40410466
35
ChangeLog.md
35
ChangeLog.md
|
@ -4,16 +4,47 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0-beta8] - 2019-10-03
|
||||
|
||||
### API change list
|
||||
|
||||
- Add length() method to the Field class.
|
||||
|
||||
- Add `as<bool>()` function template specialization to the Field class.
|
||||
|
||||
- Add add attribute store methods to the HttpRequest class.
|
||||
|
||||
- Add the setCustomContentTypeString() method to the HttpRequest class.
|
||||
|
||||
- Add thread storage.
|
||||
|
||||
|
||||
### Changed
|
||||
|
||||
- Use .find('x') instead of .find("x") in a string search.
|
||||
|
||||
- Add the ability to create restful API controllers.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix a bug of creating models for mysql.
|
||||
|
||||
- Fix a bug when HTTP method is PUT.
|
||||
|
||||
- Fix a bug when using 'is null' substatement in ORM.
|
||||
|
||||
- Fix a sqlite3 bug when some SQL errors occur.
|
||||
|
||||
- Fix bug with parsing json.
|
||||
|
||||
- Fix url decode.
|
||||
|
||||
- Fix a error in HttpClient.
|
||||
|
||||
- Fix a error in setThreadNum method.
|
||||
|
||||
- Fix some race conditions.
|
||||
|
||||
## [1.0.0-beta7] - 2019-08-31
|
||||
|
||||
### API change list
|
||||
|
@ -147,7 +178,9 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [1.0.0-beta1] - 2019-06-11
|
||||
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta7...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta8...HEAD
|
||||
|
||||
[1.0.0-beta8]: https://github.com/an-tao/drogon/compare/v1.0.0-beta7...v1.0.0-beta8
|
||||
|
||||
[1.0.0-beta7]: https://github.com/an-tao/drogon/compare/v1.0.0-beta6...v1.0.0-beta7
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
Drogon's main application platform is Linux. It also supports Mac OS and FreeBSD. Currently, it does not support windows. Its main features are as follows:
|
||||
|
||||
* Use a non-blocking I/O network lib based on epoll (kqueue under MacOS/FreeBSD) to provide high-concurrency, high-performance network IO, please visit the [benchmarks](https://github.com/an-tao/drogon/wiki/13-Benchmarks) page for more details;
|
||||
* Use a non-blocking I/O network lib based on epoll (kqueue under MacOS/FreeBSD) to provide high-concurrency, high-performance network IO, please visit the [benchmarks](https://github.com/an-tao/drogon/wiki/13-Benchmarks) page and [TFB Live Results](https://tfb-status.techempower.com/) for more details;
|
||||
* Provide a completely asynchronous programming mode;
|
||||
* Support Http1.0/1.1 (server side and client side);
|
||||
* Based on template, a simple reflection mechanism is implemented to completely decouple the main program framework, controllers and views.
|
||||
|
|
Loading…
Reference in New Issue