Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 1 addition & 3 deletions sdk/core/corehttp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.0.0b7 (Unreleased)
## 1.0.0b7 (2026-02-05)

### Features Added

Expand All @@ -16,8 +16,6 @@
- Added `set_span_error_status` static method to `OpenTelemetryTracer` for setting a span's status to ERROR.
- Added `is_generated_model`, `attribute_list`, and `TypeHandlerRegistry` to `corehttp.serialization` module for SDK model handling.

### Breaking Changes

### Bugs Fixed

- Fixed `retry_backoff_max` being ignored in retry policies when configuring retries.
Expand Down
5 changes: 3 additions & 2 deletions sdk/core/corehttp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -65,7 +66,7 @@
package_data={
"pytyped": ["py.typed"],
},
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=[
"typing-extensions>=4.6.0",
],
Expand Down
Loading