Skip to content

Commit

Permalink
Upgrad to lastest here olp sdk release which fixes a rapidjson regres…
Browse files Browse the repository at this point in the history
…sion
  • Loading branch information
Leon0402 committed Feb 6, 2024
1 parent 1e23a57 commit 337d318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion externals/here-olp-sdk
Submodule here-olp-sdk updated 76 files
+15 −0 .github/workflows/fv_pipelines.yml
+69 −0 .github/workflows/psv_pipelines.yml
+25 −0 CHANGELOG.md
+1 −1 CMakeLists.txt
+0 −90 azure-pipelines.yml
+1 −1 olp-cpp-sdk-authentication/CMakeLists.txt
+3 −4 olp-cpp-sdk-authentication/include/olp/authentication/Settings.h
+34 −0 olp-cpp-sdk-authentication/src/Settings.cpp
+6 −6 olp-cpp-sdk-core/CMakeLists.txt
+29 −2 olp-cpp-sdk-core/include/olp/core/client/OlpClient.h
+23 −0 olp-cpp-sdk-core/include/olp/core/http/NetworkSettings.h
+34 −0 olp-cpp-sdk-core/include/olp/core/utils/Credentials.h
+34 −10 olp-cpp-sdk-core/src/client/OlpClient.cpp
+9 −5 olp-cpp-sdk-core/src/client/PendingUrlRequests.cpp
+10 −0 olp-cpp-sdk-core/src/http/NetworkSettings.cpp
+17 −8 olp-cpp-sdk-core/src/http/android/NetworkAndroid.cpp
+60 −10 olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp
+10 −4 olp-cpp-sdk-core/src/http/curl/NetworkCurl.h
+6 −6 olp-cpp-sdk-core/src/http/ios/OLPNetworkIOS.mm
+7 −3 olp-cpp-sdk-core/src/http/winhttp/NetworkWinHttp.cpp
+72 −0 olp-cpp-sdk-core/src/utils/Credentials.cpp
+2 −0 olp-cpp-sdk-core/tests/CMakeLists.txt
+6 −0 olp-cpp-sdk-core/tests/http/NetworkSettingsTest.cpp
+91 −0 olp-cpp-sdk-core/tests/utils/UtilsTest.cpp
+1 −1 olp-cpp-sdk-dataservice-read/CMakeLists.txt
+7 −1 olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/Types.h
+23 −1 olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/VersionedLayerClient.h
+53 −1 olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/model/Catalog.h
+10 −2 olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/model/Partitions.h
+5 −1 olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/model/VersionResponse.h
+10 −1 olp-cpp-sdk-dataservice-read/src/VersionedLayerClient.cpp
+52 −1 olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.cpp
+6 −1 olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.h
+43 −7 olp-cpp-sdk-dataservice-read/src/generated/api/MetadataApi.cpp
+37 −3 olp-cpp-sdk-dataservice-read/src/generated/api/MetadataApi.h
+5 −1 olp-cpp-sdk-dataservice-read/src/generated/model/Api.h
+13 −1 olp-cpp-sdk-dataservice-read/src/generated/model/Index.h
+9 −1 olp-cpp-sdk-dataservice-read/src/generated/model/LayerVersions.h
+117 −0 olp-cpp-sdk-dataservice-read/src/repositories/AsyncJsonStream.cpp
+93 −0 olp-cpp-sdk-dataservice-read/src/repositories/AsyncJsonStream.h
+132 −19 olp-cpp-sdk-dataservice-read/src/repositories/PartitionsRepository.cpp
+23 −12 olp-cpp-sdk-dataservice-read/src/repositories/PartitionsRepository.h
+177 −0 olp-cpp-sdk-dataservice-read/src/repositories/PartitionsSaxHandler.cpp
+90 −0 olp-cpp-sdk-dataservice-read/src/repositories/PartitionsSaxHandler.h
+4 −3 olp-cpp-sdk-dataservice-read/src/repositories/PrefetchTilesRepository.cpp
+70 −0 olp-cpp-sdk-dataservice-read/tests/AsyncJsonStreamTest.cpp
+3 −1 olp-cpp-sdk-dataservice-read/tests/CMakeLists.txt
+13 −11 olp-cpp-sdk-dataservice-read/tests/PartitionsRepositoryTest.cpp
+178 −0 olp-cpp-sdk-dataservice-read/tests/PartitionsSaxHandlerTest.cpp
+1 −1 olp-cpp-sdk-dataservice-write/CMakeLists.txt
+5 −1 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/generated/model/Details.h
+4 −9 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/generated/model/Index.h
+11 −5 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/generated/model/Publication.h
+15 −4 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/generated/model/ResponseOk.h
+5 −1 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/generated/model/ResponseOkSingle.h
+5 −1 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/generated/model/VersionDependency.h
+6 −2 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/CheckDataExistsRequest.h
+6 −1 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/DeleteIndexDataRequest.h
+6 −2 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/FlushRequest.h
+7 −2 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/PublishDataRequest.h
+7 −2 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/PublishIndexRequest.h
+13 −6 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/PublishPartitionDataRequest.h
+7 −2 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/PublishSdiiRequest.h
+7 −2 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/StartBatchRequest.h
+8 −3 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/UpdateIndexRequest.h
+5 −1 olp-cpp-sdk-dataservice-write/include/olp/dataservice/write/model/VersionResponse.h
+4 −5 olp-cpp-sdk-dataservice-write/src/IndexLayerClientImpl.h
+3 −4 olp-cpp-sdk-dataservice-write/src/VolatileLayerClientImpl.h
+5 −1 olp-cpp-sdk-dataservice-write/src/generated/model/Api.h
+53 −1 olp-cpp-sdk-dataservice-write/src/generated/model/Catalog.h
+9 −1 olp-cpp-sdk-dataservice-write/src/generated/model/LayerVersions.h
+9 −1 olp-cpp-sdk-dataservice-write/src/generated/model/Partitions.h
+5 −1 olp-cpp-sdk-dataservice-write/src/generated/model/PublishPartition.h
+5 −1 olp-cpp-sdk-dataservice-write/src/generated/model/PublishPartitions.h
+5 −2 scripts/misc/commit_checker.sh
+64 −0 tests/integration/olp-cpp-sdk-authentication/TokenProviderTest.cpp

0 comments on commit 337d318

Please sign in to comment.