Skip to content

Commit 89aca8c

Browse files
committed
Bump version to 1.9.12
1 parent 21ebedc commit 89aca8c

File tree

3 files changed

+37
-4
lines changed

3 files changed

+37
-4
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 11)
28+
set(DROGON_PATCH_VERSION 12)
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: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,41 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.9.12] - 2026-01-26
8+
9+
### API changes list
10+
11+
- Implement when_all coroutine gate.
712

813
### Changed
914

10-
- Add toString method to all models
15+
- Models: add toString method.
16+
17+
- changing std::strlen to a string comparison consistent with multibyte chars on model generation templates.
18+
19+
- Enhance error handling in CacheFile methods.
20+
21+
- Mysql exception forward errorNo to SqlError.
22+
23+
- Support unsigned integer types in MySQL ORM.
24+
25+
### Fixed
26+
27+
- Fix errors after database connection interruption.
28+
29+
- Use redisFreeCommand instead of free() function.
30+
31+
- Fix the missing openssl dependency in FindMysql.
32+
33+
- Fix warnings - for range loop no copies, unsigned int always >= 0.
34+
35+
- Fix cross compiling.
36+
37+
- Fix linker errors on mingw64.
38+
39+
- Fix SQL syntax error when UPDATE has no fields to update.
40+
41+
- Fix unused variable warnings.
1142

1243
## [1.9.11] - 2025-06-20
1344

@@ -1847,7 +1878,9 @@ All notable changes to this project will be documented in this file.
18471878

18481879
## [1.0.0-beta1] - 2019-06-11
18491880

1850-
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.11...HEAD
1881+
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.12...HEAD
1882+
1883+
[1.9.12]: https://github.com/an-tao/drogon/compare/v1.9.11...v1.9.12
18511884

18521885
[1.9.11]: https://github.com/an-tao/drogon/compare/v1.9.10...v1.9.11
18531886

0 commit comments

Comments
 (0)