Skip to content

Commit

Permalink
Bump version to 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tao committed Nov 11, 2022
1 parent ab10d8c commit 31fa010
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
30 changes: 29 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 31fa010

Please sign in to comment.