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
^0.47.0
->^1.0.0
^6.19.8
->^7.0.0
^0.12.0
->^1.0.0
^3.78.7
->^4.0.0
Release Notes
withastro/astro (@astrojs/cloudflare)
v12.6.5
Compare Source
Patch Changes
#14259
02366e9
Thanks @ascorbic! - Removes warning when using the adapter with a static build.The Cloudflare adapter now has several uses outside of on-demand rendered pages, so this warning is misleading. Similar warnings have already been removed from other adapters.
#14234
15b55f3
Thanks @yanthomasdev! - Fixes an issue that could cause duplicate exports when configuringworkerEntrypoint.namedExports
#14240
77b18fb
Thanks @delucis! - Increases the minimum supported version of Astro to 5.7.0Updated dependencies []:
v12.6.4
Compare Source
Patch Changes
4d16de7
]:v12.6.3
Compare Source
Patch Changes
#14066
7abde79
Thanks @alexanderniebuhr! - Refactors the internal solution which powers Astro Sessions when running local development with ˋastro devˋ.The adapter now utilizes Cloudflare's local support for Cloudflare KV. This internal change is a drop-in replacement and does not require any change to your projectct code.
However, you now have the ability to connect to the remote Cloudflare KV Namespace if desired and use production data during local development.
Updated dependencies []:
v12.6.2
Compare Source
Patch Changes
#13894
b36e72f
Thanks @florian-lefebvre! - Removes special handling of theASTRO_STUDIO_APP_TOKEN
environment variableUpdated dependencies [
0567fb7
]:v12.6.1
Compare Source
Patch Changes
f4e8889
]:v12.6.0
Compare Source
Minor Changes
#13837
7cef86f
Thanks @alexanderniebuhr! - Adds new configuration options to allow you to set a customworkerEntryPoint
for Cloudflare Workers. This is useful if you want to use features that require handlers (e.g. Durable Objects, Cloudflare Queues, Scheduled Invocations) not supported by the basic generic entry file.This feature is not supported when running the Astro dev server. However, you can run
astro build
followed by eitherwrangler deploy
(to deploy it) orwrangler dev
to preview it.The following example configures a custom entry file that registers a Durable Object and a queue handler:
Patch Changes
#13963
c667c55
Thanks @florian-lefebvre! - Fixes a case where the platform proxy would not be disposed when the dev process endedUpdated dependencies []:
v12.5.5
Compare Source
Patch Changes
#13930
acb9b30
Thanks @alexanderniebuhr! - Fixes an issue where setting values forAstro.response
resulted in a Cloudflare runtime exception.Updated dependencies [
de82ef2
,de82ef2
,de82ef2
]:v12.5.4
Compare Source
Patch Changes
#13817
b7258f1
Thanks @yanthomasdev! - Clarifies and reduces a few logs when starting the dev server with@astrojs/cloudflare
.Warnings about sharp support will now be suppressed when you have explicitly set an
imageService
option.Updated dependencies []:
v12.5.3
Compare Source
Patch Changes
#13792
7910fea
Thanks @alexeyzimarev! - Unify imported images detection across adaptersUpdated dependencies []:
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
chakra-ui/panda (@pandacss/dev)
v1.1.0
Compare Source
Patch Changes
47a0011
]e8ec0aa
]v1.0.1
Compare Source
Patch Changes
v1.0.0
Compare Source
Major Changes
a3bcbea
: Stable release of PandaCSSStyle Context
Add
createStyleContext
function to framework artifacts for React, Preact, Solid, and Vue frameworksThen, use like this:
Patch Changes
a3bcbea
]v0.54.0
Compare Source
Patch Changes
76c4e61
]efa060d
]d2aede5
]fdf5142
]v0.53.7
Compare Source
Patch Changes
v0.53.6
Compare Source
Patch Changes
v0.53.5
Compare Source
Patch Changes
v0.53.4
Compare Source
Patch Changes
v0.53.3
Compare Source
Patch Changes
v0.53.2
Compare Source
Patch Changes
cde9a0b
]v0.53.1
Compare Source
Patch Changes
b67a2a5
]v0.53.0
Compare Source
Patch Changes
5286731
]v0.52.0
Compare Source
Patch Changes
2f1165c
]v0.51.1
Compare Source
Patch Changes
9c1327e
: Redesigned the recipe report to be more readable and easier to understand. We simplified theJSX
andFunction
columns to be more concise.BEFORE
╔════════════════════════╤══════════════════════╤═════════╤═══════╤════════════╤═══════════════════╤══════════╗ ║ Recipe │ Variant Combinations │ Usage % │ JSX % │ Function % │ Most Used │ Found in ║ ╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢ ║ someRecipe (1 variant) │ 1 / 1 │ 100% │ 100% │ 0% │ size.small │ 1 file ║ ╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢ ║ button (4 variants) │ 7 / 9 │ 77.78% │ 63% │ 38% │ size.md, size.sm, │ 2 files ║ ║ │ │ │ │ │ state.focused, │ ║ ║ │ │ │ │ │ variant.danger, │ ║ ║ │ │ │ │ │ variant.primary │ ║ ╚════════════════════════╧══════════════════════╧═════════╧═══════╧════════════╧═══════════════════╧══════════╝
AFTER
╔════════════════════════╤════════════════╤═══════════════════╤═══════════════════╤══════════╤═══════════╗ ║ Recipe │ Variant values │ Usage % │ Most used │ Found in │ Used as ║ ╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢ ║ someRecipe (1 variant) │ 1 value │ 100% (1 value) │ size.small │ 1 file │ jsx: 100% ║ ║ │ │ │ │ │ fn: 0% ║ ╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢ ║ button (4 variants) │ 9 values │ 77.78% (7 values) │ size.md, size.sm, │ 2 files │ jsx: 63% ║ ║ │ │ │ state.focused, │ │ fn: 38% ║ ║ │ │ │ variant.danger, │ │ ║ ║ │ │ │ variant.primary │ │ ║ ╚════════════════════════╧════════════════╧═══════════════════╧═══════════════════╧══════════╧═══════════╝
v0.51.0
Compare Source
Patch Changes
d68ad1f
]v0.50.0
Compare Source
Minor Changes
fea78c7
: Adds support for static analysis of used tokens and recipe variants. It helps to get a birds-eye view of howyour design system is used and answers the following questions:
Patch Changes
fea78c7
]ad89b90
]v0.49.0
Compare Source
Minor Changes
97a0e4d
: Add support for animation styles. Animation styles focus solely on animations, allowing you to orchestrateanimation properties.
Here's an example of this:
With that defined, I can use it in my recipe or css like so:
This feature will drive consumers to lean in towards CSS for animations rather than JS. Composing animation names is a
powerful feature we should encourage consumers to use.
Patch Changes
97a0e4d
]v0.48.1
Compare Source
Patch Changes
fd87f3a
]v0.48.0
Compare Source
Patch Changes
nodejs/undici (undici)
v7.15.0
Compare Source
What's C
Configuration
📅 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.