Skip to content

chore: 🐝 Update SDK - Generate 0.6.0#2

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

chore: 🐝 Update SDK - Generate 0.6.0#2
github-actions[bot] wants to merge 1 commit intomainfrom
speakeasy-sdk-regen-1771462234

Conversation

@github-actions
Copy link

@github-actions github-actions bot commented Feb 19, 2026

SDK update

Versioning

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

Python SDK Changes:

  • bolt.orders.create_order_token():
    • request.cart.discounts[].discount_category.enum(shipping_discount) Added
    • response.cart.discounts[].discount_category.enum(shipping_discount) Added (Breaking ⚠️)
  • bolt.transactions.review_transaction(): response.order.cart.discounts[].discount_category.enum(shipping_discount) Added (Breaking ⚠️)
  • bolt.transactions.get_transaction_details(): response.order.cart.discounts[].discount_category.enum(shipping_discount) Added (Breaking ⚠️)
  • bolt.transactions.update_transaction(): response.order.cart.discounts[].discount_category.enum(shipping_discount) Added (Breaking ⚠️)
  • bolt.transactions.authorize_transaction():
    • request_body.union(merchant_credit_card_authorization).cart.discounts[].discount_category.enum(shipping_discount) Added

View full SDK changelog

OpenAPI Change Summary
└─┬Components
  ├─┬cart_discount
  │ └─┬discount_category
  │   └──[+] enum (1932:15)
  ├─┬discount_category
  │ └──[+] enum (6679:11)
  └─┬i_cart_discount_view
    └─┬discount_category
      └──[+] enum (2738:15)
Document Element Total Changes Breaking Changes
components 3 0

View full report

Linting Report 0 errors, 1 warnings, 23 hints

View full report

PYTHON CHANGELOG

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)

core: 6.0.4 - 2026-02-04

🐝 New Features

  • forwardCompatibleEnumsByDefault config field is now available (commit by @mfbx9da4)

core: 6.0.2 - 2026-01-29

🐛 Bug Fixes

  • avoid overwriting SubSDK comments with empty comments when same SubSDK is referenced by multiple tags (commit by @mfbx9da4)

core: 6.0.1 - 2026-01-29

🐛 Bug Fixes

  • update Discriminator.Mapping when cloning error union children (commit by @mfbx9da4)

core: 6.0.0 - 2026-01-27

🐝 New Features

  • drop Python 3.9 support, require Python 3.10+ (commit by @AshGodfrey)

core: 5.23.18 - 2026-01-12

🐛 Bug Fixes

  • Further tune media type matching expression for ReDoS (commit by @bflad)

core: 5.23.17 - 2026-01-07

🐛 Bug Fixes

  • Prevent ReDoS vulnerability report for media type matching expression (commit by @bflad)

core: 5.23.16 - 2025-12-19

🐛 Bug Fixes

  • remove non-determinism from rare interaction with readonly/writeonly fields (commit by @ThomasRooney)

core: 5.23.15 - 2025-12-18

🐛 Bug Fixes

  • fixed escaping of template braces in defaults, consts, and comments (commit by @tristanspeakeasy)

core: 5.23.14 - 2025-12-09

🐝 New Features

  • add constFieldCasing config option to control const field casing (upper or normal) (commit by @mfbx9da4)

core: 5.23.12 - 2025-11-25

🐝 New Features

  • allow inclusion of empty array query parameter (commit by @idbentley)

core: 5.23.11 - 2025-11-24

🐝 New Features

  • union discriminators are inferred for oneOfs missing the explicit OpenAPI discriminator mapping. Configure via inferUnionDiscriminators: true in gen.yaml (commit by @mfbx9da4)

core: 5.23.10 - 2025-11-18

🐛 Bug Fixes

  • sanitize Python reserved keywords in method names to prevent syntax errors (commit by @AshGodfrey)

core: 5.23.9 - 2025-11-17

🐛 Bug Fixes

core: 5.23.8 - 2025-11-14

🐛 Bug Fixes

  • return type when 'sseFlatResponse: true' and response has data field (commit by @mfbx9da4)
  • improved type accuracy for response bodies - they now correctly return the actual type instead of being wrapped in Optional[] (commit by @mfbx9da4)

core: 5.23.7 - 2025-11-13

🐝 New Features

  • allow license to be defined in pyproject.toml's project field (commit by @walker-tx)

core: 5.23.6 - 2025-11-10

