Skip to content

Commit 939c55a

Browse files
authored
Release v1.17.0 (#1437)
Updated CHANGELOG and CMakeLists files for the release v1.17.0 Relates-To: OLPEDGE-2835 Signed-off-by: Yevhen Krasilnyk <[email protected]>
1 parent 2fd2782 commit 939c55a

File tree

6 files changed

+30
-5
lines changed

6 files changed

+30
-5
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## v1.17.0 (11/10/2023)
2+
3+
**Common**
4+
* Improved support of HTTP proxy on iOS.
5+
* Cleaned up DNS cache on error in cURL (Android).
6+
* Updated `olp-cpp-sdk-core/CMakeLists.txt` to include the externals include directory.
7+
* Added the possibility to specify DNS using `WithDNSServers` to the `olp::http::NetworkSettings` API.
8+
* Improved logging in `olp::client::PendingUrlRequests`.
9+
* 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.
10+
* Fixed the `boost` and `rapidjson` includes path resolution in `olp-cpp-sdk-core/CMakeLists.txt`.
11+
* 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`.
12+
* Added a status code for failed `HTTP` requests in `olp::dataservice::read::repository::PrefetchTilesRepository`.
13+
* Censored credentials in log messages for the network logs on the `DEBUG` log level.
14+
* Fixed the `rapidjson` include directory.
15+
16+
**olp-cpp-sdk-authentication**
17+
* Added the ability to use a custom token endpoint URL from credentials in `olp::authentication::Settings`.
18+
19+
**olp-cpp-sdk-dataservice-read**
20+
* Added support of requests with more than 100 partitions in the `olp::dataservice::read::repository::PartitionsRepository` API.
21+
* Added default copy and move constructors and operators to the `model` namespace classes.
22+
23+
**olp-cpp-sdk-dataservice-write**
24+
* Added default copy and move constructors and operators to the `model` namespace classes.
25+
126
## v1.16.0 (13/06/2023)
227

328
**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.16.0)
21+
project(olp-cpp-sdk VERSION 1.17.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.16.0)
18+
project(olp-cpp-sdk-authentication VERSION 1.17.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.16.0)
19+
project(olp-cpp-sdk-core VERSION 1.17.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.16.0)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.17.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.16.0)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.17.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)