Skip to content

Commit

Permalink
Add changelog for 1.4.0 release. (#723)
Browse files Browse the repository at this point in the history
Update the package version to 1.4.0.

Relates-To: OLPEDGE-1673
Signed-off-by: Mykhailo Kuchma <ext-mykhailo.kuchma@here.com>
  • Loading branch information
mykhailo-kuchma authored Mar 23, 2020
1 parent 082415a commit 67dc351
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 8 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## v1.4.0 (23/03/2020)

**Common**

* **Breaking Change** Removed the deprecated `disk_path` property. Use the `disk_path_mutable` property instead.
* The `DefaultCache` constructor is now explicit and takes `CacheSettings` by value.
* Fixed data that was not validated during reading from LevelDB when the `olp::cache::OpenOptions::CheckCrc` property was provided.
* Various improvements in `olp::http::NetworkCurl` implementation. Some legacy features were removed.
* Added the `SetDefaultHeaders` method to `olp::http::Network`. Now, you can set default HTTP headers for each request made by `Network`. User agents set with default headers and user agents passed with network requests are concatenated into one header.
* Reduced compiler warnings about deprecated methods and classes.

**olp-cpp-sdk-authentication**

* Removed the deprecated `AuthenticationClient::SignInClient` method.

**olp-cpp-sdk-dataservice-read**

* Added the `RemoveFromCache` method to `VersionedLayerClient`. Now, you can remove specific partitions or tiles from the mutable cache.
* `VersionedLayerClient` now triggers an error when the request is passed with `FetchOption::CacheWithUpdate`. It makes no sense to update data when it is available in a cache for `VersionedLayerClient` since the version is locked.
* Now, when you pass a request to `VersionedLayerClient` or `VolatileLayerClient` with `FetchOption::OnlineOnly`, data is not stored in a cache. It is designed for a use case when you are not interested in storing data in a cache.

**olp-cpp-sdk-dataservice-write**

* Deprecated the `olp::dataservice::write::StreamLayerClient::CreateDefaultCache` method. It will be removed by 06.2020.

## v1.3.0 (04/03/2020)

**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.3.0)
project(olp-cpp-sdk VERSION 1.4.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 examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ elseif(ANDROID)
${OLP_SDK_EXAMPLE_FAILURE_STRING})

else()
project(${OLP_SDK_DATASERVICE_EXAMPLE_TARGET} VERSION 1.3.0)
project(${OLP_SDK_DATASERVICE_EXAMPLE_TARGET} VERSION 1.4.0)

add_library(${OLP_SDK_DATASERVICE_READ_EXAMPLE_TARGET}
${CMAKE_CURRENT_SOURCE_DIR}/ReadExample.cpp
Expand Down
2 changes: 1 addition & 1 deletion examples/android/app/CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

cmake_minimum_required(VERSION 3.5)

project(@OLP_SDK_EXAMPLE_TARGET_NAME@ VERSION 1.3.0)
project(@OLP_SDK_EXAMPLE_TARGET_NAME@ VERSION 1.4.0)

if (DEFINED OLP_SDK_HTTP_CLIENT_JAR)
get_filename_component(OLP_SDK_HTTP_CLIENT_JAR_FULL_PATH "${OLP_SDK_HTTP_CLIENT_JAR}" ABSOLUTE)
Expand Down
2 changes: 1 addition & 1 deletion examples/ios/CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (NOT IOS)
message(FATAL_ERROR "Unsupported platform!")
endif()

project(@OLP_SDK_EXAMPLE_TARGET_NAME@ VERSION 1.3.0)
project(@OLP_SDK_EXAMPLE_TARGET_NAME@ VERSION 1.4.0)

add_executable(@OLP_SDK_EXAMPLE_TARGET_NAME@
${CMAKE_CURRENT_SOURCE_DIR}/ReadExample.h
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.3.0)
project(olp-cpp-sdk-authentication VERSION 1.4.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.3.0)
project(olp-cpp-sdk-core VERSION 1.4.0)
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")

find_package(RapidJSON 1.1.0 REQUIRED CMAKE_FIND_ROOT_PATH_BOTH)
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.3.0)
project(olp-cpp-sdk-dataservice-read VERSION 1.4.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.3.0)
project(olp-cpp-sdk-dataservice-write VERSION 1.4.0)
set(DESCRIPTION "C++ API library for writing data to OLP")

set(OLP_SDK_DATASERVICE_WRITE_API_HEADERS
Expand Down

0 comments on commit 67dc351

Please sign in to comment.