fix(deps): update npm-packages [skip ci] #19
+225
−639
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.36.2->^0.37.0^0.5.1->^0.5.2^2.29.7->^2.29.83.6.2->3.7.3^0.32.5->^0.34.5^0.4.1->^0.6.2^0.4.1->^0.5.2Release Notes
withastro/starlight (@astrojs/starlight)
v0.37.0Compare Source
Minor Changes
#3491
28810f0Thanks @JusticeMatthew! - Changes text overflow styling in Markdown contentoverflow-wrapCSS style for common elements tobreak-word. In most cases, there should be little visual impact, but this change can impact how layouts with implicit sizing (such as tables) look, improving legibility in how words wrap.If you want to preserve the previous styling, you can add the following custom CSS to your site:
#3351
239698cThanks @HiDeoo! - Ensures that Starlight CSS layer order is predictable in custom pages using the<StarlightPage>component.Previously, due to how import order works in Astro, the
<StarlightPage>component had to be the first import in custom pages to set up cascade layers used internally by Starlight to manage the order of its styles.With this change, this restriction no longer applies and Starlight’s styles will be applied correctly regardless of the import order of the
<StarlightPage>component.#3521
ca7b771Thanks @shubham-padia! - Fixes an issue where a vertical scrollbar could be displayed on the Starlight<Tabs>component when zooming the page<Tabs>component no longer usesmargin-bottomandborder-bottomto highlight the current tab. This is now done with abox-shadow. If you have custom styling for your tabs, you may need to update it.If you want to preserve the previous styling, you can add the following custom CSS to your site:
#3549
1cf50ebThanks @jacobdalamb! - Updates the default sans-serif system font stack, dropping support for the-apple-systemandBlinkMacSystemFontfont names used in older browsers. These are no longer needed in browsers officially supported by Starlight.If you still need to support older browsers, you can add the following custom CSS to your site:
#3332
f61f99dThanks @HiDeoo! - Adds a newmarkdown.processedDirsconfiguration option to specify additional directories where files should be processed by Starlight’s Markdown pipeline.By default, Starlight’s processing only applies to Markdown and MDX content loaded using Starlight’s
docsLoader(). This new option allows to extend this processing to other directories, which can be useful if you are rendering content from a custom content collection using the<StarlightPage>component and expect Starlight’s Markdown processing to be applied to that content as well.v0.36.3Compare Source
Patch Changes
#3555
547dc30Thanks @Its-Just-Nans! - Improves the error message thrown when using a file in thepublic/directory with Starlight’scustomCssconfiguration option#3496
b78fda4Thanks @delucis! - Fixes invalid<head>output when configuration is missing:<meta property="og:description" />if Starlight’sdescriptionoption is unset<link rel="canonical" />and<meta property="og:url" />if Astro’ssiteoption is unset#3511
8727df1Thanks @astrobot-houston! - Updates theseti:gitlabicon to match latest version from Seti UI Iconschangesets/changesets (@changesets/changelog-github)
v0.5.2Compare Source
prettier/prettier (prettier)
v3.7.3Compare Source
diff
API: Fix
prettier.getFileInfo()change that breaks VSCode extension (#18375 by @fisker)An internal refactor accidentally broke the VSCode extension plugin loading.
v3.7.2Compare Source
diff
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
v3.7.1Compare Source
diff
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0Compare Source
diff
🔗 Release Notes
lovell/sharp (sharp)
v0.34.5Compare Source
Upgrade to libvips v8.17.3 for upstream bug fixes.
Add experimental support for prebuilt Linux RISC-V 64-bit binaries.
Support building from source with npm v12+, deprecate
--build-from-sourceflag.#4458
Add support for BigTIFF output.
#4459
@throwbi
Improve error messaging when only warnings issued.
#4465
Simplify ICC processing when retaining input profiles.
#4468
v0.34.4Compare Source
Upgrade to libvips v8.17.2 for upstream bug fixes.
Ensure TIFF
subifdand OpenSlidelevelinput options are respected (regression in 0.34.3).Ensure
autoOrientoccurs before non-90 angle rotation.#4425
Ensure
autoOrientremoves existing metadata after shrink-on-load.#4431
TypeScript: Ensure
KernelEnumincludeslinear.#4441
@BayanBennett
Ensure
unlimitedflag is passed upstream when reading TIFF images.#4446
Support Electron memory cage when reading XMP metadata (regression in 0.34.3).
#4451
Add sharp-libvips rpath for yarn v5 support.
#4452
@arcanis
v0.34.3Compare Source
v0.34.2Compare Source
v0.34.1Compare Source
v0.34.0Compare Source
v0.33.5Compare Source
v0.33.4Compare Source
v0.33.3Compare Source
v0.33.2Compare Source
v0.33.1Compare Source
v0.33.0Compare Source
HiDeoo/starlight-sidebar-topics (starlight-sidebar-topics)
v0.6.2Compare Source
Patch Changes
e5163ebThanks @HiDeoo! - Setups trusted publishing using OpenID Connect (OIDC) authentication — no code changes.v0.6.1Compare Source
Patch Changes
#41
cc18784Thanks @InertSloth! - Exports theStarlightSidebarTopicsUserOptionstype matching the plugin configuration object.#37
c45840cThanks @angelikatyborska! - Fixes a potential type issue for users manually runningtscin their projects.v0.6.0Compare Source
Minor Changes
#29
5c337bcThanks @HiDeoo! - Adds a route data object accessible on Starlight pages usingAstro.locals.starlightSidebarTopicscontaining information about all the topics configured in your project. This can be useful to create custom topic lists to replace the built-in topic list.See the “Custom Topic List” guide for more information.
#29
5c337bcThanks @HiDeoo! - Adds a newtopicsplugin configuration option to map topic identifiers to a list of pages or glob patterns that should be associated with the topic.This option can be useful for custom pages generated and included in the sidebar by other plugins that have no knowledge of the Starlight Sidebar Topics plugin that should be associated with a specific topic.
See the “Unlisted Pages” guide to learn more about how to associate pages with a specific topic.
v0.5.1Compare Source
Patch Changes
ca87a7bThanks @HiDeoo! - Adds the.starlight-sidebar-topicsCSS class around the sidebar topics list to make it easier to style it.v0.5.0Compare Source
Minor Changes
#22
0e5806fThanks @HiDeoo! - Adds a newexcludeplugin configuration option to exclude pages from any topic.This options can be useful for custom pages that use a custom site navigation sidebar which do not belong to any topic. Excluded pages will use the built-in Starlight sidebar and not render a list of topics.
See the “Excluded Pages” guide to learn more about how to exclude content pages from any topic.
trueberryless-org/starlight-sidebar-topics-dropdown (starlight-sidebar-topics-dropdown)
v0.5.2Compare Source
Patch Changes
f640d36Thanks @trueberryless-org! - Setups trusted publishing using OpenID Connect (OIDC) authentication — no code changes.v0.5.1Compare Source
Patch Changes
3a59211Thanks @trueberryless! - Update keywords and descriptionv0.5.0Compare Source
Minor Changes
#40⚠️ BREAKING CHANGE: This plugin now uses the Starlight Sidebar Topics plugin as a peer dependency. Please follow the upgrade guide below to migrate to the new version.
acf6f15Thanks @trueberryless! -Install the Starlight Sidebar Topics plugin:
Update the
starlight-sidebar-topics-dropdowncomponent in yourastro.config.mjs(use thestarlight-sidebar-topicsplugin instead):Exchange the
starlight-sidebar-topics-dropdowncomponent with thestarlight-sidebar-topicsplugin and add a manual override for theSidebarcomponent where you can use the dropdown component from thestarlight-sidebar-topics-dropdowncomponent:// astro.config.mjs export default defineConfig({ integrations: [ starlight({ plugins: [ - starlightSidebarTopicsDropdown([ + starlightSidebarTopics([ // Your Starlight Sidebar Topics configuration here (unchanged). ]), ], + components: { + Sidebar: './src/components/Sidebar.astro', + }, }), ], });Create an Astro component to replace the default Starlight
<Sidebar>component with which will render the topic list dropdown menu and re-use the default Starlight sidebar:Update the schema import in
src/content.config.ts:Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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.