Skip to content

Commit

Permalink
Bump version to 1.9.0-rc.1 (#1789)
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tao authored Sep 24, 2023
1 parent 6cb8ac6 commit 94ca651
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 17 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ CMAKE_DEPENDENT_OPTION(BUILD_SQLITE "Build with sqlite3 support" ON "BUILD_ORM"
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 6)
set(DROGON_MINOR_VERSION 9)
set(DROGON_PATCH_VERSION 0)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
set(DROGON_VERSION_STRING "${DROGON_VERSION}-rc.1")

include(GNUInstallDirs)
# Offer the user the choice of overriding the installation directories
Expand Down
74 changes: 61 additions & 13 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,58 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.9.0-rc.1] - 2023-09-23

### API changes list

- Drop cpp14 build support.

- Add isHead() method to HttpRequest, to preserve information about the original method for use in the controller.

- Allow omitting template paremeter in execCommandSync.

- Add a method to HttpRequest to access the matched routing parameters.

### Changed

- Update readme files.

- Allow sync advice to be callable on websocket requests.

- Set concurrency to prevent blocking CI queue.

- Validate clang-format version & Customize clang-format path.

- Extract format action into distinct job.

- Split macOS and Ubuntu CIs for readability.

- Set concurrency for CodeQL.

- Add dependabot.yml for GH actions.

- Replace sprintf with snprintf.

- Use ninja to build faster.

- Avoid using well-known ports for demoMain.

- Simplify coroutine implementation.

- Add a plugin for prometheus.

- Optimize plugins with redirection functions.

- Optimize regex generator.

- Add override keyword to setSockOptCallback.

- SlashRemover optimization.

### Fixed

- Fix race condition when setting the secure flag during test.

## [1.8.6] - 2023-08-23

### Changed
Expand Down Expand Up @@ -34,7 +86,7 @@ All notable changes to this project will be documented in this file.

- Add synchronization interface to model's associated query.

- Use syncAdvices.empty() to check.
- Use syncAdvices.empty() to check.

- Remove the deprecated Json::Reader.

Expand Down Expand Up @@ -80,7 +132,7 @@ All notable changes to this project will be documented in this file.

- Make isBase64() and isInteger() take string_view.

- Chore: add package.xml.
- Chore: add package.xml.

- Add an example of yaml config file.

Expand Down Expand Up @@ -136,7 +188,6 @@ All notable changes to this project will be documented in this file.

- Fix broken link in CONTRIBUTING.md.


## [1.8.4] - 2023-03-19

### API Changes list
Expand Down Expand Up @@ -401,7 +452,6 @@ All notable changes to this project will be documented in this file.

- Add a pre-compilation macro in the pg pipeline test code.


## [1.7.5] - 2022-02-19

### API changes list
Expand All @@ -410,7 +460,7 @@ All notable changes to this project will be documented in this file.

- Add max-age, samesite options to Cookie.

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

### Changed

Expand Down Expand Up @@ -1216,7 +1266,6 @@ All notable changes to this project will be documented in this file.

- Fix(compilation on alpine): Replace u_short alias.


## [1.0.0-beta9] - 2019-10-28

### API changes list
Expand Down Expand Up @@ -1245,7 +1294,6 @@ All notable changes to this project will be documented in this file.

- Fix a busy loop bug when connections to MySQL server are timeout.


## [1.0.0-beta8] - 2019-10-03

### API changes list
Expand All @@ -1260,7 +1308,6 @@ All notable changes to this project will be documented in this file.

- Add thread storage.


### Changed

- Use .find('x') instead of .find("x") in a string search.
Expand Down Expand Up @@ -1304,7 +1351,7 @@ All notable changes to this project will be documented in this file.
- Reduce size of docker image.

- Make the framework API support chained calls.

- Add a synchronous join point for AOP.

- Modify the CMakeLists to modern cmake style.
Expand All @@ -1317,7 +1364,6 @@ All notable changes to this project will be documented in this file.

- Fix a bug in drogon_ctl (when creating orm models)


## [1.0.0-beta6] - 2019-08-08

### API changes list
Expand All @@ -1341,8 +1387,8 @@ All notable changes to this project will be documented in this file.
### Added

- Add two methods to control if the Server header or the Date header is sent to clients with HTTP responses.
* void HttpAppFramework::enableServerHeader(bool);
* void HttpAppFramework::enableDateHeader(bool);
* void HttpAppFramework::enableServerHeader(bool);
* void HttpAppFramework::enableDateHeader(bool);

### Changed

Expand Down Expand Up @@ -1420,7 +1466,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.6...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.0-rc.1...HEAD

[1.9.0-rc.1]: https://github.com/an-tao/drogon/compare/v1.8.6...1.9.0-rc.1

[1.8.6]: https://github.com/an-tao/drogon/compare/v1.8.5...v1.8.6

Expand Down
2 changes: 1 addition & 1 deletion trantor

0 comments on commit 94ca651

Please sign in to comment.