-
Notifications
You must be signed in to change notification settings - Fork 18
chore: 🐝 Update SDK - Generate 0.43.0 #311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
9c89e86
to
8487f90
Compare
d76b275
to
704eb3d
Compare
8078c01
to
9a28a30
Compare
b633100
to
2102b24
Compare
c2678cd
to
ca06190
Compare
b87889d
to
caba87c
Compare
c7532a7
to
7847f6e
Compare
d2354f4
to
f299bc5
Compare
e8595d2
to
9e28ae4
Compare
9e28ae4
to
363c5e3
Compare
* `unstructured_client.destinations.create_destination()`: * `request.create_destination_connector.config.[azure_destination_connector_config_input]` **Added** * `response.config.[azure_destination_connector_config]` **Added** * `unstructured_client.destinations.get_destination()`: `response.config.[azure_destination_connector_config]` **Added** * `unstructured_client.destinations.list_destinations()`: * `request.destination_type` **Changed** * `response.[].config.[azure_destination_connector_config]` **Added** * `unstructured_client.destinations.update_destination()`: * `request.update_destination_connector.config.[azure_destination_connector_config_input]` **Added** * `response.config.[azure_destination_connector_config]` **Added**
363c5e3
to
6538a3a
Compare
from unstructured_client.models.errors import UnstructuredClientError | ||
|
||
|
||
@dataclass(frozen=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Frozen Dataclasses Conflict with Custom Initialization
The ResponseValidationError
, SDKError
, HTTPValidationError
, and NoResponseError
classes are defined as frozen=True
dataclasses. However, their custom __init__
methods attempt to set instance attributes, either directly or by calling super().__init__
. This conflicts with the immutability enforced by frozen dataclasses, which don't allow attribute modification after initialization.
Additional Locations (3)
self, "body", body if body is not None else raw_response.text | ||
) | ||
object.__setattr__(self, "headers", raw_response.headers) | ||
object.__setattr__(self, "raw_response", raw_response) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Frozen Dataclass Initialization and Hashing Issues
The UnstructuredClientError
class, now a frozen
dataclass, has a custom __init__
that doesn't properly initialize its Exception
base class. Also, frozen=True
implicitly generates a __hash__
method that conflicts with hash=False
on unhashable fields like headers
and raw_response
, causing a TypeError
when hashed.
Important
Linting report available at: https://app.speakeasy.com/org/unstructured/unstructured5xr/linting-report/afb7f17231016e4dba752d7c28ef4e2b
OpenAPI Change report available at: https://app.speakeasy.com/org/unstructured/unstructured5xr/changes-report/64d695ae9856e03f714aefabf3f94078
SDK update
Versioning
Version Bump Type: [minor] - 🤖 (automated)
Python SDK Changes Detected:
unstructured_client.destinations.create_destination()
:request.create_destination_connector.config.[azure_destination_connector_config_input]
Addedresponse.config.[azure_destination_connector_config]
Addedunstructured_client.destinations.get_destination()
:response.config.[azure_destination_connector_config]
Addedunstructured_client.destinations.list_destinations()
:request.destination_type
Changedresponse.[].config.[azure_destination_connector_config]
Addedunstructured_client.destinations.update_destination()
:request.update_destination_connector.config.[azure_destination_connector_config_input]
Addedresponse.config.[azure_destination_connector_config]
AddedOpenAPI Change Summary
PYTHON CHANGELOG
core: 5.22.1 - 2025-09-30
🐛 Bug Fixes
core: 5.22.0 - 2025-09-24
🐝 New Features
core: 5.21.1 - 2025-09-23
🐛 Bug Fixes
core: 5.21.0 - 2025-09-12
🐝 New Features
core: 5.20.4 - 2025-09-09
🐛 Bug Fixes
core: 5.20.3 - 2025-09-02
🐛 Bug Fixes
core: 5.20.2 - 2025-09-01
🔧 Chores
core: 5.20.1 - 2025-08-27
🐛 Bug Fixes
core: 5.19.11 - 2025-08-27
🐛 Bug Fixes
core: 5.19.10 - 2025-08-20
🔧 Chores
core: 5.19.9 - 2025-08-11
🐛 Bug Fixes
core: 5.20.0 - 2025-08-08
🐝 New Features
core: 5.19.7 - 2025-08-06
🐛 Bug Fixes
core: 5.19.6 - 2025-08-01
🐛 Bug Fixes
core: 5.19.5 - 2025-07-24
🔧 Chores
core: 5.19.4 - 2025-07-02
🐛 Bug Fixes
core: 5.19.3 - 2025-06-06
🐛 Bug Fixes
core: 5.19.2 - 2025-06-04
🐛 Bug Fixes
core: 5.19.1 - 2025-05-29
🐛 Bug Fixes
core: 5.19.0 - 2025-05-20
🐝 New Features
core: 5.18.1 - 2025-05-15
🐛 Bug Fixes
core: 5.18.0 - 2025-05-12
🐝 New Features
core: 5.17.2 - 2025-05-07
🐛 Bug Fixes
core: 5.17.1 - 2025-05-04
🐛 Bug Fixes
core: 5.17.0 - 2025-04-30
🐝 New Features
core: 5.16.1 - 2025-04-23
🐛 Bug Fixes
core: 5.16.0 - 2025-04-18
🐝 New Features
core: 5.15.0 - 2025-04-17
🐝 New Features
core: 5.14.0 - 2025-04-15
🐝 New Features
core: 5.12.7 - 2025-04-11
🐛 Bug Fixes
core: 5.13.0 - 2025-04-07
🐝 New Features
core: 5.12.6 - 2025-04-03
🐛 Bug Fixes
core: 5.12.5 - 2025-03-28
🐛 Bug Fixes
core: 5.12.4 - 2025-03-16
🐛 Bug Fixes
core: 5.12.3 - 2025-03-10
🐛 Bug Fixes
core: 5.12.2 - 2025-03-02
🐛 Bug Fixes
core: 5.12.1 - 2025-02-21
🐛 Bug Fixes
core: 5.12.0 - 2025-02-12
🐝 New Features
core: 5.11.0 - 2025-02-04
🐝 New Features
core: 5.10.9 - 2025-01-31
🐛 Bug Fixes
core: 5.10.8 - 2025-01-30
🐛 Bug Fixes
core: 5.10.7 - 2025-01-29
🐛 Bug Fixes
core: 5.10.6 - 2025-01-27
🐛 Bug Fixes
core: 5.10.5 - 2025-01-23
🐛 Bug Fixes
core: 5.10.4 - 2025-01-20
🐛 Bug Fixes
core: 5.10.3 - 2025-01-20
🐛 Bug Fixes
core: 5.10.2 - 2025-01-13
🐛 Bug Fixes
core: 5.10.1 - 2025-01-10
🐛 Bug Fixes
core: 5.10.0 - 2025-01-08
🐝 New Features
core: 5.9.0 - 2025-01-08
🐝 New Features
core: 5.8.0 - 2025-01-06
🐝 New Features
core: 5.7.6 - 2025-01-06
🐛 Bug Fixes
core: 5.7.5 - 2025-01-06
🐛 Bug Fixes
core: 5.7.4 - 2024-12-16
🐛 Bug Fixes
core: 5.7.3 - 2024-12-13
🐛 Bug Fixes
core: 5.7.2 - 2024-12-13
🐛 Bug Fixes
core: 5.7.1 - 2024-12-12
🐛 Bug Fixes
core: 5.7.0 - 2024-12-12
🐝 New Features
core: 5.6.11 - 2024-12-09
🔧 Chores
core: 5.6.10 - 2024-12-06
🐛 Bug Fixes
core: 5.6.9 - 2024-12-04
🐛 Bug Fixes
core: 5.6.8 - 2024-11-22
🐛 Bug Fixes
core: 5.6.7 - 2024-11-22
🐛 Bug Fixes
core: 5.6.6 - 2024-11-21
🐛 Bug Fixes
core: 5.6.5 - 2024-11-12
🐛 Bug Fixes
core: 5.6.4 - 2024-11-05
🐛 Bug Fixes
core: 5.6.3 - 2024-11-04
🐛 Bug Fixes
core: 5.6.2 - 2024-10-31
🐛 Bug Fixes
core: 5.6.1 - 2024-10-29
🔧 Chores
core: 5.6.0 - 2024-10-07
🐝 New Features
core: 5.5.8 - 2024-10-01
🐛 Bug Fixes
TypedDict
fromtyping_extensions
(commit by @disintegrator)core: 5.5.7 - 2024-09-27
🐛 Bug Fixes
core: 5.5.6 - 2024-09-25
🐛 Bug Fixes
core: 5.5.5 - 2024-09-25
🐛 Bug Fixes
core: 5.5.4 - 2024-09-18
🐛 Bug Fixes
core: 5.5.3 - 2024-09-12
🐛 Bug Fixes
core: 5.5.2 - 2024-09-11
🔧 Chores
core: 5.5.1 - 2024-09-10
🔧 Chores
core: 5.5.0 - 2024-09-08
🐝 New Features
core: 5.4.5 - 2024-09-07
🐛 Bug Fixes
core: 5.4.4 - 2024-09-06
🔧 Chores
core: 5.4.3 - 2024-09-05
🐛 Bug Fixes
core: 5.4.2 - 2024-08-28
🐛 Bug Fixes
core: 5.3.9 - 2024-08-18
🐛 Bug Fixes
core: 5.4.1 - 2024-08-17
🔧 Chores
core: 5.3.8 - 2024-08-12
🐛 Bug Fixes
core: 5.4.0 - 2024-08-09
🐝 New Features
core: 5.3.7 - 2024-08-08
🔧 Chores
core: 5.3.6 - 2024-08-08
🐛 Bug Fixes
core: 5.3.5 - 2024-08-07
🐛 Bug Fixes
core: 5.3.4 - 2024-08-06
🐛 Bug Fixes
core: 5.3.3 - 2024-08-02
🐛 Bug Fixes
core: 5.3.2 - 2024-08-01
🐛 Bug Fixes
core: 5.3.1 - 2024-08-01
🔧 Chores
core: 5.2.6 - 2024-08-01
🐛 Bug Fixes
core: 5.3.0 - 2024-07-31
🐝 New Features
core: 5.2.5 - 2024-07-31
🐛 Bug Fixes
core: 5.2.4 - 2024-07-23
🐛 Bug Fixes
default
status code is available and considered succesful (commit by @disintegrator)core: 5.2.3 - 2024-07-23
🐛 Bug Fixes
core: 5.2.2 - 2024-07-22
🐛 Bug Fixes
core: 5.2.1 - 2024-07-22
🐛 Bug Fixes
core: 5.2.0 - 2024-07-19
🐝 New Features
core: 5.1.6 - 2024-07-17
🐛 Bug Fixes
core: 5.1.5 - 2024-07-17
🐛 Bug Fixes
core: 5.1.4 - 2024-07-16
🐛 Bug Fixes
core: 5.1.3 - 2024-07-16
🔧 Chores
core: 5.1.2 - 2024-07-15
🐛 Bug Fixes
core: 5.1.1 - 2024-07-12
🐛 Bug Fixes
core: 5.1.0 - 2024-07-11
🐝 New Features
core: 4.8.1 - 2024-07-09
🐛 Bug Fixes
core: 4.8.0 - 2024-07-05
🐝 New Features
core: 5.0.0 - 2024-07-04
🐝 New Features
core: 4.6.14 - 2024-06-27
🐛 Bug Fixes
core: 4.6.13 - 2024-06-21
🔧 Chores
globalSecurity: 3.0.4 - 2025-09-10
🔧 Chores
unions: 3.1.0 - 2025-10-01
🐝 New Features
unions: 3.0.5 - 2025-09-25
🐛 Bug Fixes
Based on Speakeasy CLI 1.635.1