Bump version to 1.8.2

This commit is contained in:
an-tao 2022-11-11 21:08:29 +08:00
parent ab10d8cb22
commit 31fa010ca9
2 changed files with 30 additions and 2 deletions

View File

@ -29,7 +29,7 @@ CMAKE_DEPENDENT_OPTION(BUILD_REDIS "Build with redis support" ON "BUILD_ORM" OFF
set(DROGON_MAJOR_VERSION 1)
set(DROGON_MINOR_VERSION 8)
set(DROGON_PATCH_VERSION 1)
set(DROGON_PATCH_VERSION 2)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
set(DROGON_VERSION_STRING "${DROGON_VERSION}")

View File

@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.8.2] - 2022-11-11
### API changes list
- Add the queueInLoopCoro function.
- Avoid HashDoS attacks via random per-session hash initial state.
### Changed
- Support the mediumint column when generate the mysql model.
- Set Hiredis_FOUND to true when finding Hiredis library.
- Add rate limiter.
- Add some test cases for the sqlite datetime type.
### Fixed
- Fix typo in drogon_test.h.
- Fix a date race in drogon_test.
- Fix a deadlock bug when closing all database connections.
## [1.8.1] - 2022-09-25
### API changes list
@ -1189,7 +1215,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.8.1...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.8.2...HEAD
[1.8.2]: https://github.com/an-tao/drogon/compare/v1.8.1...v1.8.2
[1.8.1]: https://github.com/an-tao/drogon/compare/v1.8.0...v1.8.1