-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update all non-major dependencies #457
Conversation
|
489cd69
to
7e068a9
Compare
7e068a9
to
916f5da
Compare
72802ea
to
5dd755a
Compare
c25fcaa
to
64f024a
Compare
64f024a
to
14189b3
Compare
There's a regression in Astro causing the test to fail. Test was from: withastro/astro#11491 |
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This PR contains the following updates:
^0.4.1
->^0.4.2
0.4.1
->0.4.2
^5.0.0
->^5.0.1
^7.0.1
->^7.0.3
^0.4.0-alpha.0
->^0.5.0
^5.0.1
->^5.0.4
^2.27.10
->^2.27.11
^4.20241112.0
->^4.20241230.0
^1.0.1
->^1.0.2
^22.10.0
->^22.10.5
^1.1.2
->^1.2.0
^0.27.6
->^0.29.0
^5.0.0
->^5.1.2
^5.0.5
->^5.1.2
^9.15.0
->^9.17.0
^4.21.1
->^4.21.2
^0.30.14
->^0.30.17
^3.20241106.1
->^3.20241218.0
^1.16.1
->^1.16.2
^3.4.1
->^3.4.2
^4.27.4
->^4.29.1
^5.6.0
->^5.16.1
^8.16.0
->^8.19.0
^6.0.2
->^6.0.7
^3.84.0
->^3.99.0
^3.91.0
->^3.99.0
Release Notes
withastro/astro (@astrojs/internal-helpers)
v0.4.2
Compare Source
Patch Changes
1dc8f5e
Thanks @delucis! - Fixes usage offileURLToPath()
to anticipate the changed signature of this method in Node 22.1.0withastro/astro (@astrojs/solid-js)
v5.0.1
Compare Source
Patch Changes
739dbfb
Thanks @ascorbic! - Upgrades Vite to pin esbuildwithastro/astro (@astrojs/svelte)
v7.0.3
Compare Source
Patch Changes
8809b85
Thanks @aminevg! - Fixes an issue where TypeScript couldn't infer the correct types of theserver.mjs
filev7.0.2
Compare Source
Patch Changes
739dbfb
Thanks @ascorbic! - Upgrades Vite to pin esbuildwithastro/astro (@astrojs/underscore-redirects)
v0.5.0
Compare Source
Minor Changes
524c855
Thanks @ematipico! - Adds a newbuildOutput
property to the APIcreateRedirectsFromAstroRoutes
v0.4.0
Compare Source
Minor Changes
#12008
5608338
Thanks @Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.Starting from this release, no breaking changes will be introduced unless absolutely necessary.
To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.
#11989
3e70853
Thanks @florian-lefebvre! - Updates the type fromRouteData
toIntegrationRouteData
withastro/astro (@astrojs/vue)
v5.0.4
Compare Source
Patch Changes
8809b85
Thanks @aminevg! - Fixes an issue where TypeScript couldn't infer the correct types of theserver.mjs
filev5.0.3
Compare Source
Patch Changes
739dbfb
Thanks @ascorbic! - Upgrades Vite to pin esbuildv5.0.2
Compare Source
Patch Changes
7dc2fca
Thanks @yoyo837! - fix vite peer dependency issue for vue integrationchangesets/changesets (@changesets/cli)
v2.27.11
Compare Source
Patch Changes
f0270f6
]:cloudflare/workerd (@cloudflare/workers-types)
v4.20241230.0
Compare Source
v4.20241224.0
Compare Source
v4.20241218.0
Compare Source
v4.20241216.0
Compare Source
v4.20241214.0
Compare Source
v4.20241205.0
Compare Source
v4.20241202.0
Compare Source
Fryuni/inox-tools (@inox-tools/astro-when)
v1.0.2
Compare Source
Patch Changes
0dcdeaa
: Bump Astro Integration Kitvercel/vercel (@vercel/edge)
v1.2.0
Compare Source
Minor Changes
v1.1.4
Compare Source
Patch Changes
v1.1.3
Compare Source
Patch Changes
vercel/nft (@vercel/nft)
v0.29.0
Compare Source
Features
v0.28.0
Compare Source
Features
module.createRequire
(#459) (fc710ff), closes #430v0.27.10
Compare Source
Bug Fixes
v0.27.9
Compare Source
Bug Fixes
v0.27.8
Compare Source
Bug Fixes
v0.27.7
Compare Source
Bug Fixes
withastro/astro (astro)
v5.1.2
Compare Source
Patch Changes
#12798
7b0cb85
Thanks @ascorbic! - Improves warning logs for invalid content collection configuration#12781
96c4b92
Thanks @ascorbic! - Fixes a regression that causeddefault()
to not work withreference()
#12820
892dd9f
Thanks @ascorbic! - Fixes a bug that caused cookies to not be deleted when destroying a session#12864
440d8a5
Thanks @kaytwo! - Fixes a bug where the session ID wasn't correctly regenerated#12768
524c855
Thanks @ematipico! - Fixes an issue where Astro didn't print error logs when Astro Islands were used in incorrect cases.#12814
f12f111
Thanks @ematipico! - Fixes an issue where Astro didn't log anything in case a file isn't created during the build.#12875
e109002
Thanks @ascorbic! - Fixes a bug in emulated legacy collections where the entry passed to the getCollection filter function did not include the legacy entry fields.#12768
524c855
Thanks @ematipico! - Fixes an issue where Astro was printing the incorrect output format when running theastro build
command#12810
70a9f0b
Thanks @louisescher! - Fixes server islands failing to check content-type header under certain circumstancesSometimes a reverse proxy or similar service might modify the content-type header to include the charset or other parameters in the media type of the response. This previously wasn't handled by the client-side server island script and thus removed the script without actually placing the requested content in the DOM. This fix makes it so the script checks if the header starts with the proper content type instead of exactly matching
text/html
, so the following will still be considered a valid header:text/html; charset=utf-8
#12816
7fb2184
Thanks @ematipico! - Fixes an issue where an injected route entrypoint wasn't correctly marked because the resolved file path contained a query parameter.This fixes some edge case where some injected entrypoint were not resolved when using an adapter.
v5.1.1
Compare Source
Patch Changes
#12782
f3d8385
Thanks @fhiromasa! - update comment in packages/astro/src/types/public/common.ts#12789
f632b94
Thanks @ascorbic! - Pass raw frontmatter to remark plugins in glob loader#12799
739dbfb
Thanks @ascorbic! - Upgrades Vite to pin esbuildv5.1.0
Compare Source
Minor Changes
#12441
b4fec3c
Thanks @ascorbic! - Adds experimental session supportSessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data.
v5.0.9
Compare Source
Patch Changes
95795f8
Thanks @matthewp! - Remove debug logging from buildv5.0.8
Compare Source
Patch Changes
039d022
Thanks @matthewp! - Clean server sourcemaps from static outputv5.0.7
Compare Source
Patch Changes
c879f50
Thanks @matthewp! - Remove all assets created from the server buildv5.0.6
Compare Source
Patch Changes
#12597
564ac6c
Thanks @florian-lefebvre! - Fixes an issue where image and server islands routes would not be passed to theastro:routes:resolved
hook during builds#12718
ccc5ad1
Thanks @ematipico! - Fixes an issue where Astro couldn't correctly handle i18n fallback when using the i18n middleware#12728
ee66a45
Thanks @argyleink! - Adds type support for theclosedby
attribute for<dialog>
elements#12709
e3bfd93
Thanks @mtwilliams-code! - Fixes a bug where Astro couldn't correctly parseparams
andprops
when receiving i18n fallback URLs#12657
14dffcc
Thanks @darkmaga! - Trailing slash support for actions#12715
029661d
Thanks @ascorbic! - Fixes a bug that caused errors in dev when editing sites with large numbers of MDX pages#12729
8b1cecd
Thanks @JoeMorgan! - "Addedinert
to htmlBooleanAttributes"#12726
7c7398c
Thanks @florian-lefebvre! - Fixes a case where failing content entries inastro check
would not be surfacedv5.0.5
Compare Source
Patch Changes
#12705
0d1eab5
Thanks @ascorbic! - Fixes a bug where MDX files with certain characters in the name would cause builds to fail#12707
2aaed2d
Thanks @ematipico! - Fixes a bug where the middleware was incorrectly imported during the build#12697
1c4a032
Thanks @ascorbic! - Fix a bug that caused builds to fail if an image had a quote mark in its name#12694
495f46b
Thanks @ematipico! - Fixes a bug where the experimental featureexperimental.svg
was incorrectly used when generating ESM images#12658
3169593
Thanks @jurajkapsz! - Fixes astro info copy to clipboard process not returning to prompt in certain cases.#12712
b01c74a
Thanks @ascorbic! - Fixes a bug which misidentified pages as markdown if a query string ended in a markdown extensionv5.0.4
Compare Source
Patch Changes
#12653
e21c7e6
Thanks @sarah11918! - Updates a reference in an error message#12585
a9373c0
Thanks @florian-lefebvre! - Fixes a case whereprocess.env
would be frozen despite changes made to environment variables in development#12695
a203d5d
Thanks @ascorbic! - Throws a more helpful error when images are missingUpdated dependencies [
f13417b
,87231b1
,a71e9b9
]:v5.0.3
Compare Source
Patch Changes
#12645
8704c54
Thanks @sarah11918! - Updates some reference links in error messages for new v5 docs.#12641
48ca399
Thanks @ascorbic! - Fixes a bug whereastro info --copy
wasn't working correctly onmacOS
systems.#12461
62939ad
Thanks @kyr0! - Removes the misleading log message telling that a custom renderer is not recognized while it clearly is and works.#12642
ff18b9c
Thanks @ematipico! - Provides more information when logging a warning for accessingAstro.request.headers
in prerendered pages#12634
03958d9
Thanks @delucis! - Improves error message formatting for user config and content collection frontmatter#12547
6b6e18d
Thanks @mtwilliams-code! - Fixes a bug where URL search parameters weren't passed when using the i18nfallback
feature.#12449
e6b8017
Thanks @apatel369! - Fixes an issue where the customassetFileNames
configuration caused assets to be incorrectly moved to the server directory instead of the client directory, resulting in 404 errors when accessed from the client side.#12518
e216250
Thanks @ematipico! - Fixes an issue where SSR error pages would return duplicated custom headers.#12625
74bfad0
Thanks @ematipico! - Fixes an issue where theexperimental.svg
had incorrect type, resulting in some errors in the editors.#12631
dec0305
Thanks @ascorbic! - Fixes a bug where the class attribute was rendered twice on the image component#12623
0e4fecb
Thanks @ascorbic! - Correctly handles images in content collections with uppercase file extensions#12633
8a551c1
Thanks @bluwy! - Cleans up content layer sync during builds and programmaticsync()
calls#12640
22e405a
Thanks @ascorbic! - Fixes a bug that caused content collections to be returned empty when run in a test environment#12613
306c9f9
Thanks @matthewp! - Fix use of cloned requests in middleware with clientAddressWhen using
context.clientAddress
orAstro.clientAddress
Astro looks up the address in a hidden property. Cloning a request can cause this hidden property to be lost.The fix is to pass the address as an internal property instead, decoupling it from the request.
v5.0.2
Compare Source
Patch Changes
0724929
Thanks @ascorbic! - Includes "undefined" in types for getEntryv5.0.1
Compare Source
Patch Changes
92c269b
Thanks @kidonng! - fix: devtools warnings about dev toolbar form fieldseslint/eslint (eslint)
v9.17.0
Compare Source
v9.16.0
Compare Source
Features
8f70eb1
feat: AddignoreComputedKeys
option insort-keys
rule (#19162) (Milos Djermanovic)Documentation
9eefc8f
docs: fix typos inuse-isnan
(#19190) (루밀LuMir)0c8cea8
docs: switch the order of words inno-unreachable
(#19189) (루밀LuMir)0c19417
docs: add missing backtick tono-async-promise-executor
(#19188) (루밀LuMir)8df9276
docs: add backtick in-0
indescription
ofno-compare-neg-zero
(#19186) (루밀LuMir)7e16e3f
docs: fixcaseSensitive
option's title ofsort-keys
(#19183) (Tanuj Kanti)0c6b842
docs: fix typos inmigration-guide.md
(#19180) (루밀LuMir)353266e
docs: fix a typo indebug.md
(#19179) (루밀LuMir)5ff318a
](https://redirect.github.com/eslint/eslint/commit/5ff318a528e3f6b8b9c6a62ea94Configuration
📅 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.