Skip to content

chore: 🐝 Update SDK - Generate Platform library PLATFORM-LIBRARY 5.0.1#650

Open
github-actions[bot] wants to merge 1 commit intomainfrom
speakeasy-sdk-regen-1776246508
Open

chore: 🐝 Update SDK - Generate Platform library PLATFORM-LIBRARY 5.0.1#650
github-actions[bot] wants to merge 1 commit intomainfrom
speakeasy-sdk-regen-1776246508

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

SDK update

Versioning

Version Bump Type: [patch] - 🤖 (automated)

Tip

If updates to your OpenAPI document introduce breaking changes, be sure to update the info.version field to trigger the correct version bump.
Speakeasy supports manual control of SDK versioning through multiple methods.

Python SDK Changes:

  • codat_platform.companies.create(): response.data_connections[].integration_key Changed
  • codat_platform.companies.get(): response.data_connections[].integration_key Changed
  • codat_platform.companies.list(): response.results[].data_connections[].integration_key Changed
  • codat_platform.companies.replace(): response.data_connections[].integration_key Changed
  • codat_platform.companies.update(): response.data_connections[].integration_key Changed
  • codat_platform.connections.create(): response.integration_key Changed
  • codat_platform.connections.get(): response.integration_key Changed
  • codat_platform.connections.list(): response.results[].integration_key Changed
  • codat_platform.connections.unlink(): response.integration_key Changed
  • codat_platform.connections.update_authorization(): response.integration_key Changed

View full SDK changelog

OpenAPI Change Summary
└─┬Components
  └─┬Connection
    └──[-] required (3862:11)❌ 
Document Element Total Changes Breaking Changes
components 1 1

View full report

Linting Report 0 errors, 16 warnings, 22 hints

View full report

PYTHON CHANGELOG

constsAndDefaults: 1.0.7 - 2026-02-21

🐛 Bug Fixes

  • coerce type-mismatched default values instead of clearing them to prevent invalid generated code (commit by @danielkov)

core: 6.0.21 - 2026-03-27

🐛 Bug Fixes

  • replace broken is_union None guard in serialize_decimal, serialize_float, serialize_int, and validate_const with simple None check (commit by @AshGodfrey)

core: 6.0.20 - 2026-03-20

🐛 Bug Fixes

  • rename model_serializer method to avoid name collision with field serializer for fields named model (commit by @subomi)

core: 6.0.19 - 2026-03-17

🐝 New Features

  • add compileCommands config option to allow overriding the compile pipeline, preventing OOM from pylint parallelism (commit by @vishalg0wda)

core: 6.0.18 - 2026-03-11

🐛 Bug Fixes

  • reserve datetime for pythonv2 fields (commit by @danielkov)

core: 6.0.17 - 2026-03-05

🐛 Bug Fixes

  • fix model serializer dropping aliased fields when model_dump() is called without by_alias=True by falling back to field name lookup

core: 6.0.16 - 2026-03-04

🐛 Bug Fixes

  • include global security in SDK Example Usage snippets and per-operation docs (commit by @mfbx9da4)

core: 6.0.15 - 2026-02-27

🐛 Bug Fixes

  • make serverURL optional when operations define their own servers (commit by @danielkov)

core: 6.0.14 - 2026-02-27

🐛 Bug Fixes

  • derive installation URL from repo URL for monorepo subdirectory support (commit by @bradcypert)

core: 6.0.12 - 2026-02-18

🐝 New Features

  • move large-model splitting from templates to Go bucketing layer to prevent compiler complexity limits (commit by @vishalg0wda)

core: 6.0.11 - 2026-02-18

🐛 Bug Fixes

  • TypedDict companion class naming now uses cascading PascalCase suffixes (TypedDictModel, TypedDictCompanion, TypedDictCompanionModel, TypedDict{n}) instead of underscore-prefixed _TypedDict when the default name collides with another schema type — this restores strict PascalCase pylint compliance without weakening lint rules (commit by @danielkov)

core: 6.0.10 - 2026-02-18

