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:
Anton Kolesnyk 2024-01-11 13:30:42 -08:00 коммит произвёл GitHub
Родитель 08c5187e36
Коммит 03de1fbaa4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 15 добавлений и 15 удалений

Просмотреть файл

@ -1,6 +1,6 @@
# Release History
## 1.0.0-beta.6 (Unreleased)
## 1.0.0-beta.6 (2024-01-11)
### Features Added
@ -16,8 +16,6 @@
- AMQP Link Credits now work as expected.
- Integrated the fix for NVD - CVE-2024-21646.
### Other Changes
## 1.0.0-beta.5 (2023-11-07)
### Breaking Changes

Просмотреть файл

@ -1,22 +1,30 @@
# Release History
## 1.11.0-beta.3 (Unreleased)
- Added 'OPTIONS' HTTP method to `Azure::Core::Http::HttpMethod` enum.
## 1.11.0 (2024-01-11)
### 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
- [[#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.
- [[#5007]](https://github.com/Azure/azure-sdk-for-cpp/issues/5007) Some versions of GCC no longer include stdint.h in cstdint.
### Other Changes
- [[#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)
### Features Added

Просмотреть файл

@ -13,7 +13,7 @@
#define AZURE_CORE_VERSION_MAJOR 1
#define AZURE_CORE_VERSION_MINOR 11
#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(i) AZURE_CORE_VERSION_ITOA_HELPER(i)

Просмотреть файл

@ -1,17 +1,11 @@
# Release History
## 1.0.0-beta.5 (Unreleased)
### Features Added
## 1.0.0-beta.5 (2024-01-11)
### Breaking Changes
- 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)
### Features Added