Skip to content

Commit

Permalink
Release v1.17.0 (#1437)
Browse files Browse the repository at this point in the history
Updated CHANGELOG and CMakeLists files for the release v1.17.0

Relates-To: OLPEDGE-2835

Signed-off-by: Yevhen Krasilnyk <ext-yevhen.krasilnyk@here.com>
  • Loading branch information
Smartkras committed Oct 11, 2023
1 parent 2fd2782 commit 939c55a
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## v1.17.0 (11/10/2023)

**Common**
* Improved support of HTTP proxy on iOS.
* Cleaned up DNS cache on error in cURL (Android).
* Updated `olp-cpp-sdk-core/CMakeLists.txt` to include the externals include directory.
* Added the possibility to specify DNS using `WithDNSServers` to the `olp::http::NetworkSettings` API.
* Improved logging in `olp::client::PendingUrlRequests`.
* Added `CallApiStream` to the `olp::client::OlpClient` API that uses the `SAX` parser and `JSON` byte stream to parse the layer partitions while they are downloading.
* Fixed the `boost` and `rapidjson` includes path resolution in `olp-cpp-sdk-core/CMakeLists.txt`.
* Changed the log level to `WARNING` for the error message when the max number of `HTTP` requests has been reached in `olp::http::OLPNetworkIOS::Send`.
* Added a status code for failed `HTTP` requests in `olp::dataservice::read::repository::PrefetchTilesRepository`.
* Censored credentials in log messages for the network logs on the `DEBUG` log level.
* Fixed the `rapidjson` include directory.

**olp-cpp-sdk-authentication**
* Added the ability to use a custom token endpoint URL from credentials in `olp::authentication::Settings`.

**olp-cpp-sdk-dataservice-read**
* Added support of requests with more than 100 partitions in the `olp::dataservice::read::repository::PartitionsRepository` API.
* Added default copy and move constructors and operators to the `model` namespace classes.

**olp-cpp-sdk-dataservice-write**
* Added default copy and move constructors and operators to the `model` namespace classes.

## v1.16.0 (13/06/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.16.0)
project(olp-cpp-sdk VERSION 1.17.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 olp-cpp-sdk-authentication/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0
# License-Filename: LICENSE

project(olp-cpp-sdk-authentication VERSION 1.16.0)
project(olp-cpp-sdk-authentication VERSION 1.17.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.16.0)
project(olp-cpp-sdk-core VERSION 1.17.0)
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")

find_package(RapidJSON 1.1.0 REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion olp-cpp-sdk-dataservice-read/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0
# License-Filename: LICENSE

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

file(GLOB_RECURSE INC "include/*.h*")
Expand Down
2 changes: 1 addition & 1 deletion olp-cpp-sdk-dataservice-write/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# SPDX-License-Identifier: Apache-2.0
# License-Filename: LICENSE

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

set(OLP_SDK_DATASERVICE_WRITE_API_HEADERS
Expand Down

0 comments on commit 939c55a

Please sign in to comment.