🐛 Bug Fixes

  • schemas with inline enum fields named 'tag' no longer get incorrectly renamed to 'TagT' — the generator now only disambiguates when pydantic's Tag import actually conflicts in the same file, falling back to namespace import (pydantic.Tag) instead of mangling the class name (commit by @danielkov)

core: 6.0.9 - 2026-02-18

🐛 Bug Fixes

  • fix getattr return type, sanitize Python builtin names, fix empty response bodies in unions, deduplicate OAuth2 scope enum members (commit by @danielkov)

core: 6.0.8 - 2026-02-17

🐝 New Features

  • allow repoUrl and repoSubDirectory to be configured via gen.yaml generation section (commit by @vishalg0wda)

core: 6.0.7 - 2026-02-16

🐛 Bug Fixes

  • retry all transient network errors (NetworkError, TimeoutException) instead of only ConnectError and TimeoutException (commit by @danielkov)

core: 6.0.6 - 2026-02-14

🐛 Bug Fixes

  • resolve namespace import collisions by using root package import strategy, gated behind fixFlags.conflictResistantModelImportsFeb2026 in gen.yaml (commit by @mfbx9da4)

♻️ Refactors

  • extract duplicated dynamic_import, __getattr__, and __dir__ helpers from __init__.py templates into a shared utils/dynamic_imports.py module, reducing code duplication across generated package init files

core: 6.0.5 - 2026-02-12

🐛 Bug Fixes

  • resolve missing pydantic field aliases when using from future import annotations (commit by @AshGodfrey)

core: 6.0.3 - 2026-02-05

🐛 Bug Fixes

  • add 'request' to reserved parameter keywords as it can shadow request information (commit by @ThomasRooney)

enumUnions: 0.1.1 - 2026-03-06

🐛 Bug Fixes

  • show literal values in enum docs when enumFormat is union (commit by @bflad)

examples: 3.0.3 - 2026-02-27

🐛 Bug Fixes

  • don't show global server URL in examples when operation has its own servers (commit by @tristanspeakeasy)

globalSecurity: 3.0.7 - 2026-03-25

🐛 Bug Fixes

  • basic-http handling when used as a security option wrapper (commit by @2ynn)

globalSecurity: 3.0.6 - 2026-03-24

🐛 Bug Fixes

  • respect global security alternatives ordering and enforce operation-level security restrictions when hoisted (commit by @2ynn)

globalServerURLs: 3.2.1 - 2026-02-27

🐛 Bug Fixes

  • don't show global server URL in examples when operation has its own servers (commit by @tristanspeakeasy)

nameOverrides: 3.0.3 - 2026-02-19

🐝 New Features

  • add support for renaming object properties that reference a shared component (commit by @2ynn)

nameOverrides: 3.0.2 - 2026-02-19

🐛 Bug Fixes

  • set fixes.nameOverrideFeb2026 to true in gen.yaml to prevent x-speakesy-name-override from propagating through resolution or allOf merging (commit by @2ynn)

retries: 3.0.4 - 2026-02-17

🐛 Bug Fixes

  • retry all transient network errors, not just ConnectError and TimeoutException (commit by @danielkov)

Based on Speakeasy CLI 1.761.5

* `codat_platform.companies.create()`:  `response.data_connections[].integration_key` **Changed**
* `codat_platform.companies.get()`:  `response.data_connections[].integration_key` **Changed**
* `codat_platform.companies.list()`:  `response.results[].data_connections[].integration_key` **Changed**
* `codat_platform.companies.replace()`:  `response.data_connections[].integration_key` **Changed**
* `codat_platform.companies.update()`:  `response.data_connections[].integration_key` **Changed**
* `codat_platform.connections.create()`:  `response.integration_key` **Changed**
* `codat_platform.connections.get()`:  `response.integration_key` **Changed**
* `codat_platform.connections.list()`:  `response.results[].integration_key` **Changed**
* `codat_platform.connections.unlink()`:  `response.integration_key` **Changed**
* `codat_platform.connections.update_authorization()`:  `response.integration_key` **Changed**
@github-actions github-actions bot added the patch Patch version bump label Apr 15, 2026
@pj-simpson pj-simpson self-requested a review April 15, 2026 10:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

patch Patch version bump

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants