haxibami / haxibami.net

haxibami's website.
https://www.haxibami.net
17 stars 0 forks source link

fix(deps): update dependencies (minor update) #383

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 1 month ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) 3.1.3 -> 3.1.5 age adoption passing confidence
astro (source) 4.14.2 -> 4.15.1 age adoption passing confidence
astro-purgecss (source) 4.3.0 -> 4.5.0 age adoption passing confidence
solid-js (source) 1.8.21 -> 1.8.22 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx) ### [`v3.1.5`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#315) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/mdx@3.1.4...@astrojs/mdx@3.1.5) ##### Patch Changes - [#​11818](https://togithub.com/withastro/astro/pull/11818) [`88ef1d0`](https://togithub.com/withastro/astro/commit/88ef1d0e774e8ab8798b9912da1b069f97736623) Thanks [@​bluwy](https://togithub.com/bluwy)! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file ### [`v3.1.4`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#314) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/mdx@3.1.3...@astrojs/mdx@3.1.4) ##### Patch Changes - [#​11717](https://togithub.com/withastro/astro/pull/11717) [`423614e`](https://togithub.com/withastro/astro/commit/423614ebb6ddb76cc8d11f3e3b6ae111a4a82662) Thanks [@​bluwy](https://togithub.com/bluwy)! - Fixes stack trace location when failed to parse an MDX file with frontmatter
withastro/astro (astro) ### [`v4.15.1`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4151) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.15.0...astro@4.15.1) ##### Patch Changes - [#​11872](https://togithub.com/withastro/astro/pull/11872) [`9327d56`](https://togithub.com/withastro/astro/commit/9327d56755404b481993b058bbfc4aa7880b2304) Thanks [@​bluwy](https://togithub.com/bluwy)! - Fixes `astro add` importing adapters and integrations - [#​11767](https://togithub.com/withastro/astro/pull/11767) [`d1bd1a1`](https://togithub.com/withastro/astro/commit/d1bd1a11f7aca4d2141d1c4665f2db0440393d03) Thanks [@​ascorbic](https://togithub.com/ascorbic)! - Refactors content layer sync to use a queue ### [`v4.15.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4150) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.14.6...astro@4.15.0) ##### Minor Changes - [#​11729](https://togithub.com/withastro/astro/pull/11729) [`1c54e63`](https://togithub.com/withastro/astro/commit/1c54e633274ad47f6c83c9a16f375f0caa983fbe) Thanks [@​ematipico](https://togithub.com/ematipico)! - Adds a new variant `sync` for the `astro:config:setup` hook's `command` property. This value is set when calling the command `astro sync`. If your integration previously relied on knowing how many variants existed for the `command` property, you must update your logic to account for this new option. - [#​11743](https://togithub.com/withastro/astro/pull/11743) [`cce0894`](https://togithub.com/withastro/astro/commit/cce08945340312776a0480fc9ffe43929257639a) Thanks [@​ph1p](https://togithub.com/ph1p)! - Adds a new, optional property `timeout` for the `client:idle` directive. This value allows you to specify a maximum time to wait, in milliseconds, before hydrating a UI framework component, even if the page is not yet done with its initial load. This means you can delay hydration for lower-priority UI elements with more control to ensure your element is interactive within a specified time frame. ```astro ``` - [#​11677](https://togithub.com/withastro/astro/pull/11677) [`cb356a5`](https://togithub.com/withastro/astro/commit/cb356a5db6b1ec2799790a603f931a961883ab31) Thanks [@​ematipico](https://togithub.com/ematipico)! - Adds a new option `fallbackType` to `i18n.routing` configuration that allows you to control how fallback pages are handled. When `i18n.fallback` is configured, this new routing option controls whether to [redirect](https://docs.astro.build/en/guides/routing/#redirects) to the fallback page, or to [rewrite](https://docs.astro.build/en/guides/routing/#rewrites) the fallback page's content in place. The `"redirect"` option is the default value and matches the current behavior of the existing fallback system. The option `"rewrite"` uses the new [rewriting system](https://docs.astro.build/en/guides/routing/#rewrites) to create fallback pages that render content on the original, requested URL without a browser refresh. For example, the following configuration will generate a page `/fr/index.html` that will contain the same HTML rendered by the page `/en/index.html` when `src/pages/fr/index.astro` does not exist. ```js // astro.config.mjs export default defineConfig({ i18n: { locals: ['en', 'fr'], defaultLocale: 'en', routing: { prefixDefaultLocale: true, fallbackType: 'rewrite', }, fallback: { fr: 'en', }, }, }); ``` - [#​11708](https://togithub.com/withastro/astro/pull/11708) [`62b0d20`](https://togithub.com/withastro/astro/commit/62b0d20b974dc932769221d210b751627fb4bbc6) Thanks [@​martrapp](https://togithub.com/martrapp)! - Adds a new object `swapFunctions` to expose the necessary utility functions on `astro:transitions/client` that allow you to build custom swap functions to be used with view transitions. The example below uses these functions to replace Astro's built-in default `swap` function with one that only swaps the `
` part of the page: ```html ``` See the [view transitions guide](https://docs.astro.build/en/guides/view-transitions/#astrobefore-swap) for more information about hooking into the `astro:before-swap` lifecycle event and adding a custom swap implementation. - [#​11843](https://togithub.com/withastro/astro/pull/11843) [`5b4070e`](https://togithub.com/withastro/astro/commit/5b4070efef877a77247bb05a4806b75f22e557c8) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Exposes `z` from the new `astro:schema` module. This is the new recommended import source for all Zod utilities when using Astro Actions. ### [`v4.14.6`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4146) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.14.5...astro@4.14.6) ##### Patch Changes - [#​11847](https://togithub.com/withastro/astro/pull/11847) [`45b599c`](https://togithub.com/withastro/astro/commit/45b599c4d40ded6a3e03881181b441ae494cbfcf) Thanks [@​ascorbic](https://togithub.com/ascorbic)! - Fixes a case where Vite would be imported by the SSR runtime, causing bundling errors and bloat. - [#​11822](https://togithub.com/withastro/astro/pull/11822) [`6fcaab8`](https://togithub.com/withastro/astro/commit/6fcaab84de1044ff4d186b2dfa5831964460062d) Thanks [@​bluwy](https://togithub.com/bluwy)! - Marks internal `vite-plugin-fileurl` plugin with `enforce: 'pre'` - [#​11713](https://togithub.com/withastro/astro/pull/11713) [`497324c`](https://togithub.com/withastro/astro/commit/497324c4e87538dc1dc13aea3ced9bd3642d9ba6) Thanks [@​voidfill](https://togithub.com/voidfill)! - Prevents prefetching of the same urls with different hashes. - [#​11814](https://togithub.com/withastro/astro/pull/11814) [`2bb72c6`](https://togithub.com/withastro/astro/commit/2bb72c63969f8f21dd279fa927c32f192ff79a3f) Thanks [@​eduardocereto](https://togithub.com/eduardocereto)! - Updates the documentation for experimental Content Layer API with a corrected code example - [#​11842](https://togithub.com/withastro/astro/pull/11842) [`1ffaae0`](https://togithub.com/withastro/astro/commit/1ffaae04cf790390f730bf900b9722b99642adc1) Thanks [@​stephan281094](https://togithub.com/stephan281094)! - Fixes a typo in the `MissingImageDimension` error message - [#​11828](https://togithub.com/withastro/astro/pull/11828) [`20d47aa`](https://togithub.com/withastro/astro/commit/20d47aa85a3a0d7ac3390f749715d92de830cf3e) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Improves error message when invalid data is returned by an Action. ### [`v4.14.5`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4145) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.14.4...astro@4.14.5) ##### Patch Changes - [#​11809](https://togithub.com/withastro/astro/pull/11809) [`62e97a2`](https://togithub.com/withastro/astro/commit/62e97a20f72bacb017c633ddcb776abc89167660) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Fixes usage of `.transform()`, `.refine()`, `.passthrough()`, and other effects on Action form inputs. - [#​11812](https://togithub.com/withastro/astro/pull/11812) [`260c4be`](https://togithub.com/withastro/astro/commit/260c4be050f91353bc5ba6af073e7bc17429d552) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Exposes `ActionAPIContext` type from the `astro:actions` module. - [#​11813](https://togithub.com/withastro/astro/pull/11813) [`3f7630a`](https://togithub.com/withastro/astro/commit/3f7630afd697809b1d4fbac6edd18153983c70ac) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Fixes unexpected `undefined` value when calling an action from the client without a return value. ### [`v4.14.4`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4144) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.14.3...astro@4.14.4) ##### Patch Changes - [#​11794](https://togithub.com/withastro/astro/pull/11794) [`3691a62`](https://togithub.com/withastro/astro/commit/3691a626fb67d617e5f8bd057443cd2ff6caa054) Thanks [@​bholmesdev](https://togithub.com/bholmesdev)! - Fixes unexpected warning log when using Actions on "hybrid" rendered projects. - [#​11801](https://togithub.com/withastro/astro/pull/11801) [`9f943c1`](https://togithub.com/withastro/astro/commit/9f943c1344671b569a0d1ddba683b3cca0068adc) Thanks [@​delucis](https://togithub.com/delucis)! - Fixes a bug where the `filePath` property was not available on content collection entries when using the content layer `file()` loader with a JSON file that contained an object instead of an array. This was breaking use of the `image()` schema utility among other things. ### [`v4.14.3`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4143) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.14.2...astro@4.14.3) ##### Patch Changes - [#​11780](https://togithub.com/withastro/astro/pull/11780) [`c6622ad`](https://togithub.com/withastro/astro/commit/c6622adaeb405e961b12c91f0e5d02c7333d01cf) Thanks [@​Princesseuh](https://togithub.com/Princesseuh)! - Deprecates the Squoosh image service, to be removed in Astro 5.0. We recommend migrating to the default Sharp service. - [#​11790](https://togithub.com/withastro/astro/pull/11790) [`41c3fcb`](https://togithub.com/withastro/astro/commit/41c3fcb6189709450a67ea8f726071d5f3cdc80e) Thanks [@​sarah11918](https://togithub.com/sarah11918)! - Updates the documentation for experimental `astro:env` with a corrected link to the RFC proposal - [#​11773](https://togithub.com/withastro/astro/pull/11773) [`86a3391`](https://togithub.com/withastro/astro/commit/86a33915ff41b23ff6b35bcfb1805fefc0760ca7) Thanks [@​ematipico](https://togithub.com/ematipico)! - Changes messages logged when using unsupported, deprecated, or experimental adapter features for clarity - [#​11745](https://togithub.com/withastro/astro/pull/11745) [`89bab1e`](https://togithub.com/withastro/astro/commit/89bab1e70786123fbe933a9d7a1b80c9334dcc5f) Thanks [@​bluwy](https://togithub.com/bluwy)! - Prints prerender dynamic value usage warning only if it's used - [#​11774](https://togithub.com/withastro/astro/pull/11774) [`c6400ab`](https://togithub.com/withastro/astro/commit/c6400ab99c5e5f4477bc6ef7e801b7869b0aa9ab) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Fixes the path returned by `injectTypes` - [#​11730](https://togithub.com/withastro/astro/pull/11730) [`2df49a6`](https://togithub.com/withastro/astro/commit/2df49a6fb4f6d92fe45f7429430abe63defeacd6) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Simplifies path operations of `astro sync` - [#​11771](https://togithub.com/withastro/astro/pull/11771) [`49650a4`](https://togithub.com/withastro/astro/commit/49650a45550af46c70c6cf3f848b7b529103a649) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Fixes an error thrown by `astro sync` when an `astro:env` virtual module is imported inside the Content Collections config - [#​11744](https://togithub.com/withastro/astro/pull/11744) [`b677429`](https://togithub.com/withastro/astro/commit/b67742961a384c10e5cd04cf5b02d0f014ea7362) Thanks [@​bluwy](https://togithub.com/bluwy)! - Disables the WebSocket server when creating a Vite server for loading config files
codiume/orbit (astro-purgecss) ### [`v4.5.0`](https://togithub.com/codiume/orbit/blob/HEAD/packages/astro-purgecss/CHANGELOG.md#450) [Compare Source](https://togithub.com/codiume/orbit/compare/astro-purgecss@4.4.1...astro-purgecss@4.5.0) ##### Minor Changes - [#​611](https://togithub.com/codiume/orbit/pull/611) [`cc70f58`](https://togithub.com/codiume/orbit/commit/cc70f58bf9339210ce9b236aca8c6c012297ddd7) Thanks [@​Diviei](https://togithub.com/Diviei)! - Fix files modified without updating hash ### [`v4.4.1`](https://togithub.com/codiume/orbit/blob/HEAD/packages/astro-purgecss/CHANGELOG.md#441) [Compare Source](https://togithub.com/codiume/orbit/compare/astro-purgecss@4.4.0...astro-purgecss@4.4.1) ##### Patch Changes - [#​605](https://togithub.com/codiume/orbit/pull/605) [`63b2e9d`](https://togithub.com/codiume/orbit/commit/63b2e9d839eebeae7863dd04db6ad4a86675f886) Thanks [@​the-dijkstra](https://togithub.com/the-dijkstra)! - Add docs for handling inline styles ### [`v4.4.0`](https://togithub.com/codiume/orbit/blob/HEAD/packages/astro-purgecss/CHANGELOG.md#440) [Compare Source](https://togithub.com/codiume/orbit/compare/astro-purgecss@4.3.0...astro-purgecss@4.4.0) ##### Minor Changes - [#​603](https://togithub.com/codiume/orbit/pull/603) [`aa1e54b`](https://togithub.com/codiume/orbit/commit/aa1e54badadccefa0b3640c244a3c52072d29bca) Thanks [@​the-dijkstra](https://togithub.com/the-dijkstra)! - Replace astro-build with tsup

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.