|
| 1 | +## v0.7.0-beta (09/09/2019) |
| 2 | + |
| 3 | +**Common** |
| 4 | + |
| 5 | +* Introduced new abstract `olp::thread::TaskScheduler` to be used for async context; provided default thread pool implementation. |
| 6 | +* Added `UserAgent` HTTP header to mark all triggered requests. |
| 7 | +* Added China Lookup API URLs. |
| 8 | +* Introduced new HTTP abstraction layer `olp::http::Network` without singleton usage. Platform dependent implementations adapted and aligned with coding style. |
| 9 | +* `olp::network::Network` with according implementations and helper classes removed. |
| 10 | +* Changed `olp::client::CancellationContext` to shared pimpl so we can remove the `std::shared_ptr` wrapper when using it across multiple requests. |
| 11 | +* Improved logging in core components. |
| 12 | + |
| 13 | +**olp-edge-sdk-cpp-authentication** |
| 14 | + |
| 15 | +* **Breaking Change** - Use new HTTP layer as input parameter for all requests. This is a mandatory parameter and users must provide it. |
| 16 | +* **Breaking Change** - Use new `olp::thread::TaskScheduler`; provided as input parameter. |
| 17 | +* Removed usage of raw `std::thread` and switched to `olp::thread::TaskScheduler`. If the `olp::thread::TaskScheduler` instance is not provided, all tasks are executed in the calling thread. |
| 18 | + |
| 19 | +**olp-edge-sdk-cpp-dataservice-read** |
| 20 | + |
| 21 | +* **Breaking Change** - Use new HTTP layer as input parameter for all requests. This is a mandatory parameter and users must provide it. |
| 22 | +* **Breaking Change** - Use new `olp::thread::TaskScheduler`; provided as input parameter. |
| 23 | +* Removed usage of raw `std::thread` and switched to `olp::thread::TaskScheduler`. If the `olp::thread::TaskScheduler` instance is not provided, all tasks are executed in the calling thread. |
| 24 | +* Improved logging. |
| 25 | + |
| 26 | +**olp-edge-sdk-cpp-dataservice-write** |
| 27 | + |
| 28 | +* **Breaking Change** - Use new HTTP layer as input parameter for all requests. This is a mandatory parameter and users must provide it. |
| 29 | +* **Breaking Change** - `olp::dataservice::write::StreamLayerClient` uses new `olp::thread::TaskScheduler` as input parameter for async context. If the `olp::thread::TaskScheduler` instance is not provided, all tasks are executed in the calling thread. |
| 30 | + |
1 | 31 | ## v0.6.0-beta (27/06/2019) |
2 | 32 | Initial open source release as a _work in progress_ beta. |
3 | 33 | <br />Not all OLP features are implemented, API breaks very likely with following commits and releases. |
|
0 commit comments