Skip to content

Commit

Permalink
[ServiceBus] prepare for release (#35543)
Browse files Browse the repository at this point in the history
* update changelog

* add remove batch sanitizers location to sb mgmt

* typo
  • Loading branch information
swathipil authored May 8, 2024
1 parent ca1bd97 commit 79f2688
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 5 additions & 1 deletion sdk/servicebus/azure-mgmt-servicebus/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

from dotenv import load_dotenv

from devtools_testutils import test_proxy, add_general_regex_sanitizer
from devtools_testutils import test_proxy, add_general_regex_sanitizer, remove_batch_sanitizers
from devtools_testutils import add_header_regex_sanitizer, add_body_key_sanitizer

# Ignore async tests for Python < 3.5
Expand All @@ -56,3 +56,7 @@ def add_sanitizers(test_proxy):
add_body_key_sanitizer(json_path="$..access_token", value="access_token")
add_body_key_sanitizer(json_path="$..primaryKey", value="primaryKey")
add_body_key_sanitizer(json_path="$..secondaryKey", value="secondaryKey")

# Remove the following sanitizers since certain fields are needed in tests and are non-sensitive:
# - AZSDK2003: Location
remove_batch_sanitizers(["AZSDK2003"])
11 changes: 3 additions & 8 deletions sdk/servicebus/azure-servicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
# Release History

## 7.12.2 (Unreleased)

### Features Added

### Breaking Changes
## 7.12.2 (2024-05-08)

### Bugs Fixed

- Fixed incorrect dependency on typing-extensions ([34868](https://github.com/Azure/azure-sdk-for-python/issues/34868))

### Other Changes
- Fixed a bug where WebsocketConnectionClosedException was not being caught when receiving with AmqpOverWebsocket ([34859](https://github.com/Azure/azure-sdk-for-python/pull/34859))
- Fixed incorrect dependency on typing-extensions ([34869](https://github.com/Azure/azure-sdk-for-python/issues/34869), thanks @YaroBear).

## 7.12.1 (2024-03-20)

Expand Down

0 comments on commit 79f2688

Please sign in to comment.