Skip to content
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

chore(deps): bump the minor group in /docs with 13 updates #513

Merged
merged 1 commit into from
Dec 16, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the minor group in /docs with 13 updates:

Package From To
@astrojs/starlight 0.29.3 0.30.1
@astrojs/mdx 3.1.9 4.0.2
@rollup/pluginutils 5.1.3 5.1.4
@volar/kit 2.4.10 2.4.11
@volar/language-server 2.4.10 2.4.11
@volar/language-service 2.4.10 2.4.11
@volar/source-map 2.4.10 2.4.11
@volar/typescript 2.4.10 2.4.11
browserslist 4.24.2 4.24.3
caniuse-lite 1.0.30001688 1.0.30001689
hast-util-to-html 9.0.3 9.0.4
magic-string 0.30.15 0.30.17
parse-entities 4.0.1 4.0.2

Updates @astrojs/starlight from 0.29.3 to 0.30.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.30.1

Patch Changes

  • #2688 5c6996c Thanks @​HiDeoo! - Fixes an issue with autogenerated sidebars when using Starlight with Astro's new Content Layer API where group names would be sluggified.

@​astrojs/starlight@​0.30.0

Minor Changes

  • #2612 8d5a4e8 Thanks @​HiDeoo! - Adds support for Astro v5, drops support for Astro v4.

    Upgrade Astro and dependencies

    ⚠️ BREAKING CHANGE: Astro v4 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

    npx @astrojs/upgrade

    Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v5. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

    Update your collections

    ⚠️ BREAKING CHANGE: Starlight's internal content collections, which organize, validate, and render your content, have been updated to use Astro's new Content Layer API and require configuration changes in your project.

    1. Move the content config file. This file no longer lives within the src/content/config.ts folder and should now exist at src/content.config.ts.

    2. Edit the collection definition(s). To update the docs collection, a loader is now required:

       // src/content.config.ts
       import { defineCollection } from "astro:content";
      +import { docsLoader } from "@astrojs/starlight/loaders";
       import { docsSchema } from "@astrojs/starlight/schema";
      export const collections = {
      
      docs: defineCollection({ schema: docsSchema() }),
      
      
      docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
      };

If you are using the i18n collection to provide translations for additional languages you support or override our default labels, you will need to update the collection definition in a similar way and remove the collection type which is no longer available:

 // src/content.config.ts
 import { defineCollection } from "astro:content";
+import { docsLoader, i18nLoader } from "@astrojs/starlight/loaders";
 import { docsSchema, i18nSchema } from "@astrojs/starlight/schema";
