From 27848d3596ee8aa7fd19d34e05f5a0eca9e233b7 Mon Sep 17 00:00:00 2001 From: Joel Hendrix Date: Wed, 12 Jul 2023 13:02:03 -0700 Subject: [PATCH 1/2] Prepare for azcore 1.8.0-beta.1 release --- sdk/azcore/CHANGELOG.md | 17 ++++++++++++----- sdk/azcore/internal/shared/constants.go | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/sdk/azcore/CHANGELOG.md b/sdk/azcore/CHANGELOG.md index 0a2c2982a7bb..d9b46c040004 100644 --- a/sdk/azcore/CHANGELOG.md +++ b/sdk/azcore/CHANGELOG.md @@ -1,17 +1,19 @@ # Release History -## 1.7.0-beta.3 (Unreleased) +## 1.8.0-beta.1 (2023-07-12) ### Features Added - `messaging/CloudEvent` allows you to serialize/deserialize CloudEvents, as described in the CloudEvents 1.0 specification: [link](https://github.com/cloudevents/spec) -* Added method `WithClientName()` to type `azcore.Client` to support shallow cloning of a client with a new name used for tracing. -### Breaking Changes +## 1.7.0 (2023-07-12) -### Bugs Fixed +### Features Added +* Added method `WithClientName()` to type `azcore.Client` to support shallow cloning of a client with a new name used for tracing. -### Other Changes +### Breaking Changes +> These changes affect only code written against beta versions v1.7.0-beta.1 or v1.7.0-beta.2 +* The beta features for CAE, tracing, and fakes have been omitted for this release. ## 1.7.0-beta.2 (2023-06-06) @@ -22,9 +24,14 @@ * Method `AddError()` has been removed from type `tracing.Span`. * Method `Span.End()` now requires an argument of type `*tracing.SpanEndOptions`. +## 1.6.1 (2023-06-06) + ### Bugs Fixed * Fixed an issue in `azcore.NewClient()` and `arm.NewClient()` that could cause an incorrect module name to be used in telemetry. +### Other Changes +* This version contains all bug fixes from `v1.7.0-beta.1` + ## 1.7.0-beta.1 (2023-05-24) ### Features Added diff --git a/sdk/azcore/internal/shared/constants.go b/sdk/azcore/internal/shared/constants.go index fbd26952a8e9..604cdbdab63d 100644 --- a/sdk/azcore/internal/shared/constants.go +++ b/sdk/azcore/internal/shared/constants.go @@ -36,5 +36,5 @@ const ( Module = "azcore" // Version is the semantic version (see http://semver.org) of this module. - Version = "v1.7.0-beta.3" + Version = "v1.8.0-beta.1" ) From 5875e86f7e4179f25b25a48375b2b3c827f83c86 Mon Sep 17 00:00:00 2001 From: Joel Hendrix Date: Wed, 12 Jul 2023 13:09:15 -0700 Subject: [PATCH 2/2] update changelog --- sdk/azcore/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/azcore/CHANGELOG.md b/sdk/azcore/CHANGELOG.md index d9b46c040004..28e35a834ff5 100644 --- a/sdk/azcore/CHANGELOG.md +++ b/sdk/azcore/CHANGELOG.md @@ -6,6 +6,10 @@ - `messaging/CloudEvent` allows you to serialize/deserialize CloudEvents, as described in the CloudEvents 1.0 specification: [link](https://github.com/cloudevents/spec) +### Other Changes + +* The beta features for CAE, tracing, and fakes have been reinstated. + ## 1.7.0 (2023-07-12) ### Features Added