Core-Core (GA) + Core-AMQP (Beta) + Event Hubs (Beta) January Releases (#5243)
* Core-Core + Core-AMQP + Event Hubs January Releases * Update CHANGELOG.md --------- Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
This commit is contained in:
parent
08c5187e36
commit
03de1fbaa4
@ -1,6 +1,6 @@
|
|||||||
# Release History
|
# Release History
|
||||||
|
|
||||||
## 1.0.0-beta.6 (Unreleased)
|
## 1.0.0-beta.6 (2024-01-11)
|
||||||
|
|
||||||
### Features Added
|
### Features Added
|
||||||
|
|
||||||
@ -16,8 +16,6 @@
|
|||||||
- AMQP Link Credits now work as expected.
|
- AMQP Link Credits now work as expected.
|
||||||
- Integrated the fix for NVD - CVE-2024-21646.
|
- Integrated the fix for NVD - CVE-2024-21646.
|
||||||
|
|
||||||
### Other Changes
|
|
||||||
|
|
||||||
## 1.0.0-beta.5 (2023-11-07)
|
## 1.0.0-beta.5 (2023-11-07)
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|||||||
@ -1,22 +1,30 @@
|
|||||||
# Release History
|
# Release History
|
||||||
|
|
||||||
## 1.11.0-beta.3 (Unreleased)
|
## 1.11.0 (2024-01-11)
|
||||||
|
|
||||||
- Added 'OPTIONS' HTTP method to `Azure::Core::Http::HttpMethod` enum.
|
|
||||||
|
|
||||||
### Features Added
|
### Features Added
|
||||||
|
|
||||||
### Breaking Changes
|
- Added 'OPTIONS' HTTP method to `Azure::Core::Http::HttpMethod` enum.
|
||||||
|
- Added TLS 1.3 support to WinHTTP transport.
|
||||||
|
- Environment Log Level Listener now logs the ThreadID for the thread originating the trace.
|
||||||
|
- [[#4983]](https://github.com/Azure/azure-sdk-for-cpp/issues/4983) Added support for setting `CURLOPT_CAPATH` libcurl option on Linux. (A community contribution, courtesy of _[phoebusm](https://github.com/phoebusm)_)
|
||||||
|
|
||||||
### Bugs Fixed
|
### Bugs Fixed
|
||||||
|
|
||||||
- [[#5172]](https://github.com/Azure/azure-sdk-for-cpp/issues/5172) `Azure::Nullable::Emplace()` does not set `HasValue()` to `true`.
|
- [[#5172]](https://github.com/Azure/azure-sdk-for-cpp/issues/5172) `Azure::Nullable::Emplace()` does not set `HasValue()` to `true`.
|
||||||
- [[#5130]](https://github.com/Azure/azure-sdk-for-cpp/issues/5130) `Url::AppendPath()` and `Url::SetPath()` may end up with a double slash at the beginning of a path.
|
- [[#5130]](https://github.com/Azure/azure-sdk-for-cpp/issues/5130) `Url::AppendPath()` and `Url::SetPath()` may end up with a double slash at the beginning of a path.
|
||||||
|
- [[#5007]](https://github.com/Azure/azure-sdk-for-cpp/issues/5007) Some versions of GCC no longer include stdint.h in cstdint.
|
||||||
|
|
||||||
### Other Changes
|
### Other Changes
|
||||||
|
|
||||||
- [[#4756]] (https://github.com/Azure/azure-sdk-for-cpp/issues/4756) `BearerTokenAuthenticationPolicy` now uses shared mutex lock for read operations.
|
- [[#4756]] (https://github.com/Azure/azure-sdk-for-cpp/issues/4756) `BearerTokenAuthenticationPolicy` now uses shared mutex lock for read operations.
|
||||||
|
|
||||||
|
### Acknowledgments
|
||||||
|
|
||||||
|
Thank you to our developer community members who helped to make Azure Core better with their contributions to this release:
|
||||||
|
|
||||||
|
- Phoebus Mak _([GitHub](https://github.com/phoebusm))_
|
||||||
|
|
||||||
## 1.11.0-beta.2 (2023-11-02)
|
## 1.11.0-beta.2 (2023-11-02)
|
||||||
|
|
||||||
### Features Added
|
### Features Added
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
#define AZURE_CORE_VERSION_MAJOR 1
|
#define AZURE_CORE_VERSION_MAJOR 1
|
||||||
#define AZURE_CORE_VERSION_MINOR 11
|
#define AZURE_CORE_VERSION_MINOR 11
|
||||||
#define AZURE_CORE_VERSION_PATCH 0
|
#define AZURE_CORE_VERSION_PATCH 0
|
||||||
#define AZURE_CORE_VERSION_PRERELEASE "beta.3"
|
#define AZURE_CORE_VERSION_PRERELEASE ""
|
||||||
|
|
||||||
#define AZURE_CORE_VERSION_ITOA_HELPER(i) #i
|
#define AZURE_CORE_VERSION_ITOA_HELPER(i) #i
|
||||||
#define AZURE_CORE_VERSION_ITOA(i) AZURE_CORE_VERSION_ITOA_HELPER(i)
|
#define AZURE_CORE_VERSION_ITOA(i) AZURE_CORE_VERSION_ITOA_HELPER(i)
|
||||||
|
|||||||
@ -1,17 +1,11 @@
|
|||||||
# Release History
|
# Release History
|
||||||
|
|
||||||
## 1.0.0-beta.5 (Unreleased)
|
## 1.0.0-beta.5 (2024-01-11)
|
||||||
|
|
||||||
### Features Added
|
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
||||||
- EventHub `ConsumerClient` and `ProcessorClient` objects now return pointers to `EventData` objects instead of `EventData` objects by value.
|
- EventHub `ConsumerClient` and `ProcessorClient` objects now return pointers to `EventData` objects instead of `EventData` objects by value.
|
||||||
|
|
||||||
### Bugs Fixed
|
|
||||||
|
|
||||||
### Other Changes
|
|
||||||
|
|
||||||
## 1.0.0-beta.4 (2023-11-07)
|
## 1.0.0-beta.4 (2023-11-07)
|
||||||
|
|
||||||
### Features Added
|
### Features Added
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user