-
Notifications
You must be signed in to change notification settings - Fork 14
Product update: OpenAPI 3.2 partial support #425
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
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
src/_product-updates/2025-12-22-openapi-3-2-partial-support.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| --- | ||
| title: "OpenAPI 3.2: partial support" | ||
| tags: [Improvement] | ||
| image: /images/changelog/openapi-3-2-partial-support.png | ||
| --- | ||
|
|
||
|  | ||
|
|
||
| The OpenAPI Initiative released a new version of their OpenAPI specification in September: [OpenAPI 3.2](https://spec.openapis.org/oas/v3.2.0.html). | ||
|
|
||
| If you didn't hear about this new version, feel free to read our [OpenAPI complete guide](/guides/openapi/specification/v3.2/introduction/what-is-openapi/), updated for OpenAPI 3.2. | ||
|
|
||
| We started supporting some of the features brought by this new version: | ||
| - The QUERY method is now supported in both the documentation and the API Explorer. | ||
| - Servers can now have a `name`, which can be combined with the existing `description` field to provide users with a clear context about a server's usage. | ||
| - Tags now offers a `summary` property. Behaving like our existing x-displayName vendor extension, it gives a way to display a group name in the documentation that is different from the tag name. | ||
| - `summary` can be added to responses when the level of detail doesn't justify the use of the existing `description` field. | ||
| - Security schemes can now be `deprecated`. | ||
|
|
||
| OpenAPI 3.2 definition files can be deployed through your usual deployment process: using our [Github Action](https://github.com/bump-sh/github-action), our [CLI](https://github.com/bump-sh/cli), our [API](https://developers.bump.sh/) (now in OpenAPI 3.2 ✨), or directly in your Bump.sh dashboard. | ||
|
|
||
| As always, you can reach out at [[email protected]](mailto:[email protected]) for any questions/feedback. | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intentional to not mention other operations described via
additionalOperations? (I know I need to test the last PR of the lib curl_generator to verify support on Explorer too)Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you talking about specific methods, or any verbs?
If it's about being able to add any verbs, I'll update only the help center page once it's fully verified 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's indeed about specific methods or verbs, that we support, except on the explorer side (where I didn't time yet to verify the fix on curl-generator lib).