From 5b404104666114eba33db55d88db8b92c50a44c3 Mon Sep 17 00:00:00 2001 From: antao Date: Fri, 4 Oct 2019 15:18:09 +0800 Subject: [PATCH] Update drogon version to v1.0.0-beta8 --- ChangeLog.md | 35 ++++++++++++++++++++++++++++++++++- README.md | 2 +- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 32e82adb..a06699bd 100644 --- a/ChangeLog.md +++ b/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()` 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 diff --git a/README.md b/README.md index f5f58699..93684031 100755 --- a/README.md +++ b/README.md @@ -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.