Skip to content

Commit fa2d335

Browse files
authored
[Core] Update changelog for release (#45114)
- Removed parameterization for a test. Signed-off-by: Paul Van Eck <paulvaneck@microsoft.com>
1 parent 9233cd8 commit fa2d335

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

sdk/core/azure-core/CHANGELOG.md

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

3-
## 1.38.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 1.38.1 (2026-02-10)
84

95
### Bugs Fixed
106

11-
- Fixed PipelineClient.format_url to avoid adding trailing slashes when the URL template contains only query parameters.
12-
13-
### Other Changes
7+
- Fixed `PipelineClient.format_url` to avoid adding trailing slashes when the URL template contains only query parameters. #45044
148

159
## 1.38.0 (2026-01-12)
1610

sdk/core/azure-core/tests/test_basic_transport.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ def test_http_request_serialization(http_request):
126126
assert serialized == expected
127127

128128

129-
@pytest.mark.parametrize("http_request", HTTP_REQUESTS)
130-
def test_url_join(http_request):
129+
def test_url_join():
131130
assert _urljoin("devstoreaccount1", "?testdir") == "devstoreaccount1?testdir"
132131
assert _urljoin("devstoreaccount1", "") == "devstoreaccount1"
133132
assert _urljoin("devstoreaccount1", "testdir/") == "devstoreaccount1/testdir/"

0 commit comments

Comments
 (0)