fix(deps): update npm-packages [skip ci]#72
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
|
c6fa0ea to
e11309e
Compare
c1ca74a to
13e0988
Compare
f0e7d46 to
3290e54
Compare
e2ef9cb to
60e9e83
Compare
05d8516 to
475b5d7
Compare
8aefefb to
90f3ebb
Compare
90f3ebb to
c338546
Compare
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.38.1→^0.39.1^0.6.0→^0.7.0^0.34.3→^0.34.5^0.20.1→^0.24.0Release Notes
withastro/starlight (@astrojs/starlight)
v0.39.1Compare Source
Patch Changes
#3885
010eed1Thanks @ArmandPhilippot! - Fixes the version mentioned in an error message related to autogenerated sidebar groups support.#3887
b3c6990Thanks @delucis! - Adds 13 new icons:clock,desktop,mobile-android,window,database,server,code-branch,notes,question,question-circle,analytics,padlock, andsolidjs.v0.39.0Compare Source
Minor Changes
#3618⚠️ BREAKING CHANGE: This release changes how autogenerated links work in Starlight’s sidebar configuration.
dcf6d09Thanks @HiDeoo! -If you have sidebar groups using the
autogeneratekey, you must now wrap that configuration in anitemsarray:{ label: 'My group', - autogenerate: { directory: 'some-dir' }, + items: [{ autogenerate: { directory: 'some-dir' } }], }This change unlocks the possibility to mix autogenerated links and other links in a single group, for example:
This release also updates the shape of autogenerated sidebar entries in route data. Autogenerated links and groups in
Astro.locals.starlightRoute.sidebarnow include anautogenerateobject with the configureddirectoryvalue:#3618⚠️ BREAKING CHANGE: This release changes the default collapsed state of autogenerated sidebar subgroups.
dcf6d09Thanks @HiDeoo! -Autogenerated subgroups no longer inherit the
collapsedvalue from their parent group. They are now expanded by default unless explicitly configured withautogenerate.collapsed.If your sidebar configuration relies on a collapsed parent group to also collapse its autogenerated subgroups, update your configuration to set
autogenerate.collapsedtotrue:{ label: 'Reference', collapsed: true, items: [ - { autogenerate: { directory: 'reference' } }, + { autogenerate: { directory: 'reference', collapsed: true } }, ], }#3845
4d755f5Thanks @delucis! - Adds a<link rel="alternate" hreflang="x-default" href="...">tag pointing to the default locale in multilingual sites. Thex-defaultalternate is used as a signal of which language to fall back to if no other is available. Learn more in Google’s SEO localization docs.#3862
ec70630Thanks @itrew! - Makes spacing of items in nested lists more consistent#3872
417a66cThanks @tats-u! - Enables the CSS propertytext-autospacein Chinese and Japanese documents.If you would prefer to disable autospacing in Chinese and Japanese pages, you can add the following custom CSS to your site:
#3797
9764ebdThanks @delucis! - Avoids the risk of layout shift when users expand and collapse sidebar groupsThis release can introduce additional padding to the site sidebar on certain devices to reserve space for scrollbars. You may wish to inspect your site sidebar visually when upgrading.
If you would prefer to keep the previous styling, you can add the following custom CSS to your site:
#3858
6672c35Thanks @delucis! - Updatesi18next, used for Starlight’s localization APIs, from v23 to v26There should not be any user-facing changes from this update
v0.38.5Compare Source
Patch Changes
ccf6000, #387747451bcThanks @delucis! - Updates internal dependenciesv0.38.4Compare Source
Patch Changes
#3828
342038bThanks @MangelMaxime! - Fixes aside styling when used without any content#3853
563e11bThanks @delucis! - Fixes a type-checking issue for users on newer versions of TypeScriptv0.38.3Compare Source
Patch Changes
#3799
313611bThanks @JosefJezek! - Improves Czech UI translations#3770
6e7bed1Thanks @gameroman! - Adds examples to the inline documentation fortitlein the Starlight configuration object#3801
fedd48bThanks @delucis! - Fixes missing draft content warning in dev on pages using the hero layoutv0.38.2Compare Source
Patch Changes
#3759
f24ce99Thanks @MilesChou! - Fixes an issue where monolingual sites using a region-specific locale (e.g.,zh-TW) as the default would incorrectly display base language translations (e.g.,zhSimplified Chinese) instead of the region-specific ones (e.g.,zh-TWTraditional Chinese).#3768
a4c6c20Thanks @delucis! - Improves performance of sidebar generation for sites with very large sidebarschangesets/changesets (@changesets/changelog-github)
v0.7.0Compare Source
Minor Changes
94578cfThanks @Kauhsa! - AddeddisableThanksoptionHiDeoo/starlight-links-validator (starlight-links-validator)
v0.24.0Compare Source
Minor Changes
e7663beThanks @HiDeoo! - Adds support for validating links to Astro redirects.v0.23.0Compare Source
Minor Changes
#147
424b4c2Thanks @mvvmm! - Adds a newfailOnErroroption to control whether link validation issues fail the build.true, validation issues fail the build.false, validation issues are still reported, but they do not fail the build.#147
424b4c2Thanks @mvvmm! - Adds support for a JSON reporter.When enabled, validation errors are written to the
.starlight-links-validator/errors.jsonfile, which is only created when validation errors are found.#147
424b4c2Thanks @mvvmm! - Adds alink_validation_failedstep output to the GitHub Actions reporter.Patch Changes
045637eThanks @HiDeoo! - Fixes a regression in version0.21.0where some links were incorrectly reported as invalid or failed to match theexcludeoption.v0.22.0Compare Source
Minor Changes
6f66387Thanks @HiDeoo! - Adds support for validating frontmatter links transformed by Starlight route data middleware.v0.21.0Compare Source
Minor Changes
#142
9ee77adThanks @HiDeoo! - Refactors internal logic from a remark to a rehype plugin.This is an internal update and should not cause any user-facing changes, but it improves plugin performance and fixes some edge-case validation issues.
#144
b30aa17Thanks @HiDeoo! - Redesigns link validation error reporting to be more user-friendly and actionable.Most notably, error reporting now includes the following improvements:
#145
82cb4dThanks @HiDeoo! - Adds support for a GitHub Actions reporter.When enabled and the plugin runs in GitHub Actions, validation errors are written to the job summary as a Markdown table.
#142
9ee77adThanks @HiDeoo! - Adds support for validating links transformed by remark and rehype plugins.This change allows users to use portable Markdown links, author links that can be followed in an IDE and that are transformed by remark or rehype plugins into proper URLs at build time, while still being validated.
#144
b30aa17Thanks @HiDeoo! - Reduces terminal text styling dependency size by switching to Node.js built-inutil.styleText().Patch Changes
9ee77adThanks @HiDeoo! - Fixes an edge-case link validation issue related to Astro 6 Markdown heading ID generation changes.Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.