-
Notifications
You must be signed in to change notification settings - Fork 25
Version Packages #432
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
Merged
Merged
Version Packages #432
Conversation
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
a2e797c to
8914109
Compare
8914109 to
51c9e8a
Compare
51c9e8a to
217c4f9
Compare
217c4f9 to
f70e6be
Compare
f70e6be to
4a701cb
Compare
4a701cb to
4fa4151
Compare
4fa4151 to
8de8370
Compare
8de8370 to
fb27542
Compare
fb27542 to
4c2003a
Compare
4c2003a to
bf5aef0
Compare
bf5aef0 to
97d4f20
Compare
97d4f20 to
88aa2d5
Compare
88aa2d5 to
244e3f2
Compare
244e3f2 to
8c452cf
Compare
8c452cf to
6c180bc
Compare
e9d244d to
47b465f
Compare
47b465f to
eec9b7a
Compare
eec9b7a to
cb8ce89
Compare
cb8ce89 to
51db47e
Compare
51db47e to
27339f7
Compare
27339f7 to
dceec09
Compare
dceec09 to
2bf87ed
Compare
2bf87ed to
0e34963
Compare
0e34963 to
a373e2e
Compare
a373e2e to
d17e363
Compare
d17e363 to
b9cc8fb
Compare
b9cc8fb to
635fa30
Compare
635fa30 to
69806b8
Compare
69806b8 to
c1355f2
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
adcontextprotocol@2.5.3
Patch Changes
309a880: Allow additional properties in all JSON schemas for forward compatibility
Changes all schemas from
"additionalProperties": falseto"additionalProperties": true. This enables clients running older schema versions to accept responses from servers with newer schemas without breaking validation - a standard practice for protocol evolution in distributed systems.5d0ce75: Add explicit type definition to error.json details property
The
detailsproperty in core/error.json now explicitly declares"type": "object"and"additionalProperties": true, consistent with other error details definitions in the codebase. This addresses issue core/error.json doesn't specify data type of the "details" property #343 where the data type was unspecified.cdcd70f: Fix migration 151 to delete duplicates before updating Slack IDs to WorkOS IDs
39abf79: Add missing fields to package request schemas for consistency with core/package.json.
Schema Changes:
media-buy/package-request.json: Addedimpressionsandpausedfieldsmedia-buy/update-media-buy-request.json: Addedimpressionsfield to package updatesDetails:
impressions: Impression goal for the package (optional, minimum: 0)paused: Create package in paused state (optional, default: false)These fields were defined in
core/package.jsonbut missing from the request schemas, making it impossible to set impression goals or initial paused state when creating/updating media buys.Documentation:
create_media_buytask reference with new package parametersupdate_media_buytask reference with impressions parameterfa68588: fix: display Slack profile name for chapter leaders without WorkOS accounts
Leaders added via Slack ID that haven't linked their WorkOS account now display
their Slack profile name (real_name or display_name) instead of the raw Slack
user ID (e.g., U09BEKNJ3GB).
The getLeaders and getLeadersBatch queries now include slack_user_mappings as an
additional name source in the COALESCE chain.
9315247: Release schemas with
additionalProperties: truefor forward compatibilityThis releases
dist/schemas/2.5.2/containing the relaxed schema validationintroduced in Allow additional properties in all JSON schemas #646. Clients can now safely ignore unknown fields when parsing
API responses, allowing the API to evolve without breaking existing integrations.