Skip to content

Commit 6d9ecb8

Browse files
committed
Bump version to 1.9.8
1 parent 23c561f commit 6d9ecb8

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CMAKE_DEPENDENT_OPTION(USE_SPDLOG "Allow using the spdlog logging library" OFF "
2525

2626
set(DROGON_MAJOR_VERSION 1)
2727
set(DROGON_MINOR_VERSION 9)
28-
set(DROGON_PATCH_VERSION 7)
28+
set(DROGON_PATCH_VERSION 8)
2929
set(DROGON_VERSION
3030
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
3131
set(DROGON_VERSION_STRING "${DROGON_VERSION}")

ChangeLog.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.9.8] - 2024-10-27
8+
9+
### API changes list
10+
11+
- Add in-place base64 encode and decode.
12+
13+
- Add check the client connection status.
14+
15+
### Changed
16+
17+
- Add Hodor whitelists.
18+
19+
- Include exception header for std::exception_ptr.
20+
21+
- Add support for escaped identifiers in Postgresql.
22+
23+
- Remove content-length header from 101 Switching Protocols response.
24+
25+
- Remove websocketResponseTest from windows shared library env.
26+
27+
- Optimize query params and allow for empty values.
28+
29+
- Replace rejection sampling and remove use of rand().
30+
31+
- Add sending customized http requests to drogon_ctl.
32+
33+
### Fixed
34+
35+
- Fix coroutine continuation handle.
36+
37+
- Fix some bugs in plugin PromExporter.
38+
39+
- Fix a bug after removing content-length header in some responses.
40+
741
## [1.9.7] - 2024-09-10
842

943
### API changes list
@@ -1725,7 +1759,9 @@ All notable changes to this project will be documented in this file.
17251759

17261760
## [1.0.0-beta1] - 2019-06-11
17271761

1728-
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.7...HEAD
1762+
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.8...HEAD
1763+
1764+
[1.9.8]: https://github.com/an-tao/drogon/compare/v1.9.7...v1.9.8
17291765

17301766
[1.9.7]: https://github.com/an-tao/drogon/compare/v1.9.6...v1.9.7
17311767

trantor

0 commit comments

Comments
 (0)