Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added release notes for C++ #714

Merged
4 commits merged into from
Oct 9, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions sdk/core/azure-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2020-10-08)
RickWinter marked this conversation as resolved.
Show resolved Hide resolved

### New Features

- Added NOTICE.txt for 3rd party dependencies

RickWinter marked this conversation as resolved.
Show resolved Hide resolved
### Breaking Changes

- Throw Azure::Http::TransportException if creating new connection fails
RickWinter marked this conversation as resolved.
Show resolved Hide resolved
- Response objects store Nullable<T>
RickWinter marked this conversation as resolved.
Show resolved Hide resolved

### Bug Fixes

- Switched to a more stable wait on sockets to address connection timeouts
RickWinter marked this conversation as resolved.
Show resolved Hide resolved
- Replace `Nullable(const T&)` with `Nullable(T)` to avoid extra copy when initialized with an rvalue.
RickWinter marked this conversation as resolved.
Show resolved Hide resolved

### Other changes and Improvements

- Improved performance on windows when using libcurl
RickWinter marked this conversation as resolved.
Show resolved Hide resolved
- Pinned the version of dependent packages
RickWinter marked this conversation as resolved.
Show resolved Hide resolved

## 1.0.0-beta.1 (2020-09-09)

- Initial release