Skip to content

Commit 1df5cfa

Browse files
authored
changelog updated for Releasing 1.0.0-beta.3 (#941)
1 parent 3979bd2 commit 1df5cfa

File tree

2 files changed

+33
-20
lines changed

2 files changed

+33
-20
lines changed

sdk/core/azure-core/CHANGELOG.md

Lines changed: 28 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,57 @@
11
# Release History
22

3-
## 1.0.0-beta.3 (Unreleased)
4-
5-
### Breaking Changes
6-
7-
- `Azure::Core::Http::Url::AppendPath` now does not encode the input by default.
8-
- Removed `azure.hpp`.
3+
## 1.0.0-beta.3 (2020-11-11)
94

105
### New Features
116
- Added `strings.hpp` with `Azure::Core::Strings::LocaleInvariantCaseInsensitiveEqual` and `Azure::Core::Strings::ToLower`.
12-
- Added `OperationCanceledException`.
137
- Added `GetPort()` to `Url`.
148
- Added `TransportPolicyOptions`.
159
- Added `TelemetryPolicyOptions`.
16-
- Added `DateFormat::ToIso8601String(TimeFractionFormat)`.
10+
- Added `RequestFailedException` deriving from `std::runtime_error`.
11+
- Added `CurlTransportOptions` for the `CurlTransport`.
12+
- Added `DateTime` supporting dates since 1601.
13+
- Added `OperationCanceledException`.
14+
- Added `Encode` and `Decode` to `Url`.
1715

18-
### Other changes and Improvements
16+
### Breaking Changes
1917

20-
- Add high-level and simplified core.hpp file for simpler include experience for customers.
21-
- Add code coverage using gcov with gcc.
22-
- Update SDK-defined exception types to be classes instead of structs.
18+
- Removed `azure.hpp`.
19+
- Removed macro `AZURE_UNREFERENCED_PARAMETER`.
20+
- Bump CMake version from 3.12 to 3.13.
21+
- Bump libcurl version from 7.4 to 7.44.
22+
- Moved `ClientSecretCredential` and `EnvironmentCredential` to the Identity library.
23+
- `Url` class changes:
24+
- `AppendPath` now does not encode the input by default.
25+
- Signature updated for `SetHost`, `SetPath` and `AppendPath`.
26+
- Removed `SetFragment`.
27+
- Renamed `AppendQueries` to `AppendQueryParameters`.
28+
- Renamed `AppendQuery` to `AppendQueryParameter`.
29+
- Renamed `RemoveQuery` to `RemoveQueryParameter`.
30+
- Renamed `GetQuery` to `GetQueryParameters`.
2331

2432
### Bug Fixes
2533

2634
- Prevent pipeline of length zero to be created.
2735
- Avoid re-using a connection when a request to upload data fails while using the `CurlTransport`.
28-
29-
### New Features
30-
31-
- Add `RequestFailException` deriving from `std::runtime_error`.
36+
- Add entropy to `Uuid` generation.
3237

3338
### Other changes and Improvements
3439

40+
- Add high-level and simplified core.hpp file for simpler include experience for customers.
41+
- Add code coverage using gcov with gcc.
42+
- Update SDK-defined exception types to be classes instead of structs.
3543
- Updated `TransportException` and `InvalidHeaderException` to derive from `RequestFailedException`.
44+
- Vcpkg dependency version updated to 2020.11.
45+
- Make libcurl network requests cancelable by Context::Cancel().
46+
- Validate HTTP headers for invalid characters.
47+
- Calling `Cancel()` from context now throws `OperationCanceledException`.
3648

3749
## 1.0.0-beta.2 (2020-10-09)
3850

3951
### Breaking Changes
4052

4153
- Throw Azure::Http::TransportException if creating new connection fails.
4254
- Response objects store Nullable\<T\>.
43-
- Calling `Cancel()` from context now throws `OperationCanceledException`.
4455

4556
### Bug Fixes
4657

sdk/identity/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## 1.0.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2020-11-11)
44

5-
* Support for Client Secret Credential
6-
* Support for Environment Credential
5+
### New Features
6+
7+
- Support for Client Secret Credential.
8+
- Support for Environment Credential.

0 commit comments

Comments
 (0)