Skip to content

Commit e2b4c85

Browse files
Release v1.19.0 (#1509)
Updated CHANGELOG and CMakeLists files for the release v1.19.0 Relates-To: DATASDK-1 Signed-off-by: Rustam Gamidov <ext-rustam.gamidov@here.com>
1 parent f32d817 commit e2b4c85

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## v1.19.0 (13/05/2024)
2+
3+
**Common**
4+
* Added `Promote` to the `olp::cache::KeyValueCache` API to explicitly promote the key in the LRU (Least Recently Used) cache.
5+
* Fixed the CMake configuration for MSVC build.
6+
* Updated code snippets and documentation to reflect recent changes in the API.
7+
8+
**olp-cpp-sdk-authentication**
9+
* Changed `olp::authentication::AuthenticationClientImpl::SignInClient` to retry based on the configuration in `olp::client::RetrySettings` instead of returning an error immediately in case of transient errors.
10+
* Fixed parsing of server time returned in the response header when there are time zone differences.
11+
12+
**olp-cpp-sdk-core**
13+
* Added `system_error` explicitly to `/olp/core/porting/shared_mutex.h` to support GCC 13.2.
14+
* Changed `olp::http::NetworkCurl` to log the location of the certificate used.
15+
* Changed `olp::client::HRN::ToString()` and `olp::client::HRN::ToCatalogHRNString()` implementations to avoid streams.
16+
* Changed the `olp::http::Md5LookupGetBySubject` signature to support OpenSSL v3.x.
17+
18+
**olp-cpp-sdk-dataservice-read**
19+
* Decreased the number of memory reallocations for instances when only the tile keys are required by the caller.
20+
121
## v1.18.1 (07/03/2024)
222

323
**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.18.1)
21+
project(olp-cpp-sdk VERSION 1.19.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.18.1)
18+
project(olp-cpp-sdk-authentication VERSION 1.19.0)
1919
set(DESCRIPTION "C++ API library for accesing HERE Account authentication service")
2020

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

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.18.1)
19+
project(olp-cpp-sdk-core VERSION 1.19.0)
2020
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")
2121

2222
find_package(RapidJSON 1.1.0 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.18.1)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.19.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.18.1)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.19.0)
1919
set(DESCRIPTION "C++ API library for writing data to OLP")
2020

2121
set(OLP_SDK_DATASERVICE_WRITE_API_HEADERS

0 commit comments

Comments
 (0)