Skip to content

Commit

Permalink
Bump version to 1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tao committed Feb 19, 2022
1 parent 09a351d commit fc68b8c
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 3 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 7)
set(DROGON_PATCH_VERSION 4)
set(DROGON_PATCH_VERSION 5)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
Expand Down
46 changes: 45 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,48 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.7.5] - 2022-02-19

### API changes list

- Add toString for drogon::ReqResult.

- Add max-age, samesite options to Cookie.

- Enable setup output of logs to files at any time.

### Changed

- Use operator<< to convert ReqResult to string.

- Remove sudo from build.sh.

- Remove sudo from dependencies in Dockerfile.

- Avoid attempt linking to std::fs when target does not exist.

- Destroy fastdb client on quit.

- Check HTTP client is not sending requests in sync mode on the same event loop.

- Start listening after beginning advices.

- Allow using json_cpp in other sublibraries.

- Accept system lib for uuid on macOS.

- Add `Not In` to ORM Criteria.

### Fixed

- Fix WS test potentially can get stuck.

- Fix a bug in model generation.

- Prevent malformed upload path causing arbitrary write.

- Fix missing "using namespace drogon::orm;" at autogenerated restful controllers.

## [1.7.4] - 2021-12-11

### API Change List
Expand Down Expand Up @@ -980,7 +1022,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.7.4...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.7.5...HEAD

[1.7.5]: https://github.com/an-tao/drogon/compare/v1.7.4...v1.7.5

[1.7.4]: https://github.com/an-tao/drogon/compare/v1.7.3...v1.7.4

Expand Down
2 changes: 1 addition & 1 deletion trantor

0 comments on commit fc68b8c

Please sign in to comment.