felix-berlin / astro-breadcrumbs

Well configurable breadcrumb component for Astro.js. Create breadcrumbs completely dynamically or specify exactly how they should look.
https://docs.astro-breadcrumbs.kasimir.dev
GNU General Public License v3.0
54 stars 7 forks source link

chore(deps): update astro monorepo #272

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/mdx (source) 3.0.1 -> 3.1.0 age adoption passing confidence
astro (source) 4.9.2 -> 4.10.0 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx) ### [`v3.1.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#310) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/mdx@3.0.1...@astrojs/mdx@3.1.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.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 - "on friday and saturday" in timezone Europe/Berlin, 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 has been generated by Mend Renovate. View repository job log here.

cloudflare-pages[bot] commented 1 month ago

Deploying astro-breadcrumbs-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: b3933c5
Status: ✅  Deploy successful!
Preview URL: https://60ef3f96.astro-breadcrumbs-docs.pages.dev
Branch Preview URL: https://renovate-astro-monorepo.astro-breadcrumbs-docs.pages.dev

View logs

codecov[bot] commented 1 month ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 71.98%. Comparing base (32eabfe) to head (b3933c5).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #272 +/- ## ======================================= Coverage 71.98% 71.98% ======================================= Files 5 5 Lines 307 307 Branches 35 35 ======================================= Hits 221 221 Misses 86 86 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

felix-berlin commented 1 month ago

:tada: This PR is included in version 3.0.0-beta.1 :tada:

The release is available on:

Your semantic-release bot :package::rocket: