Skip to content

Commit 79f2688

Browse files
authored
[ServiceBus] prepare for release (#35543)
* update changelog * add remove batch sanitizers location to sb mgmt * typo
1 parent ca1bd97 commit 79f2688

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

sdk/servicebus/azure-mgmt-servicebus/tests/conftest.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
from dotenv import load_dotenv
3232

33-
from devtools_testutils import test_proxy, add_general_regex_sanitizer
33+
from devtools_testutils import test_proxy, add_general_regex_sanitizer, remove_batch_sanitizers
3434
from devtools_testutils import add_header_regex_sanitizer, add_body_key_sanitizer
3535

3636
# Ignore async tests for Python < 3.5
@@ -56,3 +56,7 @@ def add_sanitizers(test_proxy):
5656
add_body_key_sanitizer(json_path="$..access_token", value="access_token")
5757
add_body_key_sanitizer(json_path="$..primaryKey", value="primaryKey")
5858
add_body_key_sanitizer(json_path="$..secondaryKey", value="secondaryKey")
59+
60+
# Remove the following sanitizers since certain fields are needed in tests and are non-sensitive:
61+
# - AZSDK2003: Location
62+
remove_batch_sanitizers(["AZSDK2003"])

sdk/servicebus/azure-servicebus/CHANGELOG.md

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

3-
## 7.12.2 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 7.12.2 (2024-05-08)
84

95
### Bugs Fixed
106

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

1510
## 7.12.1 (2024-03-20)
1611

0 commit comments

Comments
 (0)