Version Packages#432
Merged
Merged
Conversation
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
ea7ebe4 to
9f12adf
Compare
9f12adf to
b405981
Compare
b405981 to
6749d10
Compare
6749d10 to
0bf6e43
Compare
0bf6e43 to
aaa140a
Compare
aaa140a to
d6b4133
Compare
d6b4133 to
0514f6d
Compare
0514f6d to
d9b05fd
Compare
d9b05fd to
0f87b29
Compare
0f87b29 to
9c121db
Compare
9c121db to
c5151a1
Compare
c5151a1 to
9b49d9d
Compare
9b49d9d to
7a62c9a
Compare
7a62c9a to
e93869f
Compare
6 tasks
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.
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.