YoungVision-eV / website

https://youngvision.org
MIT License
3 stars 0 forks source link

fix(deps): update astro monorepo #216

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/svelte (source) 5.4.0 -> 5.5.0 age adoption passing confidence
astro (source) 4.9.2 -> 4.10.2 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/svelte) ### [`v5.5.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/svelte/CHANGELOG.md#550) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/svelte@5.4.0...@astrojs/svelte@5.5.0) ##### Minor Changes - [#​11144](https://togithub.com/withastro/astro/pull/11144) [`803dd80`](https://togithub.com/withastro/astro/commit/803dd8061df02138b4928442bcb76e77dcf6f5e7) Thanks [@​ematipico](https://togithub.com/ematipico)! - The integration now exposes a function called `getContainerRenderer`, that can be used inside the Container APIs to load the relative renderer. ```js import { experimental_AstroContainer as AstroContainer } from 'astro/container'; import ReactWrapper from '../src/components/ReactWrapper.astro'; import { loadRenderers } from 'astro:container'; import { getContainerRenderer } from '@​astrojs/react'; test('ReactWrapper with react renderer', async () => { const renderers = await loadRenderers([getContainerRenderer()]); const container = await AstroContainer.create({ renderers, }); const result = await container.renderToString(ReactWrapper); expect(result).toContain('Counter'); expect(result).toContain('Count: 5'); }); ```
withastro/astro (astro) ### [`v4.10.2`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4102) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.10.1...astro@4.10.2) ##### Patch Changes - [#​11231](https://togithub.com/withastro/astro/pull/11231) [`58d7dbb`](https://togithub.com/withastro/astro/commit/58d7dbb5e0cabea1ac7a35af5b46685fce50d723) Thanks [@​ematipico](https://togithub.com/ematipico)! - Fixes a regression for `getViteConfig`, where the inline config wasn't merged in the final config. - [#​11228](https://togithub.com/withastro/astro/pull/11228) [`1e293a1`](https://togithub.com/withastro/astro/commit/1e293a1b819024f16bfe482f272df0678cdd7874) Thanks [@​ascorbic](https://togithub.com/ascorbic)! - Updates `getCollection()` to always return a cloned array - [#​11207](https://togithub.com/withastro/astro/pull/11207) [`7d9aac3`](https://togithub.com/withastro/astro/commit/7d9aac376c4b8844917901f7f566f7259d7f66c8) Thanks [@​ematipico](https://togithub.com/ematipico)! - Fixes an issue in the rewriting logic where old data was not purged during the rewrite flow. This caused some false positives when checking the validity of URL path names during the rendering phase. - [#​11189](https://togithub.com/withastro/astro/pull/11189) [`75a8fe7`](https://togithub.com/withastro/astro/commit/75a8fe7e72b95f20c36f034de2b51b6a9550e27e) Thanks [@​ematipico](https://togithub.com/ematipico)! - Improve error message when using `getLocaleByPath` on path that doesn't contain any locales. - [#​11195](https://togithub.com/withastro/astro/pull/11195) [`0a6ab6f`](https://togithub.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Adds support for enums to `astro:env` You can now call `envField.enum`: ```js import { defineConfig, envField } from 'astro/config'; export default defineConfig({ experimental: { env: { schema: { API_VERSION: envField.enum({ context: 'server', access: 'secret', values: ['v1', 'v2'], }), }, }, }, }); ``` - [#​11210](https://togithub.com/withastro/astro/pull/11210) [`66fc028`](https://togithub.com/withastro/astro/commit/66fc0283d3f1d1a4f17d7db65ca3521a01fb5bec) Thanks [@​matthewp](https://togithub.com/matthewp)! - Close the iterator only after rendering is complete - [#​11195](https://togithub.com/withastro/astro/pull/11195) [`0a6ab6f`](https://togithub.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Adds additional validation options to `astro:env` `astro:env` schema datatypes `string` and `number` now have new optional validation rules: ```js import { defineConfig, envField } from 'astro/config'; export default defineConfig({ experimental: { env: { schema: { FOO: envField.string({ // ... max: 32, min: 3, length: 12, url: true, includes: 'foo', startsWith: 'bar', endsWith: 'baz', }), BAR: envField.number({ // ... gt: 2, min: 3, lt: 10, max: 9, int: true, }), }, }, }, }); ``` - [#​11211](https://togithub.com/withastro/astro/pull/11211) [`97724da`](https://togithub.com/withastro/astro/commit/97724da93ed7b1db19632c0cdb4b3aab1ff84812) Thanks [@​matthewp](https://togithub.com/matthewp)! - Let middleware handle the original request URL - [#​10607](https://togithub.com/withastro/astro/pull/10607) [`7327c6a`](https://togithub.com/withastro/astro/commit/7327c6acb197e1f2ea6cf94cfbc5700bc755f982) Thanks [@​frankbits](https://togithub.com/frankbits)! - Fixes an issue where a leading slash created incorrect conflict resolution between pages generated from static routes and catch-all dynamic routes ### [`v4.10.1`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4101) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.10.0...astro@4.10.1) ##### Patch Changes - [#​11198](https://togithub.com/withastro/astro/pull/11198) [`8b9a499`](https://togithub.com/withastro/astro/commit/8b9a499d3733e9d0fc6a0bd067ece19bd36f4726) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Fixes a case where `astro:env` `getSecret` would not retrieve environment variables properly in dev and build modes - [#​11206](https://togithub.com/withastro/astro/pull/11206) [`734b98f`](https://togithub.com/withastro/astro/commit/734b98fecf0212cd76be3c935a49f84a9a7dab34) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - **BREAKING CHANGE to the experimental `astro:env` feature only** Updates the adapter `astro:env` entrypoint from `astro:env/setup` to `astro/env/setup` - [#​11205](https://togithub.com/withastro/astro/pull/11205) [`8c45391`](https://togithub.com/withastro/astro/commit/8c4539145f0b6a735b65852b2f2b1a7e9f5a9c3f) Thanks [@​Nin3lee](https://togithub.com/Nin3lee)! - Fixes a typo in the config reference ### [`v4.10.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4100) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.9.3...astro@4.10.0) ##### Minor Changes - [#​10974](https://togithub.com/withastro/astro/pull/10974) [`2668ef9`](https://togithub.com/withastro/astro/commit/2668ef984104574f25f29ef75e2572a0745d1666) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Adds experimental support for the `astro:env` API. The `astro:env` API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate `/client` or `/server` module: ### [`v4.9.3`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#493) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.9.2...astro@4.9.3) ##### Patch Changes - [#​11171](https://togithub.com/withastro/astro/pull/11171) [`ff8004f`](https://togithub.com/withastro/astro/commit/ff8004f6a7b2aab4c6ac367f13744a341c3c5462) Thanks [@​Princesseuh](https://togithub.com/Princesseuh)! - Guard globalThis.astroAsset usage in proxy code to avoid errors in wonky situations - [#​11178](https://togithub.com/withastro/astro/pull/11178) [`1734c49`](https://togithub.com/withastro/astro/commit/1734c49f516ff7d778d6724a0db6d39649921b4b) Thanks [@​theoephraim](https://togithub.com/theoephraim)! - Improves `isPromise` utility to check the presence of `then` on an object before trying to access it - which can cause undesired side-effects on Proxy objects - [#​11183](https://togithub.com/withastro/astro/pull/11183) [`3cfa2ac`](https://togithub.com/withastro/astro/commit/3cfa2ac7e51d7bea96980403c393f9bcda1e9375) Thanks [@​66Leo66](https://togithub.com/66Leo66)! - Suggest `pnpm dlx` instead of `pnpx` in update check. - [#​11147](https://togithub.com/withastro/astro/pull/11147) [`2d93902`](https://togithub.com/withastro/astro/commit/2d93902f4c51dcc62b077b0546ead688e6f32c63) Thanks [@​kitschpatrol](https://togithub.com/kitschpatrol)! - Fixes invalid MIME types in Picture source elements for jpg and svg extensions, which was preventing otherwise valid source variations from being shown by the browser - [#​11141](https://togithub.com/withastro/astro/pull/11141) [`19df89f`](https://togithub.com/withastro/astro/commit/19df89f87c74205ebc76aeac43ca20b00694acec) Thanks [@​ematipico](https://togithub.com/ematipico)! - Fixes an internal error that prevented the `AstroContainer` to render the `Content` component. You can now write code similar to the following to render content collections: ```js const entry = await getEntry(collection, slug); const { Content } = await entry.render(); const content = await container.renderToString(Content); ``` - [#​11170](https://togithub.com/withastro/astro/pull/11170) [`ba20c71`](https://togithub.com/withastro/astro/commit/ba20c718a4ccd1009bdf81f8265956bff1d19d05) Thanks [@​matthewp](https://togithub.com/matthewp)! - Retain client scripts in content cache

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 has been generated by Mend Renovate. View repository job log here.

cloudflare-pages[bot] commented 1 month ago

Deploying website with  Cloudflare Pages  Cloudflare Pages

Latest commit: 1a86b72
Status: ✅  Deploy successful!
Preview URL: https://e227cfa2.website-7c4.pages.dev
Branch Preview URL: https://renovate-astro-monorepo.website-7c4.pages.dev

View logs