🐛 Bug Fixes

  • handle application/* encoding in multipart forms (commit by @danielkov)

core: 5.23.13 - 2025-11-06

🐛 Bug Fixes

  • multi-part arrays now serialized according to RFC7578 (commit by @danielkov)

core: 5.23.5 - 2025-11-05

🐝 New Features

  • support body field name configuration via requestBodyFieldName in gen.yaml (commit by @subomi)

core: 5.23.4 - 2025-11-03

🐛 Bug Fixes

  • Python generation no longer fails on recursive types (commit by @danielkov)

core: 5.23.3 - 2025-11-02

🐛 Bug Fixes

  • closed nullable enum serialization (commit by @mfbx9da4)

core: 5.23.2 - 2025-10-30

🐛 Bug Fixes

  • make security scheme resolution case-insensitive (commit by @vishalg0wda)

core: 5.23.1 - 2025-10-30

🐛 Bug Fixes

  • handle both closed and open enum serialization (commit by @idbentley)

core: 5.23.0 - 2025-10-13

🐝 New Features

  • add config option for deep merging allOf nodes in OpenAPI specs (commit by @BlakeTheAwesome)

core: 5.22.1 - 2025-09-30

🐛 Bug Fixes

  • correct import aliasing when SDK class members conflict with model names in Python templates (commit by @BlakeTheAwesome)

globalSecurity: 3.0.5 - 2026-02-03

🐝 New Features

  • support x-speakeasy-name-override on security scheme options (commit by @tristanspeakeasy)

globalServerURLs: 3.2.0 - 2025-10-22

🐝 New Features

  • Allow server selection to appear in all code samples (commit by @BlakeTheAwesome)

methodSecurity: 3.0.2 - 2026-02-03

🐝 New Features

  • support x-speakeasy-name-override on security scheme options (commit by @tristanspeakeasy)

nullables: 1.0.2 - 2026-01-12

🐛 Bug Fixes

  • Add custom serialization method for models where optional (but no nullable) fields are present (commit by @2ynn)

responseFormat: 1.1.0 - 2026-01-22

🔧 Chores

  • remove redundant headers field in envelope-http response (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)

retries: 3.0.3 - 2025-11-20

🐝 New Features

  • add support for Retry-After header (commit by @2ynn)

sdkHooks: 1.2.1 - 2026-01-14

🐝 New Features

  • add async hooks support for non-blocking I/O in async SDK methods; sync hooks now execute in a dedicated thread when async hooks are disabled (commit by @vishalg0wda)

sdkHooks: 1.2.0 - 2025-10-15

🐝 New Features

  • expose available OAuth 2.0 scopes for use in custom hooks (commit by @2ynn)

unions: 3.1.4 - 2026-02-14

🐛 Bug Fixes

  • handle open enum discriminators in unions by falling back to plain Union type (commit by @danielkov)

unions: 3.1.3 - 2026-02-10

🐝 New Features

  • add forward-compatible open discriminated unions with Unknown fallback models (commit by @vishalg0wda)
  • Controlled globally via forwardCompatibleUnionsByDefault: tagged-only in gen.yaml, or per-union with x-speakeasy-unknown-values: allow/disallow.

unions: 3.1.2 - 2026-01-13

🐛 Bug Fixes

  • always reference discriminated union members directly (commit by @danielkov)

unions: 3.1.1 - 2025-12-08

🐝 New Features

  • simplify syntax of discriminated unions when discriminator const is already present on the underlying types (commit by @mfbx9da4)
  • Support for applyUnionDiscriminators: true configurable via gen.yaml. When true, discriminator values will be applied as const fields onto union member types. If the type is used outside of a union, the const will not be applied.

unions: 3.1.0 - 2025-10-01

🐝 New Features

  • support nested discriminated unions (commit by @vishalg0wda)

Based on Speakeasy CLI 1.730.1

@github-actions github-actions bot added the minor Minor version bump label Feb 19, 2026
@github-actions github-actions bot force-pushed the speakeasy-sdk-regen-1771462234 branch 6 times, most recently from fcdd377 to 326f41c Compare February 25, 2026 00:52
* `bolt.orders.create_order_token()`: 
  *  `request.cart.discounts[].discount_category.enum(shipping_discount)` **Added**
  *  `response.cart.discounts[].discount_category.enum(shipping_discount)` **Added** (Breaking ⚠️)
* `bolt.transactions.review_transaction()`:  `response.order.cart.discounts[].discount_category.enum(shipping_discount)` **Added** (Breaking ⚠️)
* `bolt.transactions.get_transaction_details()`:  `response.order.cart.discounts[].discount_category.enum(shipping_discount)` **Added** (Breaking ⚠️)
* `bolt.transactions.update_transaction()`:  `response.order.cart.discounts[].discount_category.enum(shipping_discount)` **Added** (Breaking ⚠️)
* `bolt.transactions.authorize_transaction()`: 
  *  `request_body.union(merchant_credit_card_authorization).cart.discounts[].discount_category.enum(shipping_discount)` **Added**
@github-actions github-actions bot force-pushed the speakeasy-sdk-regen-1771462234 branch from 326f41c to 8758980 Compare February 26, 2026 00:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

minor Minor version bump

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant