fix(deps): update dependency starlight-openapi to ^0.19.1#126
Closed
renovate[bot] wants to merge 1 commit intomainfrom
Closed
fix(deps): update dependency starlight-openapi to ^0.19.1#126renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
Contributor
Author
|
❌ Deploy Preview for openpodcastapi failed.
|
7401ddb to
481baf5
Compare
481baf5 to
ee9d375
Compare
ee9d375 to
a620449
Compare
a620449 to
60f5f6c
Compare
60f5f6c to
0b968b1
Compare
0b968b1 to
ab33b10
Compare
ab33b10 to
50b8e26
Compare
50b8e26 to
e20c307
Compare
e20c307 to
1bf476c
Compare
1bf476c to
48bbbcd
Compare
48bbbcd to
9e430b0
Compare
9e430b0 to
f28731d
Compare
f28731d to
ca1c2c0
Compare
ca1c2c0 to
54a7267
Compare
54a7267 to
2953ffa
Compare
2953ffa to
277dded
Compare
1 task
277dded to
7a7bee1
Compare
Contributor
Author
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update ( If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
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 contains the following updates:
^0.8.3->^0.19.1Release Notes
HiDeoo/starlight-openapi (starlight-openapi)
v0.19.1Compare Source
Patch Changes
6c37f8eThanks @HiDeoo! - Prevents a potential build error for OpenAPI schemas containing incorrectly formatted enum values.v0.19.0Compare Source
Minor Changes
#112
64e03d9Thanks @HiDeoo! - Adds support for specifying custom sidebar groups for individual OpenAPI schemas.When generating documentation for multiple schemas, this allows you to place the generated documentation pages for each schema anywhere in the Starlight sidebar, even in different sidebar groups.
See the "Sidebar groups" section in the documentation for more information.
v0.18.0Compare Source
Minor Changes
6de8f2bThanks @HiDeoo! - Respects Starlight convention to generate URLs with a trailing slash when using thetrailingSlash: 'ignore'Astro configuration option (the default) as many common hosting providers redirect to URLs with a trailing slash by default.Patch Changes
6de8f2bThanks @HiDeoo! - Fixes a sidebar link generation issue when using the AstrotrailingSlashconfiguration option set toalways.v0.17.0Compare Source
Minor Changes
4179569Thanks @HiDeoo! - Adds support for callbacks in OpenAPI 3 specs.v0.16.1Compare Source
Patch Changes
1b00fcfThanks @cruzdanilo! - Fixes an issue preventing numeric enum values from being rendered.v0.16.0Compare Source
Minor Changes
#96⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now version
933cc5cThanks @HiDeoo! -0.34.0.Please use the
@astrojs/upgradecommand to upgrade your project:#96
933cc5cThanks @HiDeoo! - Adds clickable anchor links to headings which respects the Starlightmarkdown.headingLinksSectionconfiguration option.v0.15.0Compare Source
Minor Changes
9b95bcaThanks @HiDeoo! - Adds support for schemas using version3.0.4of the OpenAPI specification by updating the OpenAPI and Swagger API definitions parser used internally.v0.14.4Compare Source
Patch Changes
6953670Thanks @HiDeoo! - Fixes potential sidebar link issues when using the Astrobaseoption.v0.14.3Compare Source
Patch Changes
d2cdf30Thanks @HiDeoo! - Fixes a compatibility issue with some other Starlight plugins due to how the sidebar entries for the generated pages were being created.v0.14.2Compare Source
Patch Changes
ecc5bb3Thanks @HiDeoo! - Fixes syntax highlighting issues for many examples where the code block language was not properly inferred.v0.14.1Compare Source
Patch Changes
dc88650Thanks @HiDeoo! - Ensures property titles are rendered when provided in a schema.v0.14.0Compare Source
Minor Changes
#80
d6175bcThanks @HiDeoo! - Adds a newsidebar.operations.sortconfiguration option to configure the sorting method for the operation sidebar links.The current behavior to sort the operation sidebar links in the order they appear in the OpenAPI document is preserved by default. Setting this option to
'alphabetical'will sort the operation sidebar links alphabetically.#80
d6175bcThanks @HiDeoo! - Deprecates the sidebarlabel,collapsed, andsidebarMethodBadgesoptions in favor of a newsidebaroption object.The previous options are still supported for backward compatibility, but they will be removed in a future release.
starlightOpenAPI([ { base: 'api', schema: '../schemas/api-schema.yaml', - label: 'My API', - collapsed: false, - sidebarMethodBadges: true, + sidebar: { + label: 'My API', + collapsed: false, + operations: { badges: true }, + }, }, ])#80
d6175bcThanks @HiDeoo! - Adds a newsidebar.tags.sortconfiguration option to configure the sorting method for the tag sidebar groups.The current behavior to sort the tag sidebar groups in the order they appear in the OpenAPI document is preserved by default. Setting this option to
'alphabetical'will sort the tag sidebar groups alphabetically.#80
d6175bcThanks @HiDeoo! - Adds a newsidebar.operations.labelsconfiguration option to define whether the operation sidebar labels should use the operation ID or summary.The current behavior to use the operation summary and fall back to the operation ID if no summary is provided is preserved by default. Setting this option to
'operationId'will always use the operation ID as the operation sidebar label.Patch Changes
#80
d6175bcThanks @HiDeoo! - Fixes a rendering issue for model definition properties using nestedallOfproperties.#80
d6175bcThanks @HiDeoo! - Fixes a syntax highlighting issue for response examples defined at the object-level in a reference of thecomponentssection.v0.13.0Compare Source
Minor Changes
#75⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now version
52dd833Thanks @HiDeoo! -0.32.0.Please use the
@astrojs/upgradecommand to upgrade your project:v0.12.1Compare Source
Patch Changes
beeb586Thanks @HiDeoo! - Addsastroas a peer dependency to prevent potential build errors in monorepos with hoisting disabled.v0.12.0Compare Source
Minor Changes
b6679d7Thanks @HiDeoo! - Improves formatting of query parameter examples based on thestyleandexplodeproperty values and the RFC 6570 URI template specification.v0.11.0Compare Source
Minor Changes
194dfe7Thanks @HiDeoo! - Adds a newsidebarMethodBadgesschema configuration option to display badges next to sidebar operation links with the associated HTTP method.v0.10.0Compare Source
Minor Changes
b19e249Thanks @HiDeoo! - Adds overview pages for operations grouped by tags defined with adescriptionorexternalDocsfields displaying the tag's information.v0.9.0Compare Source
Minor Changes
#58
f91f2f4Thanks @HiDeoo! - Adds support for Astro v5, drops support for Astro v4.0.30.0.Please follow the upgrade guide to update your project.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.