platform: release v6.2.2 (in-house codegen) - #683
Open
codat-sdk-generator[bot] wants to merge 2 commits into
Open
platform: release v6.2.2 (in-house codegen)#683codat-sdk-generator[bot] wants to merge 2 commits into
codat-sdk-generator[bot] wants to merge 2 commits into
Conversation
codat-sdk-generator
Bot
force-pushed
the
generate/platform
branch
from
August 19, 2026 09:26
87ab4ee to
b5dd1cf
Compare
platform/RELEASES.md - record the deep-import break inside the 6.2.2 entry, which the publish pipeline reads verbatim as the GitHub release body
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Regenerated by generate-and-pr run 32237277229 (https://github.com/codat-internal/sdk-codegen/actions/runs/32237277229) from codat-internal/sdk-codegen @ a59d63a. Built from the specs committed in inputs/, which are copied in by hand and may be behind the published API. Version 6.2.1 -> 6.2.2, stamped in packaging and RELEASES.md. All blocking gates ran green in the linked run. Merging this PR is the release trigger.
Breaking change in this release: deep imports no longer work. Importing a file by its path inside the package, for example
@codat/platform/sdk/models/shared/apikeydetails.js, used to work and now fails. The reason is what those files used to contain: each one shipped zod schemas ($inboundSchema/$outboundSchema) and JSON conversion helpers that this package no longer provides in that shape. The package doesn't depend on zod, so the schemas have no replacement, and the helpers are named and shaped differently. Letting the old paths resolve would mean imports succeed and then break at runtime, so the package now lists the paths it supports (theexportsfield inpackage.json) and only those resolve. Import from@codat/platform/sdk/models/sharedor the package root instead. Full details are in the RELEASES.md entry this PR adds.What changed vs the previously shipped SDK
The gates only prove nothing regressed against the frozen Speakeasy snapshots; anything the spec added since is listed below for human review.