yeskunall / www

https://kimchiii.space
MIT License
2 stars 0 forks source link

chore(deps): bump the astro group with 5 updates #232

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the astro group with 5 updates:

Package From To
@astrojs/vercel 7.5.3 7.6.0
astro 4.6.3 4.8.6
@astrojs/check 0.5.10 0.7.0
@astrojs/mdx 2.3.1 3.0.0
@astrojs/rss 4.0.5 4.0.6

Updates @astrojs/vercel from 7.5.3 to 7.6.0

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​7.6.0

Minor Changes

@​astrojs/vercel@​7.5.4

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

7.6.0

Minor Changes

7.5.4

Patch Changes

Commits


Updates astro from 4.6.3 to 4.8.6

Release notes

Sourced from astro's releases.

astro@4.8.6

Patch Changes

astro@4.8.5

Patch Changes

astro@4.8.4

Patch Changes

  • #11026 8dfb1a2 Thanks @​bluwy! - Skips rendering script tags if it's inlined and empty when experimental.directRenderScript is enabled

  • #11043 d0d1710 Thanks @​bholmesdev! - Fixes minor type issues in actions component example

  • #10999 5f353e3 Thanks @​bluwy! - The prefetch feature is updated to better support different browsers and different cache headers setup, including:

    1. All prefetch strategies will now always try to use <link rel="prefetch"> if supported, or will fall back to fetch().
    2. The prefetch() programmatic API's with option is deprecated in favour of an automatic approach that will also try to use <link rel="prefetch> if supported, or will fall back to fetch().

    This change shouldn't affect most sites and should instead make prefetching more effective.

  • #11041 6cc3fb9 Thanks @​bholmesdev! - Fixes 500 errors when sending empty params or returning an empty response from an action.

  • #11028 771d1f7 Thanks @​bholmesdev! - Throw on missing server output when using Astro Actions.

  • #11029 bd34452 Thanks @​bholmesdev! - Actions: include validation error in thrown error message for debugging.

  • #11046 086694a Thanks @​HiDeoo! - Fixes getViteConfig() type definition to allow passing an inline Astro configuration as second argument

  • #11026 8dfb1a2 Thanks @​bluwy! - Fixes CSS handling if imported in a script tag in an Astro file when experimental.directRenderScript is enabled

  • #11020 2e2d6b7 Thanks @​xsynaptic! - Add type declarations for import.meta.env.ASSETS_PREFIX when defined as an object for handling different file types.

  • #11030 18e7f33 Thanks @​bholmesdev! - Actions: Fix missing message for custom Action errors.

... (truncated)

Changelog

Sourced from astro's changelog.

4.8.6

Patch Changes

4.8.5

Patch Changes

4.8.4

Patch Changes

  • #11026 8dfb1a2 Thanks @​bluwy! - Skips rendering script tags if it's inlined and empty when experimental.directRenderScript is enabled

  • #11043 d0d1710 Thanks @​bholmesdev! - Fixes minor type issues in actions component example

  • #10999 5f353e3 Thanks @​bluwy! - The prefetch feature is updated to better support different browsers and different cache headers setup, including:

    1. All prefetch strategies will now always try to use <link rel="prefetch"> if supported, or will fall back to fetch().
    2. The prefetch() programmatic API's with option is deprecated in favour of an automatic approach that will also try to use <link rel="prefetch> if supported, or will fall back to fetch().

    This change shouldn't affect most sites and should instead make prefetching more effective.

  • #11041 6cc3fb9 Thanks @​bholmesdev! - Fixes 500 errors when sending empty params or returning an empty response from an action.

  • #11028 771d1f7 Thanks @​bholmesdev! - Throw on missing server output when using Astro Actions.

  • #11029 bd34452 Thanks @​bholmesdev! - Actions: include validation error in thrown error message for debugging.

  • #11046 086694a Thanks @​HiDeoo! - Fixes getViteConfig() type definition to allow passing an inline Astro configuration as second argument

  • #11026 8dfb1a2 Thanks @​bluwy! - Fixes CSS handling if imported in a script tag in an Astro file when experimental.directRenderScript is enabled

  • #11020 2e2d6b7 Thanks @​xsynaptic! - Add type declarations for import.meta.env.ASSETS_PREFIX when defined as an object for handling different file types.

... (truncated)

Commits


Updates @astrojs/check from 0.5.10 to 0.7.0

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.7.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [c8af6db]
    • @​astrojs/language-server@​2.10.0

@​astrojs/check@​0.6.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [65d3425]
    • @​astrojs/language-server@​2.9.0
Changelog

Sourced from @​astrojs/check's changelog.

0.7.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [c8af6db]
    • @​astrojs/language-server@​2.10.0

