Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## v1.18.0 (06/03/2024)
**Common**
* Updated the code to support the latest versions of popular compilers.
* Updated `olp::http::NetworkCurl` class to use 4x more opened connections than requests to avoid issues with connection caching.
* Extended `olp::client::RetrySettings` with `connection_timeout` and `transfer_timeout`.
* Implemented performance improvements.
* Updated the minimal required version of `cURL` for SSL blob support to 7.77.0.
* Added support for background downloads for iOS.
* Fixed possible data race in `olp::cache::DefaultCache` when the cache size is being checked.
* Added `OLP_SDK_ENABLE_OFFLINE_MODE` CMake option to enforce full offline mode for the SDK.
* Changed `olp::cache::DiskCache::Open` to return `olp::cache::OpenResult::Postponed` when the protected can't be initialized at the given moment due to restrictions like missing permissions.
* Changed `olp::cache::DefaultCache::Open` to scan the cache path for unexpected directories and report them as errors.

**olp-cpp-sdk-authentication**
* The credentials file is parsed correctly when it has unexpected line endings which can occur when copying the file between different operating systems.

**olp-cpp-sdk-dataservice-read**
* Fixed possible crash in `olp::dataservice::read::PartitionsCacheRepository` that occurred when the stream closed before parsing started.
* Changed the `olp::dataservice::read::repository::PartitionsSaxHandler` to be cancellable.
* Extended `olp::dataservice::read::VersionedLayerClient` with `Protect(..)` and `Release(..)` methods to protect and release multiple partitions at once.
* Added more checks for the results of cache-related operations.
* Updated `olp::dataservice::read::VersionedLayerClient::Release` to take the list of tiles from the request into account and assume that they will be released.
* Introduced performance improvements.

## v1.17.0 (11/10/2023)

**Common**
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
cmake_minimum_required(VERSION 3.9)

# Build the sdk targets
project(olp-cpp-sdk VERSION 1.17.0)
project(olp-cpp-sdk VERSION 1.18.0)

# Add preprocessor definitions for the SDK version and platform name
add_definitions(-DOLP_SDK_VERSION_STRING=\"${olp-cpp-sdk_VERSION}\")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ For details, see <a href="https://github.com/heremaps/here-data-sdk-cpp/blob/mas

## LICENSE

Copyright (C) 2019–2023 HERE Europe B.V.
Copyright (C) 2019–2024 HERE Europe B.V.

For license details, see the <a href="https://github.com/heremaps/here-data-sdk-cpp/blob/master/LICENSE" target="_blank">LICENSE</a> file in the root of this project.

Expand Down
4 changes: 2 additions & 2 deletions olp-cpp-sdk-authentication/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2021 HERE Europe B.V.
# Copyright (C) 2019-2024 HERE Europe B.V.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0
# License-Filename: LICENSE

project(olp-cpp-sdk-authentication VERSION 1.17.0)
project(olp-cpp-sdk-authentication VERSION 1.18.0)
set(DESCRIPTION "C++ API library for accesing HERE Account authentication service")

file(GLOB_RECURSE AUTHENTICATION_INC "include/*.h*")
Expand Down
2 changes: 1 addition & 1 deletion olp-cpp-sdk-core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# License-Filename: LICENSE


project(olp-cpp-sdk-core VERSION 1.17.0)
project(olp-cpp-sdk-core VERSION 1.18.0)
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")

find_package(RapidJSON 1.1.0 REQUIRED)
Expand Down
4 changes: 2 additions & 2 deletions olp-cpp-sdk-dataservice-read/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2021 HERE Europe B.V.
# Copyright (C) 2019-2024 HERE Europe B.V.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0
# License-Filename: LICENSE

project(olp-cpp-sdk-dataservice-read VERSION 1.17.0)
project(olp-cpp-sdk-dataservice-read VERSION 1.18.0)
set(DESCRIPTION "C++ API library for reading OLP data")

file(GLOB_RECURSE INC "include/*.h*")
Expand Down
4 changes: 2 additions & 2 deletions olp-cpp-sdk-dataservice-write/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2021 HERE Europe B.V.
# Copyright (C) 2019-2024 HERE Europe B.V.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0
# License-Filename: LICENSE

project(olp-cpp-sdk-dataservice-write VERSION 1.17.0)
project(olp-cpp-sdk-dataservice-write VERSION 1.18.0)
set(DESCRIPTION "C++ API library for writing data to OLP")

set(OLP_SDK_DATASERVICE_WRITE_API_HEADERS
Expand Down