This repository was archived by the owner on Feb 10, 2025. It is now read-only.
fix(deps): update all non-major dependencies #530
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.4.2->^0.5.10.4.2->0.5.1^5.0.2->^5.0.4^7.0.3->^7.0.4^5.0.4->^5.0.6^2.27.11->^2.27.12^4.20250109.0->^4.20250204.0^22.10.6->^22.13.1^0.29.0->^0.29.15.0.2->5.0.3^5.1.6->^5.2.5^9.18.0->^9.20.0^5.2.1->^5.2.3^3.20241230.1->^3.20250129.0^3.4.2->^3.5.0^4.30.1->^4.34.6^5.17.4->^5.19.9^2.3.3->^2.4.0^8.20.0->^8.23.0^6.0.7->^6.1.0^3.101.0->^3.107.3Release Notes
withastro/astro (@astrojs/internal-helpers)
v0.5.1Compare Source
Patch Changes
b71bd10Thanks @ascorbic! - Fixes a bug that meant that internal as well as trailing duplicate slashes were collapsedv0.5.0Compare Source
Minor Changes
5361755Thanks @ascorbic! - AddscollapseDuplicateTrailingSlashesfunctionwithastro/astro (@astrojs/solid-js)
v5.0.4Compare Source
Patch Changes
cf30880Thanks @ascorbic! - Upgrades Vitev5.0.3Compare Source
Patch Changes
ea603aeThanks @louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either theincludeorexcludeproperty being set on the integration.withastro/astro (@astrojs/svelte)
v7.0.4Compare Source
Patch Changes
cf30880Thanks @ascorbic! - Upgrades Vitewithastro/astro (@astrojs/vue)
v5.0.6Compare Source
Patch Changes
cf30880Thanks @ascorbic! - Upgrades Vitev5.0.5Compare Source
Patch Changes
ea603aeThanks @louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either theincludeorexcludeproperty being set on the integration.changesets/changesets (@changesets/cli)
v2.27.12Compare Source
Patch Changes
#1562
a0f87f1Thanks @Netail, @cefn! - Fixed changelog application when executing usingnpxand similar toolsUpdated dependencies [
a0f87f1]:cloudflare/workerd (@cloudflare/workers-types)
v4.20250204.0Compare Source
v4.20250129.0Compare Source
v4.20250124.3Compare Source
v4.20250121.0Compare Source
vercel/nft (@vercel/nft)
v0.29.1Compare Source
Bug Fixes
vercel/vercel (@vercel/routing-utils)
v5.0.3Compare Source
Patch Changes
withastro/astro (astro)
v5.2.5Compare Source
Patch Changes
#13133
e76aa83Thanks @ematipico! - Fixes a bug where Astro was failing to build an external redirect when the middleware was triggered#13119
ac43580Thanks @Hacksore! - Adds extra guidance in the terminal when using theastro add tailwindCLI commandNow, users are given a friendly reminder to import the stylesheet containing their Tailwind classes into any pages where they want to use Tailwind. Commonly, this is a shared layout component so that Tailwind styling can be used on multiple pages.
v5.2.4Compare Source
Patch Changes
#13130
b71bd10Thanks @ascorbic! - Fixes a bug that caused duplicate slashes inside query params to be collapsed#13131
d60c742Thanks @ascorbic! - Ignores trailing slashes for endpoints with file extensions in the routeUpdated dependencies [
b71bd10]:v5.2.3Compare Source
Patch Changes
#13113
3a26e45Thanks @unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.#13111
23978ddThanks @ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always#13112
0fa5c82Thanks @ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when theprefixDefaultLocaleoption is set totruev5.2.2Compare Source
Patch Changes
187c4d3Thanks @ascorbic! - Fixes a bug that caused peer dependency errors when runningastro add tailwindv5.2.1Compare Source
Patch Changes
740eb60Thanks @ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"v5.2.0Compare Source
Minor Changes
#12994
5361755Thanks @ascorbic! - Redirects trailing slashes for on-demand pagesWhen the
trailingSlashoption is set toalwaysornever, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.Now, it doesn't matter whether your visitor navigates to
/about/,/about, or even/about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.
#12979
e621712Thanks @ematipico! - Adds support for redirecting to external sites with theredirectsconfiguration option.Now, you can redirect routes either internally to another path or externally by providing a URL beginning with
httporhttps:#13084
0f3be31Thanks @ematipico! - Adds a new experimental virtual moduleastro:configthat exposes a type-safe subset of yourastro.config.mjsconfigurationThe virtual module exposes two sub-paths for controlled access to your configuration:
astro:config/client: exposes config information that is safe to expose to the client.astro:config/server: exposes additional information that is safe to expose to the server, such as file/dir paths.To enable this new virtual module, add the
experimental.serializeManifestfeature flag to your Astro config:Then, you can access the module in any file inside your project to import and use values from your Astro config:
For a complete overview, and to give feedback on this experimental API, see the Serialized Manifest RFC.
Patch Changes
#13049
2ed4bd9Thanks @florian-lefebvre! - Updatesastro add tailwindto add the@tailwindcss/viteplugin instead of the@astrojs/tailwindintegration#12994
5361755Thanks @ascorbic! - Returns a more helpful 404 page in dev if there is a trailing slash mismatch between the route requested and thetrailingSlashconfiguration#12666
037495dThanks @Thodor12! - Added additional generated typings for the content layerUpdated dependencies [
5361755,db252e0]:v5.1.10Compare Source
Patch Changes
#13058
1a14b53Thanks @ascorbic! - Fixes broken type declaration#13059
e36837fThanks @ascorbic! - Fixes a bug that caused tsconfig path aliases to break if there was more than one wildcard pattern#13045
c7f1366Thanks @mtwilliams-code! - Fixes a bug where the some utility functions of theastro:i18nvirtual module would return an incorrect result whentrailingSlashis set toneverv5.1.9Compare Source
Patch Changes
#12986
8911bdaThanks @wetheredge! - Updates types and dev toolbar for ARIA 1.2 attributes and roles#12892
8f520f1Thanks @louisescher! - Adds a more descriptive error when a content collection entry has an invalid ID.#13031
f576519Thanks @florian-lefebvre! - Updates the server islands encoding logic to only escape the script end tag open delimiter and opening HTML comment syntax#13026
1d272f6Thanks @ascorbic! - Fixes a regression that prevented the import of Markdown files as raw text or URLs.v5.1.8Compare Source
Patch Changes
#12998
9ce0038Thanks @Kynson! - Fixes the issue that audit incorrectly flag images as above the fold when the scrolling container is not body#12990
2e12f1dThanks @ascorbic! - Fixes a bug that caused references to be incorrectly reported as invalid#12984
2d259cfThanks @ascorbic! - Fixes a bug in dev where files would stop being watched if the Astro config file was edited#12984
2d259cfThanks @ascorbic! - Fixes a bug where the content layer would use an outdated version of the Astro config if it was edited in dev#12982
429aa75Thanks @bluwy! - Fixes an issue where server islands do not work in projects that use an adapter but only have prerendered pages. If an adapter is added, the server island endpoint will now be added by default.#12995
78fd73aThanks @florian-lefebvre! - Fixes a case whereastro:actionstypes would not work when usingsrc/actions.ts#13011
cf30880Thanks @ascorbic! - Upgrades Vite#12733
bbf1d88Thanks @ascorbic! - Fixes a bug that caused the dev server to return an error if requesting "//"#13001
627aec3Thanks @ascorbic! - Fixes a bug that caused Astro to attempt to inject environment variables into non-source files, causing performance problems and broken buildsv5.1.7Compare Source
Patch Changes
#12361
3d89e62Thanks @LunaticMuch! - Upgrades theesbuildversion to matchvite#12980
1a026afThanks @florian-lefebvre! - Fixes a case where setting the status of a page to404in development would show the default 404 page (or custom one if provided) instead of using the current page#12182
c30070bThanks @braden-w! - Improves matching of 404 and 500 routesUpdated dependencies [
3d89e62]:eslint/eslint (eslint)
v9.20.0Compare Source
v9.19.0Compare Source
prettier/eslint-plugin-prettier (eslint-plugin-prettier)
v5.2.3Compare Source
Patch Changes
9c6141fThanks @BPScott! - Add name field to recommended flat configv5.2.2Compare Source
Patch Changes
aa5b59fThanks @ntnyq! - fix: report node when loc not foundcloudflare/workers-sdk (miniflare)
v3.20250129.0Compare Source
Patch Changes
#7971
ab49886Thanks @dependabot! - chore: update dependencies of "miniflare" packageThe following dependency versions have been updated:
v3.20250124.1Compare Source
Patch Changes
cf4f47aThanks @penalosa! - Switch tocapnp-esovercapnp-tsv3.20250124.0Compare Source
Patch Changes
#7890
40f89a9Thanks @dependabot! - chore: update dependencies of "miniflare" packageThe following dependency versions have been updated:
v3.20241230.2Compare Source
Patch Changes
8e9aa40Thanks @penalosa! - Use TEXT bindings for plain text values in Miniflare. This is an internal detail that should have no user facing impact.prettier/prettier (prettier)
v3.5.0Compare Source
diff
🔗 Release Notes
rollup/rollup (rollup)
v4.34.6Compare Source
2025-02-07
Bug Fixes
Pull Requests
v4.34.5Compare Source
2025-02-07
Bug Fixes
Pull Requests
v4.34.4Compare Source
2025-02-05
Bug Fixes
Pull Requests
v4.34.3Compare Source
2025-02-05
Bug Fixes
Pull Requests
v4.34.2Compare Source
2025-02-04
Bug Fixes
Pull Requests
v4.34.1Compare Source
2025-02-03
Bug Fixes
Pull Requests
v4.34.0Compare Source
2025-02-01
Features
Pull Requests
v4.33.0Compare Source
2025-02-01
Features
Bug Fixes
Pull Requests
v4.32.1Compare Source
2025-01-28
Bug Fixes
Pull Requests
v4.32.0Compare Source
2025-01-24
Features
Bug Fixes
Pull Requests
v4.31.0Compare Source
2025-01-19
Features
Bug Fixes
Pull Requests
Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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 was generated by Mend Renovate. View the repository job log.