Skip to content

Commit 1289063

Browse files
Azure Core October GA Release (#6053)
* Azure Core October GA Release * Change to re-trigger CI * Undo change, still re-trigger CI * Update sdk/core/azure-core/CHANGELOG.md Co-authored-by: Larry Osterman <[email protected]> * Also update wording in the previous release * Spelling --------- Co-authored-by: Anton Kolesnyk <[email protected]> Co-authored-by: Larry Osterman <[email protected]>
1 parent 02e54b9 commit 1289063

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

sdk/core/azure-core/CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,37 @@
11
# Release History
22

3-
## 1.14.0-beta.3 (Unreleased)
3+
## 1.14.0 (2024-10-03)
44

55
### Features Added
66

7+
- Added a new constructor for `Azure::Core::Context` that takes an `Azure::DateTime` deadline. This enables creating a new context directly with a deadline.
8+
- Request logs to now include the `accept-range`, `content-range`, `range`, `WWW-Authenticate`, `x-ms-date`, `x-ms-error-code`, `x-ms-range`, and `x-ms-version` headers.
9+
- Added default constructor, `Parse()`, and equality comparison operators to `Azure::Core::Uuid`.
10+
- Added an `Azure::Core::ResourceIdentifier` type.
11+
712
### Breaking Changes
813

14+
- Deprecated the `Azure::Core::Context::ApplicationContext` object.
15+
- If customer code is using `Azure::Core::Context::ApplicationContext`, the customer should instead create their own root context object which is used
16+
wherever the customer would have previously used `Azure::Core::Context::ApplicationContext`, i.e. `Azure::Core::Context(deadline)` instead of `Azure::Core::Context::ApplicationContext.WithDeadline(deadline)`.
17+
918
### Bugs Fixed
1019

20+
- Throw `std::invalid_argument` if the value of `TimeFractionFormat` enum passed in to `DateTime::ToString()` is invalid.
21+
- `Azure::Core::Uuid::ToString()` is now `const`.
1122
- Make the HTTP transport behavior consistent between WinHTTP and libcurl by disabling automatically following redirects on Windows.
1223
- Added basic input validation to `Azure::Core::ResourceIdentifier` to ensure the prefix match what is expected.
1324

1425
### Other Changes
1526

27+
- [[#5851]](https://github.com/Azure/azure-sdk-for-cpp/pull/5851) Remove unneeded `<regex>` includes. (A community contribution, courtesy of _[rschu1ze](https://github.com/rschu1ze)_)
1628
- [[#6014]](https://github.com/Azure/azure-sdk-for-cpp/pull/6014), [[#6016]](https://github.com/Azure/azure-sdk-for-cpp/pull/6016) Fixes for Doxygen generation. (A community contribution, courtesy of _[chewi](https://github.com/chewi)_)
1729

1830
### Acknowledgments
1931

2032
Thank you to our developer community members who helped to make Azure Core better with their contributions to this release:
2133

34+
- Robert Schulze _([GitHub](https://github.com/rschu1ze))_
2235
- James Le Cuirot _([GitHub](https://github.com/chewi))_
2336

2437
## 1.14.0-beta.2 (2024-09-12)
@@ -38,7 +51,7 @@ Thank you to our developer community members who helped to make Azure Core bette
3851

3952
### Features Added
4053

41-
- Added new constructor for `Azure::Core::Context` that takes a `std::chrono::system_clock::time_point` deadline. This enables creating a new context directly with a deadline.
54+
- Added a new constructor for `Azure::Core::Context` that takes an `Azure::DateTime` deadline. This enables creating a new context directly with a deadline.
4255

4356
### Breaking Changes
4457

sdk/core/azure-core/src/private/package_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define AZURE_CORE_VERSION_MAJOR 1
1414
#define AZURE_CORE_VERSION_MINOR 14
1515
#define AZURE_CORE_VERSION_PATCH 0
16-
#define AZURE_CORE_VERSION_PRERELEASE "beta.3"
16+
#define AZURE_CORE_VERSION_PRERELEASE ""
1717

1818
#define AZURE_CORE_VERSION_ITOA_HELPER(i) #i
1919
#define AZURE_CORE_VERSION_ITOA(i) AZURE_CORE_VERSION_ITOA_HELPER(i)

0 commit comments

Comments
 (0)