Skip to content

Commit 112dc7b

Browse files
Release v1.25.0 (#1697)
Updated CHANGELOG.md and CMakeLists.txt files Relates-To: DATASDK-95 Signed-off-by: Rustam Gamidov <ext-rustam.gamidov@here.com>
1 parent a88900c commit 112dc7b

6 files changed

Lines changed: 23 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v1.25.0 (11/05/2026)
2+
3+
**Common**
4+
* Migrated from `RapidJSON` to `boost::json` throughout the codebase.
5+
* Converted rarely used `boost::any` cases to `olp::porting::any`.
6+
7+
**olp-cpp-sdk-authentication**
8+
* Changed `Date` response header field parsing to be locale independent.
9+
10+
**olp-cpp-sdk-core**
11+
* Added missing headers for compatibility with newer compilers.
12+
* Added `BOOST_CONSTEXPR_OR_CONST` to `olp::porting::none` declaration.
13+
* Added transfer rate limit support to `olp::http::NetworkCurl` class that can be set using `olp::http::NetworkInitializationSettings::max_transfer_bytes_per_second` value.
14+
* Added the `olp::client::ErrorCode::NoContent` error code to explicitly indicate the absence of data on the backend.
15+
16+
**olp-cpp-sdk-dataservice-read**
17+
* Fixed `olp::dataservice::read::QuadTreeIndex` resource handling by removing thread local `rapidjson::MemoryPoolAllocator` that could lead to resource leaking.
18+
119
## v1.24.0 (19/01/2026)
220

321
**Common**

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.9)
1919

2020
# Build the sdk targets
21-
project(olp-cpp-sdk VERSION 1.24.0)
21+
project(olp-cpp-sdk VERSION 1.25.0)
2222

2323
# Add preprocessor definitions for the SDK version and platform name
2424
add_definitions(-DOLP_SDK_VERSION_STRING=\"${olp-cpp-sdk_VERSION}\")

olp-cpp-sdk-authentication/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616
# License-Filename: LICENSE
1717

18-
project(olp-cpp-sdk-authentication VERSION 1.24.0)
18+
project(olp-cpp-sdk-authentication VERSION 1.25.0)
1919
set(DESCRIPTION "C++ API library for accessing HERE Account authentication service")
2020

2121
find_package(Boost REQUIRED)

olp-cpp-sdk-core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# License-Filename: LICENSE
1717

1818

19-
project(olp-cpp-sdk-core VERSION 1.24.0)
19+
project(olp-cpp-sdk-core VERSION 1.25.0)
2020
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")
2121

2222
find_package(Boost REQUIRED)

olp-cpp-sdk-dataservice-read/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616
# License-Filename: LICENSE
1717

18-
project(olp-cpp-sdk-dataservice-read VERSION 1.24.0)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.25.0)
1919
set(DESCRIPTION "C++ API library for reading OLP data")
2020

2121
file(GLOB_RECURSE INC "include/*.h*")

olp-cpp-sdk-dataservice-write/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616
# License-Filename: LICENSE
1717

18-
project(olp-cpp-sdk-dataservice-write VERSION 1.24.0)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.25.0)
1919
set(DESCRIPTION "C++ API library for writing data to OLP")
2020

2121
find_package(Boost REQUIRED)

0 commit comments

Comments
 (0)