Update dependency astro to v4.1.1 #41

Merged
jahanson merged 1 commit from renovate/astro-4.x-lockfile into main 2024-01-06 10:08:49 -06:00
Collaborator

This PR contains the following updates:

Package Type Update Change
astro (source) dependencies minor 4.0.8 -> 4.1.1

Release Notes

withastro/astro (astro)

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes

v4.0.9

Compare Source

Patch Changes

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [astro](https://astro.build) ([source](https://github.com/withastro/astro/tree/HEAD/packages/astro)) | dependencies | minor | [`4.0.8` -> `4.1.1`](https://renovatebot.com/diffs/npm/astro/4.0.8/4.1.1) | --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v4.1.1`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#411) [Compare Source](https://github.com/withastro/astro/compare/astro@4.1.0...astro@4.1.1) ##### Patch Changes - [#&#8203;9618](https://github.com/withastro/astro/pull/9618) [`401fd3e8c8957a3bed6469a622cd67b157ca303f`](https://github.com/withastro/astro/commit/401fd3e8c8957a3bed6469a622cd67b157ca303f) Thanks [@&#8203;ldh3907](https://github.com/ldh3907)! - Adds a second generic parameter to `APIRoute` to type the `params` - [#&#8203;9600](https://github.com/withastro/astro/pull/9600) [`47b951b3888a5a8a708d2f9b974f12fba7ec9ed3`](https://github.com/withastro/astro/commit/47b951b3888a5a8a708d2f9b974f12fba7ec9ed3) Thanks [@&#8203;jacobdalamb](https://github.com/jacobdalamb)! - Improves tailwind config file detection when adding the tailwind integration using `astro add tailwind` Tailwind config file ending in `.ts`, `.mts` or `.cts` will now be used instead of creating a new `tailwind.config.mjs` when the tailwind integration is added using `astro add tailwind`. - [#&#8203;9622](https://github.com/withastro/astro/pull/9622) [`5156c740506cbf6ec85c95e1663c14cbd438d75b`](https://github.com/withastro/astro/commit/5156c740506cbf6ec85c95e1663c14cbd438d75b) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fixes the Sharp image service `limitInputPixels` option type ### [`v4.1.0`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#410) [Compare Source](https://github.com/withastro/astro/compare/astro@4.0.9...astro@4.1.0) ##### Minor Changes - [#&#8203;9513](https://github.com/withastro/astro/pull/9513) [`e44f6acf99195a3f29b8390fd9b2c06410551b74`](https://github.com/withastro/astro/commit/e44f6acf99195a3f29b8390fd9b2c06410551b74) Thanks [@&#8203;wtto00](https://github.com/wtto00)! - Adds a `'load'` prefetch strategy to prefetch links on page load - [#&#8203;9377](https://github.com/withastro/astro/pull/9377) [`fe719e27a84c09e46b515252690678c174a25759`](https://github.com/withastro/astro/commit/fe719e27a84c09e46b515252690678c174a25759) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Adds "Missing ARIA roles check" and "Unsupported ARIA roles check" audit rules for the dev toolbar - [#&#8203;9573](https://github.com/withastro/astro/pull/9573) [`2a8b9c56b9c6918531c57ec38b89474571331aee`](https://github.com/withastro/astro/commit/2a8b9c56b9c6918531c57ec38b89474571331aee) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Allows passing a string to `--open` and `server.open` to open a specific URL on startup in development - [#&#8203;9544](https://github.com/withastro/astro/pull/9544) [`b8a6fa8917ff7babd35dafb3d3dcd9a58cee836d`](https://github.com/withastro/astro/commit/b8a6fa8917ff7babd35dafb3d3dcd9a58cee836d) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Adds a helpful error for static sites when you use the `astro preview` command if you have not previously run `astro build`. - [#&#8203;9546](https://github.com/withastro/astro/pull/9546) [`08402ad5846c73b6887e74ed4575fd71a3e3c73d`](https://github.com/withastro/astro/commit/08402ad5846c73b6887e74ed4575fd71a3e3c73d) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Adds an option for the Sharp image service to allow large images to be processed. Set `limitInputPixels: false` to bypass the default image size limit: ```js // astro.config.mjs import { defineConfig } from 'astro/config'; export default defineConfig({ image: { service: { entrypoint: 'astro/assets/services/sharp', config: { limitInputPixels: false, }, }, }, }); ``` - [#&#8203;9596](https://github.com/withastro/astro/pull/9596) [`fbc26976533bbcf2de9d6dba1aa3ea3dc6ce0853`](https://github.com/withastro/astro/commit/fbc26976533bbcf2de9d6dba1aa3ea3dc6ce0853) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Adds the ability to set a [`rootMargin`](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/rootMargin) setting when using the `client:visible` directive. This allows a component to be hydrated when it is *near* the viewport, rather than hydrated when it has *entered* the viewport. ```astro <!-- Load component when it's within 200px away from entering the viewport --> <Component client:visible={{ rootMargin: '200px' }} /> ``` - [#&#8203;9063](https://github.com/withastro/astro/pull/9063) [`f33fe3190b482a42ebc68cc5275fd7f2c49102e6`](https://github.com/withastro/astro/commit/f33fe3190b482a42ebc68cc5275fd7f2c49102e6) Thanks [@&#8203;alex-sherwin](https://github.com/alex-sherwin)! - Cookie encoding / decoding can now be customized Adds new `encode` and `decode` functions to allow customizing how cookies are encoded and decoded. For example, you can bypass the default encoding via `encodeURIComponent` when adding a URL as part of a cookie: ### [`v4.0.9`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#409) [Compare Source](https://github.com/withastro/astro/compare/astro@4.0.8...astro@4.0.9) ##### Patch Changes - [#&#8203;9571](https://github.com/withastro/astro/pull/9571) [`ec71f03cfd9b8195fb21c92dfda0eff63b6ebeed`](https://github.com/withastro/astro/commit/ec71f03cfd9b8195fb21c92dfda0eff63b6ebeed) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Removes telemetry for unhandled errors in the dev server - [#&#8203;9548](https://github.com/withastro/astro/pull/9548) [`8049f0cd91b239c52e37d571e3ba3e703cf0e4cf`](https://github.com/withastro/astro/commit/8049f0cd91b239c52e37d571e3ba3e703cf0e4cf) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Fixes error overlay display on URI malformed error - [#&#8203;9504](https://github.com/withastro/astro/pull/9504) [`8cc3d6aa46f438d668516539c34b48ad748ade39`](https://github.com/withastro/astro/commit/8cc3d6aa46f438d668516539c34b48ad748ade39) Thanks [@&#8203;matiboux](https://github.com/matiboux)! - Implement i18n's `getLocaleByPath` function - [#&#8203;9547](https://github.com/withastro/astro/pull/9547) [`22f42d11a4fd2e154a0c5873c4f516584e383b70`](https://github.com/withastro/astro/commit/22f42d11a4fd2e154a0c5873c4f516584e383b70) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Prevents ANSI codes from rendering in the error overlay - [#&#8203;9446](https://github.com/withastro/astro/pull/9446) [`ede3f7fef6b43a08c9371f7a2531e2eef858b94d`](https://github.com/withastro/astro/commit/ede3f7fef6b43a08c9371f7a2531e2eef858b94d) Thanks [@&#8203;alexnguyennz](https://github.com/alexnguyennz)! - Toggle dev toolbar hitbox height when toolbar is visible - [#&#8203;9572](https://github.com/withastro/astro/pull/9572) [`9f6453cf4972ac28eec4f07a1373feaa295c8864`](https://github.com/withastro/astro/commit/9f6453cf4972ac28eec4f07a1373feaa295c8864) Thanks [@&#8203;bluwy](https://github.com/bluwy)! - Documents supported `--host` and `--port` flags in `astro preview --help` - [#&#8203;9540](https://github.com/withastro/astro/pull/9540) [`7f212f0831d8cd899a86fb94899a7cad8ec280db`](https://github.com/withastro/astro/commit/7f212f0831d8cd899a86fb94899a7cad8ec280db) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Fixes remote images with encoded characters - [#&#8203;9559](https://github.com/withastro/astro/pull/9559) [`8b873bf1f343efc1f486d8ef53c38380e2373c08`](https://github.com/withastro/astro/commit/8b873bf1f343efc1f486d8ef53c38380e2373c08) Thanks [@&#8203;sygint](https://github.com/sygint)! - Adds 'starlight' to the displayed options for `astro add` - [#&#8203;9537](https://github.com/withastro/astro/pull/9537) [`16e61fcacb98e6bd948ac240bc082659d70193a4`](https://github.com/withastro/astro/commit/16e61fcacb98e6bd948ac240bc082659d70193a4) Thanks [@&#8203;walter9388](https://github.com/walter9388)! - `<Image />` srcset now parses encoded paths correctly </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45MS40IiwidXBkYXRlZEluVmVyIjoiMzcuOTEuNCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
smeagol-help added 1 commit 2024-01-02 10:02:41 -06:00
smeagol-help force-pushed renovate/astro-4.x-lockfile from a377ad2adb to ab53bf2df6 2024-01-04 10:02:08 -06:00 Compare
smeagol-help changed title from Update dependency astro to v4.0.9 to Update dependency astro to v4.1.0 2024-01-04 10:02:33 -06:00
smeagol-help force-pushed renovate/astro-4.x-lockfile from ab53bf2df6 to f7f45b38cd 2024-01-05 15:02:30 -06:00 Compare
smeagol-help changed title from Update dependency astro to v4.1.0 to Update dependency astro to v4.1.1 2024-01-05 15:02:53 -06:00
jahanson merged commit 11aa6bba09 into main 2024-01-06 10:08:49 -06:00
jahanson deleted branch renovate/astro-4.x-lockfile 2024-01-06 10:08:49 -06:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: jahanson/joehanson-dev#41
No description provided.