chore(deps): update enable automerge for devdependencies (main) (major) #18
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:
^11.0.5
->^12.0.0
^6.19.8
->^7.0.0
^3.78.7
->^4.0.0
Release Notes
withastro/astro (@astrojs/cloudflare)
v12.5.2
Compare Source
Patch Changes
#13731
c3e80c2
Thanks @jsparkdev! - update vite to latest version for fixing CVEUpdated dependencies []:
v12.5.1
Compare Source
Patch Changes
#13591
5dd2d3f
Thanks @florian-lefebvre! - Removes unused codeUpdated dependencies [
5dd2d3f
]:v12.5.0
Compare Source
Minor Changes
#13527
2fd6a6b
Thanks @ascorbic! - The experimental session API introduced in Astro 5.1 is now stable and ready for production use.Sessions are used to store user state between requests for on-demand rendered pages. You can use them to store user data, such as authentication tokens, shopping cart contents, or any other data that needs to persist across requests:
v12.4.1
Compare Source
Patch Changes
#13596
3752519
Thanks @jsparkdev! - update vite to latest version to fix CVE#13547
360cb91
Thanks @jsparkdev! - Updates vite to the latest versionUpdated dependencies []:
v12.4.0
Compare Source
Minor Changes
#13514
a9aafec
Thanks @ascorbic! - Automatically configures Cloudflare KV storage when experimental sessions are enabledIf the
experimental.session
flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI:This will log the id of the created namespace. You can then add it to your
wrangler.json
/wrangler.toml
file like this:By default it uses the binding name
SESSION
, but if you want to use a different binding name you can do so by passing thesessionKVBindingName
option to the adapter. For example:See the Cloudflare KV docs for more details on setting up KV namespaces.
See the experimental session docs for more information on configuring session storage.
Patch Changes
#13526
ff9d69e
Thanks @jsparkdev! - updatevite
to the latest versionUpdated dependencies []:
v12.3.1
Compare Source
Patch Changes
#13505
a98ae5b
Thanks @ematipico! - Updates the dependencyvite
to the latest.Updated dependencies []:
v12.3.0
Compare Source
Minor Changes
#13444
9721f4a
Thanks @florian-lefebvre! - Adds globalastro:env
supportCloudflare workers now support importing
env
in the global scope. Until now, callingastro:env
APIs had to be done within request scope or the values wereundefined
.With this release, they can be called anywhere server-side, like any other official adapter.
Patch Changes
#13463
d5ad591
Thanks @ascorbic! - Fixes a bug that caused builds to fail when a base directory is configuredUpdated dependencies []:
v12.2.4
Compare Source
Patch Changes
042d1de
]:v12.2.3
Compare Source
Patch Changes
#13323
80926fa
Thanks @ematipico! - Updatesesbuild
andvite
to the latest to avoid false positives audits warnings caused byesbuild
.Updated dependencies [
1e11f5e
]:v12.2.2
Patch Changes
#13304
6efd57d
Thanks @ematipico! - Fixes a small issue where the package was pulling an outdated version of its internal dependencies.#13201
065157c
Thanks @ekwoka! - Includes onerror passthrough param for Cloudflare Image Service#13299
2e1321e
Thanks @bluwy! - Usestinyglobby
for globbing filesUpdated dependencies []:
v12.2.1
Patch Changes
ce66003
Thanks @bluwy! - Removes internalvue
handlingv12.2.0
Minor Changes
4b5cd22
Thanks @florian-lefebvre! - Stabilizesastro:env
secrets supportPatch Changes
#454
83cedad
Thanks @alexanderniebuhr! - Improves Astro 5 support#501
012b31d
Thanks @florian-lefebvre! - Refactor of the redirects logicv12.1.0
Minor Changes
1d4e6fc
Thanks @meyer! - Addswrangler.jsonc
to the default watched config files. If a config file is specified inplatformProxy.configPath
, that file location is watched instead of the defaults.Patch Changes
a8a8ab1
Thanks @bluwy! - Removes resolving with "node" conditionto fix Vue importsv12.0.1
Patch Changes
70e0054
Thanks @bluwy! - Fixes setting customworkerd
andworker
conditions for the ssr environment onlyv12.0.0
Major Changes
#367
e02b54a
Thanks @alexanderniebuhr! - Removed support for the Squoosh image service. As the underlying librarylibsquoosh
is no longer maintained, and the image service sees very little usage we have decided to remove it from Astro.Our recommendation is to use the base Sharp image service, which is more powerful, faster, and more actively maintained.
If you are using this service, and cannot migrate to the base Sharp image service, a third-party extraction of the previous service is available here: https://github.com/Princesseuh/astro-image-service-squoosh
#367
e02b54a
Thanks @alexanderniebuhr! - Deprecates thefunctionPerRoute
optionThis option is now deprecated, and will be removed entirely in Astro v5.0. We suggest removing this option from your configuration as soon as you are able to:
import { defineConfig } from 'astro/config'; import vercel from '@​astrojs/vercel/serverless'; export default defineConfig({ // ... output: 'server', adapter: vercel({ - functionPerRoute: true, }), });
#375
e7881f7
Thanks @Princesseuh! - Updates internal code to works with Astro 5 changes to hybrid rendering. No changes are necessary to your project, apart from using Astro 5#397
776a266
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.
#451
f248546
Thanks @ematipico! - Updates esbuild dependency to v0.24.0#392
3a49eb7
Thanks @Princesseuh! - Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5Patch Changes
9cedc9b
Thanks @renovate! - InheritsplatformProxy
option types fromwrangler
nodejs/undici (undici)
v7.9.0
Compare Source
What's Changed
acceptNonStandardSearchParameters
MockAgent option by @dario-piotrowicz in https://github.com/nodejs/undici/pull/4148New Contributors
Full Changelog: nodejs/undici@v7.8.0...v7.9.0
v7.8.0
Compare Source
What's Changed
New Contributors
Full Changelog: nodejs/undici@v7.7.0...v7.8.0
v7.7.0
Compare Source
What's Changed
New Contributors
Full Changelog: nodejs/undici@v7.6.0...v7.7.0
v7.6.0
Compare Source
What's Changed
New Contributors
Full Changelog: nodejs/undici@v7.5.0...v7.6.0
v7.5.0
Compare Source
What's Changed
New Contributors
Full Changelog: nodejs/undici@v7.4.0...v7.5.0
v7.4.0
Compare Source
What's Changed
onResponseError
by @tmair in https://github.com/nodejs/undici/pull/4030EnvHttpProxyAgent
as stable by @aduh95 in https://github.com/nodejs/undici/pull/4049New Contributors
Full Changelog: nodejs/undici@v7.3.0...v7.4.0
v7.3.0
Compare Source
What's Changed
Full Changelog: nodejs/undici@v7.2.3...v7.3.0
v7.2.3
Compare Source
Fixes CVE CVE-2025-22150 GHSA-c76h-2ccp-4975 (embargoed until 22-01-2025).
What's Changed
Full Changelog: nodejs/undici@v7.2.2...v7.2.3
v7.2.2
Compare Source
What's Changed
Full Changelog: nodejs/undici@v7.2.1...v7.2.2
v7.2.1
Compare Source
What's Changed
undici:request:headers
does not indicate completion of a response by @legendecas in https://github.com/nodejs/undici/pull/3974New Contributors
Full Changelog: nodejs/undici@v7.2.0...v7.2.1
v7.2.0
Compare Source
What's Changed
Full Changelog: nodejs/undici@v7.1.1...v7.2.0
v7.1.1
Compare Source
What's Changed
request
+ "Garbage Collection" by @WTCT-TOP in https://github.com/nodejs/undici/pull/3916New Contributors
Full Changelog: nodejs/undici@v7.1.0...v7.1.1
v7.1.0
Compare Source
What's Changed
Full Changelog: nodejs/undici@v7.0.0...v7.1.0
v7.0.0
Compare Source
What's Changed
075a5cc
to9af472b
in /build by @dependabot in https://github.com/nodejs/undici/pull/33559af472b
to138d0b5
in /build by @dependabot in https://github.com/nodejs/undici/pull/3392BodyReadable.bytes
by @tsctx in https://github.com/nodejs/undici/pull/3391Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.