Skip to content

Commit 411a109

Browse files
committed
mint 2.10.19
1 parent 096a9a1 commit 411a109

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Release/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif()
1111

1212
set(CPPREST_VERSION_MAJOR 2)
1313
set(CPPREST_VERSION_MINOR 10)
14-
set(CPPREST_VERSION_REVISION 18)
14+
set(CPPREST_VERSION_REVISION 19)
1515

1616
enable_testing()
1717

Release/include/cpprest/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
*/
66
#define CPPREST_VERSION_MINOR 10
77
#define CPPREST_VERSION_MAJOR 2
8-
#define CPPREST_VERSION_REVISION 18
8+
#define CPPREST_VERSION_REVISION 19
99

1010
#define CPPREST_VERSION (CPPREST_VERSION_MAJOR * 100000 + CPPREST_VERSION_MINOR * 100 + CPPREST_VERSION_REVISION)

changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
cpprestsdk (2.10.19)
2+
* PR#1982 make Uri.is_host_loopback() only return true for localhost and 127.0.0.1 exactly.
3+
The old behavior could potentially return "true" for URLs that were not, in fact, local,
4+
and this could cause security issues if is_host_loopback was used in certain ways.
5+
* PR#1711 Fix likely typo in SafeInt3.hpp, that results in error with clang 15
6+
* PR#1496 Support for oauth2 with "client_credentials" grant type.
7+
* PR#1429 Add constructor from all integer types for json value.
8+
* PR#1577 export http_exception for non Windows builds using visibility macros.
9+
110
cpprestsdk (2.10.18)
211
* PR#1571 Add ability to parse and emit the NT Epoch 1601-01-01T00:00:00Z
312
* PR#1571 Update vcpkg submodule

0 commit comments

Comments
 (0)