export const collections = {

docs: defineCollection({ schema: docsSchema() }),

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.30.1

Patch Changes

  • #2688 5c6996c Thanks @​HiDeoo! - Fixes an issue with autogenerated sidebars when using Starlight with Astro's new Content Layer API where group names would be sluggified.

0.30.0

Minor Changes

  • #2612 8d5a4e8 Thanks @​HiDeoo! - Adds support for Astro v5, drops support for Astro v4.

    Upgrade Astro and dependencies

    ⚠️ BREAKING CHANGE: Astro v4 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

    npx @astrojs/upgrade

    Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v5. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

    Update your collections

    ⚠️ BREAKING CHANGE: Starlight's internal content collections, which organize, validate, and render your content, have been updated to use Astro's new Content Layer API and require configuration changes in your project.

    1. Move the content config file. This file no longer lives within the src/content/config.ts folder and should now exist at src/content.config.ts.

    2. Edit the collection definition(s). To update the docs collection, a loader is now required:

       // src/content.config.ts
       import { defineCollection } from "astro:content";
      +import { docsLoader } from "@astrojs/starlight/loaders";
       import { docsSchema } from "@astrojs/starlight/schema";
      export const collections = {
      
      docs: defineCollection({ schema: docsSchema() }),
      
      
      docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
      };

If you are using the i18n collection to provide translations for additional languages you support or override our default labels, you will need to update the collection definition in a similar way and remove the collection type which is no longer available:

 // src/content.config.ts
 import { defineCollection } from "astro:content";
+import { docsLoader, i18nLoader } from "@astrojs/starlight/loaders";
 import { docsSchema, i18nSchema } from "@astrojs/starlight/schema";
export const collections = {

... (truncated)

Commits

Updates @astrojs/mdx from 3.1.9 to 4.0.2

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.0.2

Patch Changes

@​astrojs/mdx@​4.0.1

Patch Changes

@​astrojs/mdx@​4.0.0

Major Changes

  • #12231 90ae100 Thanks @​bluwy! - Handles the breaking change in Astro where content pages (including .mdx pages located within src/pages/) no longer respond with charset=utf-8 in the Content-Type header.

    For MDX pages without layouts, @astrojs/mdx will automatically add the <meta charset="utf-8"> tag to the page by default. This reduces the boilerplate needed to write with non-ASCII characters. If your MDX pages have a layout, the layout component should include the <meta charset="utf-8"> tag.

    If you require charset=utf-8 to render your page correctly, make sure that your layout components have the <meta charset="utf-8"> tag added.

  • #12008 5608338 Thanks @​Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.

    Starting from this release, no breaking changes will be introduced unless absolutely necessary.

    To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.

Minor Changes

  • #12539 827093e Thanks @​bluwy! - Drops node 21 support

  • #11741 6617491 Thanks @​bluwy! - Updates adapter server entrypoint to use @astrojs/mdx/server.js

    This is an internal change. Handling JSX in your .mdx files has been moved from Astro internals and is now the responsibility of this integration. You should not notice a change in your project, and no update to your code is required.

Patch Changes

@​astrojs/mdx@​4.0.0-beta.5

Minor Changes

... (truncated)

Changelog

Sourced from @​astrojs/mdx's changelog.

4.0.2

Patch Changes

4.0.1

Patch Changes

4.0.0

Major Changes

  • #12231 90ae100 Thanks @​bluwy! - Handles the breaking change in Astro where content pages (including .mdx pages located within src/pages/) no longer respond with charset=utf-8 in the Content-Type header.

    For MDX pages without layouts, @astrojs/mdx will automatically add the <meta charset="utf-8"> tag to the page by default. This reduces the boilerplate needed to write with non-ASCII characters. If your MDX pages have a layout, the layout component should include the <meta charset="utf-8"> tag.

    If you require charset=utf-8 to render your page correctly, make sure that your layout components have the <meta charset="utf-8"> tag added.

  • #12008 5608338 Thanks @​Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.

    Starting from this release, no breaking changes will be introduced unless absolutely necessary.

    To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.

Minor Changes

  • #12539 827093e Thanks @​bluwy! - Drops node 21 support

  • #11741 6617491 Thanks @​bluwy! - Updates adapter server entrypoint to use @astrojs/mdx/server.js

    This is an internal change. Handling JSX in your .mdx files has been moved from Astro internals and is now the responsibility of this integration. You should not notice a change in your project, and no update to your code is required.

Patch Changes

4.0.0-beta.5

... (truncated)

Commits

Updates @rollup/pluginutils from 5.1.3 to 5.1.4

Changelog

Sourced from @​rollup/pluginutils's changelog.

v5.1.4

2024-12-15

Updates

  • refactor: replace test with includes (#1787)
Commits

Updates @volar/kit from 2.4.10 to 2.4.11

Changelog

Sourced from @​volar/kit's changelog.

Changelog

Commits

Updates @volar/language-server from 2.4.10 to 2.4.11

Changelog

Sourced from @​volar/language-server's changelog.

Changelog

Commits

Updates @volar/language-service from 2.4.10 to 2.4.11

Changelog

Sourced from @​volar/language-service's changelog.

Changelog

Commits

Updates @volar/source-map from 2.4.10 to 2.4.11

Changelog

Sourced from @​volar/source-map's changelog.

Changelog

Commits

Updates @volar/typescript from 2.4.10 to 2.4.11

Changelog

Sourced from @​volar/typescript's changelog.

Changelog

Commits
  • 42ccae0 v2.4.11
  • 57d8299 fix(typescript): resolve the shim used for tsc in Typescript v5.7 and up (#252)
  • d239d91 fix(typescript): fix issue with transpiled TypeScript files not being registe...
  • a231802 feat(typescript): add typescriptObject option to runTsc (#245)
  • 404c5dc refactor(typescript): simplify snapshot retrieval in language service plugins
  • c115031 fix(typescript): force update the opened script snapshot after the language p...
  • bdbd555 fix(typescript): should not suppressing getLanguageId crashes
  • See full diff in compare view

Updates browserslist from 4.24.2 to 4.24.3

Release notes

Sourced from browserslist's releases.

4.24.3

Changelog

Sourced from browserslist's changelog.

4.24.3

Commits

Updates caniuse-lite from 1.0.30001688 to 1.0.30001689

Commits

Updates hast-util-to-html from 9.0.3 to 9.0.4

Release notes

Sourced from hast-util-to-html's releases.

9.0.4

Fix

Miscellaneous

  • aa36aa6 5692e42 Refactor code-style

Full Changelog: syntax-tree/hast-util-to-html@9.0.3...9.0.4

Commits

Updates magic-string from 0.30.15 to 0.30.17

Changelog

Sourced from magic-string's changelog.

0.30.17 (2024-12-16)

Bug Fixes

  • remove problematic type: module (092697b)

0.30.16 (2024-12-16)

Bug Fixes

  • missing mapping after a line break with hires: 'boundary' (#298) (24cb8ea)

Features

Commits

Updates parse-entities from 4.0.1 to 4.0.2

Release notes

Sourced from parse-entities's releases.

4.0.2

Dependencies

Types

  • 730eafb Refactor to use @imports
  • 654d1fa Refactor types
  • 88892ca Add declaration maps

Full Changelog: wooorm/parse-entities@4.0.1...4.0.2

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group in /docs with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.29.3` | `0.30.1` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `3.1.9` | `4.0.2` |
| [@rollup/pluginutils](https://github.com/rollup/plugins/tree/HEAD/packages/pluginutils) | `5.1.3` | `5.1.4` |
| [@volar/kit](https://github.com/volarjs/volar.js/tree/HEAD/packages/kit) | `2.4.10` | `2.4.11` |
| [@volar/language-server](https://github.com/volarjs/volar.js/tree/HEAD/packages/language-server) | `2.4.10` | `2.4.11` |
| [@volar/language-service](https://github.com/volarjs/volar.js/tree/HEAD/packages/language-service) | `2.4.10` | `2.4.11` |
| [@volar/source-map](https://github.com/volarjs/volar.js/tree/HEAD/packages/source-map) | `2.4.10` | `2.4.11` |
| [@volar/typescript](https://github.com/volarjs/volar.js/tree/HEAD/packages/typescript) | `2.4.10` | `2.4.11` |
| [browserslist](https://github.com/browserslist/browserslist) | `4.24.2` | `4.24.3` |
| [caniuse-lite](https://github.com/browserslist/caniuse-lite) | `1.0.30001688` | `1.0.30001689` |
| [hast-util-to-html](https://github.com/syntax-tree/hast-util-to-html) | `9.0.3` | `9.0.4` |
| [magic-string](https://github.com/rich-harris/magic-string) | `0.30.15` | `0.30.17` |
| [parse-entities](https://github.com/wooorm/parse-entities) | `4.0.1` | `4.0.2` |


Updates `@astrojs/starlight` from 0.29.3 to 0.30.1
- [Release notes](https://github.com/withastro/starlight/releases)
- [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
- [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.30.1/packages/starlight)

Updates `@astrojs/mdx` from 3.1.9 to 4.0.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@4.0.2/packages/integrations/mdx)

Updates `@rollup/pluginutils` from 5.1.3 to 5.1.4
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/pluginutils/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/pluginutils-v5.1.4/packages/pluginutils)

Updates `@volar/kit` from 2.4.10 to 2.4.11
- [Release notes](https://github.com/volarjs/volar.js/releases)
- [Changelog](https://github.com/volarjs/volar.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/volarjs/volar.js/commits/v2.4.11/packages/kit)

Updates `@volar/language-server` from 2.4.10 to 2.4.11
- [Release notes](https://github.com/volarjs/volar.js/releases)
- [Changelog](https://github.com/volarjs/volar.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/volarjs/volar.js/commits/v2.4.11/packages/language-server)

Updates `@volar/language-service` from 2.4.10 to 2.4.11
- [Release notes](https://github.com/volarjs/volar.js/releases)
- [Changelog](https://github.com/volarjs/volar.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/volarjs/volar.js/commits/v2.4.11/packages/language-service)

Updates `@volar/source-map` from 2.4.10 to 2.4.11
- [Release notes](https://github.com/volarjs/volar.js/releases)
- [Changelog](https://github.com/volarjs/volar.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/volarjs/volar.js/commits/v2.4.11/packages/source-map)

Updates `@volar/typescript` from 2.4.10 to 2.4.11
- [Release notes](https://github.com/volarjs/volar.js/releases)
- [Changelog](https://github.com/volarjs/volar.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/volarjs/volar.js/commits/v2.4.11/packages/typescript)

Updates `browserslist` from 4.24.2 to 4.24.3
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](browserslist/browserslist@4.24.2...4.24.3)

Updates `caniuse-lite` from 1.0.30001688 to 1.0.30001689
- [Commits](browserslist/caniuse-lite@1.0.30001688...1.0.30001689)

Updates `hast-util-to-html` from 9.0.3 to 9.0.4
- [Release notes](https://github.com/syntax-tree/hast-util-to-html/releases)
- [Commits](syntax-tree/hast-util-to-html@9.0.3...9.0.4)

Updates `magic-string` from 0.30.15 to 0.30.17
- [Changelog](https://github.com/Rich-Harris/magic-string/blob/master/CHANGELOG.md)
- [Commits](Rich-Harris/magic-string@v0.30.15...v0.30.17)

Updates `parse-entities` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/wooorm/parse-entities/releases)
- [Commits](wooorm/parse-entities@4.0.1...4.0.2)

---
updated-dependencies:
- dependency-name: "@astrojs/starlight"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@astrojs/mdx"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: minor
- dependency-name: "@rollup/pluginutils"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@volar/kit"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@volar/language-server"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@volar/language-service"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@volar/source-map"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@volar/typescript"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: browserslist
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: caniuse-lite
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: hast-util-to-html
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: magic-string
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: parse-entities
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 16, 2024
@benbrandt benbrandt merged commit f1ad96f into main Dec 16, 2024
3 checks passed
@benbrandt benbrandt deleted the dependabot/npm_and_yarn/docs/minor-6eeb819755 branch December 16, 2024 11:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant