Skip to content

Commit

Permalink
fix(deps): update astro monorepo (#54)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@astrojs/vercel](https://docs.astro.build/en/guides/integrations-guide/vercel/)
([source](https://togithub.com/withastro/astro/tree/HEAD/packages/integrations/vercel))
| [`7.7.0` ->
`7.7.1`](https://renovatebot.com/diffs/npm/@astrojs%2fvercel/7.7.0/7.7.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fvercel/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@astrojs%2fvercel/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@astrojs%2fvercel/7.7.0/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fvercel/7.7.0/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [astro](https://astro.build)
([source](https://togithub.com/withastro/astro/tree/HEAD/packages/astro))
| [`4.10.2` ->
`4.10.3`](https://renovatebot.com/diffs/npm/astro/4.10.2/4.10.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/4.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/astro/4.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/astro/4.10.2/4.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/4.10.2/4.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/vercel)</summary>

###
[`v7.7.1`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/vercel/CHANGELOG.md#771)

[Compare
Source](https://togithub.com/withastro/astro/compare/@astrojs/[email protected]...@astrojs/[email protected])

##### Patch Changes

- [#&#8203;11261](https://togithub.com/withastro/astro/pull/11261)
[`f5f8ed2`](https://togithub.com/withastro/astro/commit/f5f8ed275b76adfb11b7c3c1e800753a25416498)
Thanks [@&#8203;matthewp](https://togithub.com/matthewp)! - Fix
backwards compat with Astro <= 4.9

- [#&#8203;11227](https://togithub.com/withastro/astro/pull/11227)
[`24ce898`](https://togithub.com/withastro/astro/commit/24ce8983e1e1b3c8ebebf2ac4de7bbf21a586e2e)
Thanks [@&#8203;matthewp](https://togithub.com/matthewp)! - In Vercel
Edge, include cookies set by Astro.cookies.set

</details>

<details>
<summary>withastro/astro (astro)</summary>

###
[`v4.10.3`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4103)

[Compare
Source](https://togithub.com/withastro/astro/compare/[email protected]@4.10.3)

##### Patch Changes

- [#&#8203;11213](https://togithub.com/withastro/astro/pull/11213)
[`94ac7ef`](https://togithub.com/withastro/astro/commit/94ac7efd70fd264b10887805a02d5d1877af8701)
Thanks
[@&#8203;florian-lefebvre](https://togithub.com/florian-lefebvre)! -
Removes the `PUBLIC_` prefix constraint for `astro:env` public variables

- [#&#8203;11213](https://togithub.com/withastro/astro/pull/11213)
[`94ac7ef`](https://togithub.com/withastro/astro/commit/94ac7efd70fd264b10887805a02d5d1877af8701)
Thanks
[@&#8203;florian-lefebvre](https://togithub.com/florian-lefebvre)! -
**BREAKING CHANGE to the experimental `astro:env` feature only**

Server secrets specified in the schema must now be imported from
`astro:env/server`. Using `getSecret()` is no longer required to use
these environment variables in your schema:

    ```diff
    - import { getSecret } from 'astro:env/server'
    - const API_SECRET = getSecret("API_SECRET")
    + import { API_SECRET } from 'astro:env/server'
    ```

Note that using `getSecret()` with these keys is still possible, but no
longer involves any special handling and the raw value will be returned,
just like retrieving secrets not specified in your schema.

- [#&#8203;11234](https://togithub.com/withastro/astro/pull/11234)
[`4385bf7`](https://togithub.com/withastro/astro/commit/4385bf7a4dc9c65bff53a30c660f7a909fcabfc9)
Thanks [@&#8203;ematipico](https://togithub.com/ematipico)! - Adds a new
function called `addServerRenderer` to the Container API. Use this
function to manually store renderers inside the instance of your
container.

This new function should be preferred when using the Container API in
environments like on-demand pages:

    ```ts
    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@&#8203;astrojs/react/server.js';
    import vueRenderer from '@&#8203;astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';

    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';

    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';

    export const GET: APIRoute = async (ctx) => {
      const container = await experimental_AstroContainer.create();
      container.addServerRenderer({ renderer: reactRenderer });
      container.addServerRenderer({ renderer: vueRenderer });
      container.addServerRenderer({ renderer: customRenderer });
      // You can pass a custom name too
      container.addServerRenderer({
        name: 'customRenderer',
        renderer: customRenderer,
      });
      const vueComponent = await container.renderToString(VueComponent);
      return await container.renderToResponse(Component);
    };
    ```

- [#&#8203;11249](https://togithub.com/withastro/astro/pull/11249)
[`de60c69`](https://togithub.com/withastro/astro/commit/de60c69aa06c41f76a5510cc1d0bee4c8a5326a5)
Thanks [@&#8203;markgaze](https://togithub.com/markgaze)! - Fixes a
performance issue with JSON schema generation

- [#&#8203;11242](https://togithub.com/withastro/astro/pull/11242)
[`e4fc2a0`](https://togithub.com/withastro/astro/commit/e4fc2a0bafb4723566552d0c5954b25447890f51)
Thanks [@&#8203;ematipico](https://togithub.com/ematipico)! - Fixes a
case where the virtual module `astro:container` wasn't resolved

- [#&#8203;11236](https://togithub.com/withastro/astro/pull/11236)
[`39bc3a5`](https://togithub.com/withastro/astro/commit/39bc3a5e8161232d6fdc6cc52b1f246083966d8e)
Thanks [@&#8203;ascorbic](https://togithub.com/ascorbic)! - Fixes a case
where symlinked content collection directories were not correctly
resolved

- [#&#8203;11258](https://togithub.com/withastro/astro/pull/11258)
[`d996db6`](https://togithub.com/withastro/astro/commit/d996db6f0bf361ebd84b23d022db7bb10fb316e6)
Thanks [@&#8203;ascorbic](https://togithub.com/ascorbic)! - Adds a new
error `RewriteWithBodyUsed` that throws when `Astro.rewrite` is used
after the request body has already been read.

- [#&#8203;11243](https://togithub.com/withastro/astro/pull/11243)
[`ba2b14c`](https://togithub.com/withastro/astro/commit/ba2b14cc28bd219c241313cdf142b736e7442014)
Thanks [@&#8203;V3RON](https://togithub.com/V3RON)! - Fixes a
prerendering issue for libraries in `node_modules` when a folder with an
underscore is in the path.

- [#&#8203;11244](https://togithub.com/withastro/astro/pull/11244)
[`d07d2f7`](https://togithub.com/withastro/astro/commit/d07d2f7ac9d87af907beaca700ba4116dc1d6f37)
Thanks [@&#8203;ematipico](https://togithub.com/ematipico)! - Improves
the developer experience of the custom `500.astro` page in development
mode.

Before, in development, an error thrown during the rendering phase would
display the default error overlay, even when users had the `500.astro`
page.

Now, the development server will display the `500.astro` and the
original error is logged in the console.

- [#&#8203;11240](https://togithub.com/withastro/astro/pull/11240)
[`2851b0a`](https://togithub.com/withastro/astro/commit/2851b0aa2e2abe80ea603b53c67770e94980a8d3)
Thanks [@&#8203;ascorbic](https://togithub.com/ascorbic)! - Ignores
query strings in module identifiers when matching ".astro" file
extensions in Vite plugin

- [#&#8203;11245](https://togithub.com/withastro/astro/pull/11245)
[`e22be22`](https://togithub.com/withastro/astro/commit/e22be22e5729e60220726e92b52d2833c937fd1c)
Thanks [@&#8203;bluwy](https://togithub.com/bluwy)! - Refactors
prerendering chunk handling to correctly remove unused code during the
SSR runtime

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/JoshuaKGoldberg/SquiggleConf).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jun 20, 2024
1 parent 7c8616e commit e08f238
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 269 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@release-it/conventional-changelog": "8.0.1",
"@types/eslint-plugin-markdown": "2.0.2",
"accessible-astro-components": "2.3.6",
"astro": "4.10.2",
"astro": "4.10.3",
"cspell": "8.8.4",
"eslint": "9.5.0",
"eslint-plugin-jsdoc": "48.2.12",
Expand Down
Loading

0 comments on commit e08f238

Please sign in to comment.