0.6.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [65d3425]
    • @​astrojs/language-server@​2.9.0
Commits


Updates @astrojs/mdx from 2.3.1 to 3.0.0

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.0.0

Major Changes

  • #10935 ddd8e49 Thanks @​bluwy! - Refactors the MDX transformation to rely only on the unified pipeline. Babel and esbuild transformations are removed, which should result in faster build times. The refactor requires using Astro v4.8.0 but no other changes are necessary.

  • #10935 ddd8e49 Thanks @​bluwy! - Allows integrations after the MDX integration to update markdown.remarkPlugins and markdown.rehypePlugins, and have the plugins work in MDX too.

    If your integration relies on Astro's previous behavior that prevents integrations from adding remark/rehype plugins for MDX, you will now need to configure @astrojs/mdx with extendMarkdownConfig: false and explicitly specify any remarkPlugins and rehypePlugins options instead.

  • #10935 ddd8e49 Thanks @​bluwy! - Renames the optimize.customComponentNames option to optimize.ignoreElementNames to better reflect its usecase. Its behaviour is not changed and should continue to work as before.

  • #10935 ddd8e49 Thanks @​bluwy! - Replaces the internal remark-images-to-component plugin with rehype-images-to-component to let users use additional rehype plugins for images

Patch Changes

  • #10935 ddd8e49 Thanks @​bluwy! - Simplifies plain MDX components as hast element nodes to further improve HTML string inlining for the optimize option

  • #10935 ddd8e49 Thanks @​bluwy! - Allows Vite plugins to transform .mdx files before the MDX plugin transforms it

  • #10935 ddd8e49 Thanks @​bluwy! - Updates the optimize option to group static sibling nodes as a <Fragment />. This reduces the number of AST nodes and simplifies runtime rendering of MDX pages.

  • #10935 ddd8e49 Thanks @​bluwy! - Tags the MDX component export for quicker component checks while rendering

  • #10935 ddd8e49 Thanks @​bluwy! - Fixes export const components keys detection for the optimize option

  • #10935 ddd8e49 Thanks @​bluwy! - Improves optimize handling for MDX components with attributes and inline MDX components

Changelog

Sourced from @​astrojs/mdx's changelog.

3.0.0

Major Changes

  • #10935 ddd8e49 Thanks @​bluwy! - Refactors the MDX transformation to rely only on the unified pipeline. Babel and esbuild transformations are removed, which should result in faster build times. The refactor requires using Astro v4.8.0 but no other changes are necessary.

  • #10935 ddd8e49 Thanks @​bluwy! - Allows integrations after the MDX integration to update markdown.remarkPlugins and markdown.rehypePlugins, and have the plugins work in MDX too.

    If your integration relies on Astro's previous behavior that prevents integrations from adding remark/rehype plugins for MDX, you will now need to configure @astrojs/mdx with extendMarkdownConfig: false and explicitly specify any remarkPlugins and rehypePlugins options instead.

  • #10935 ddd8e49 Thanks @​bluwy! - Renames the optimize.customComponentNames option to optimize.ignoreElementNames to better reflect its usecase. Its behaviour is not changed and should continue to work as before.

  • #10935 ddd8e49 Thanks @​bluwy! - Replaces the internal remark-images-to-component plugin with rehype-images-to-component to let users use additional rehype plugins for images

Patch Changes

  • #10935 ddd8e49 Thanks @​bluwy! - Simplifies plain MDX components as hast element nodes to further improve HTML string inlining for the optimize option

  • #10935 ddd8e49 Thanks @​bluwy! - Allows Vite plugins to transform .mdx files before the MDX plugin transforms it

  • #10935 ddd8e49 Thanks @​bluwy! - Updates the optimize option to group static sibling nodes as a <Fragment />. This reduces the number of AST nodes and simplifies runtime rendering of MDX pages.

  • #10935 ddd8e49 Thanks @​bluwy! - Tags the MDX component export for quicker component checks while rendering

  • #10935 ddd8e49 Thanks @​bluwy! - Fixes export const components keys detection for the optimize option

  • #10935 ddd8e49 Thanks @​bluwy! - Improves optimize handling for MDX components with attributes and inline MDX components

Commits


Updates @astrojs/rss from 4.0.5 to 4.0.6

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.6

Patch Changes

  • #11050 841df1f Thanks @​mingjunlu! - Fixes an issue where trailing slash is not removed even if the trailingSlash option is set to false.
Changelog

Sourced from @​astrojs/rss's changelog.

4.0.6

Patch Changes

  • #11050 841df1f Thanks @​mingjunlu! - Fixes an issue where trailing slash is not removed even if the trailingSlash option is set to false.
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 4 months ago

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml