chore(deps): update all non-major dependencies #8
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:
20.11.22
->20.11.27
0.5.11
->0.5.12
1.71.1
->1.72.0
5.3.3
->5.4.2
5.1.4
->5.1.6
1.0.0-rc.44
->1.0.0-rc.45
2.0.4
->2.0.6
3.30.0
->3.33.0
Release Notes
tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)
v0.5.12
Compare Source
Added
prettier-plugin-sort-imports
(#241)sass/dart-sass (sass)
v1.72.0
Compare Source
Support adjacent
/
s without whitespace in between when parsing plain CSSexpressions.
Allow the Node.js
pkg:
importer to load Sass stylesheets forpackage.json
exports
field entries without extensions.When printing suggestions for variables, use underscores in variable names
when the original usage used underscores.
JavaScript API
pkg:
imports with the Node.js package importer whenarguments are passed to the JavaScript process.
Microsoft/TypeScript (typescript)
v5.4.2
: TypeScript 5.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
vitejs/vite (vite)
v5.1.6
Compare Source
v5.1.5
Compare Source
__vite__mapDeps
code injection (#15732) (aff54e1), closes #15732experimentalDecorators: true
(#15206) (4144781), closes #15206pathe
(#16061) (aac2ef7), closes #16061vuejs/vitepress (vitepress)
v1.0.0-rc.45
Compare Source
Bug Fixes
Features
__VITEPRESS__
for easy detection by plugins and other tools (#3634) (f6bd99e)vuejs/language-tools (vue-tsc)
v2.0.6
Compare Source
Fixes
extraLiners
option for formatting (#3943)volar-service-typescript
for fix jsx formatting (#3949)@volar/typescript
2.0.5 completion performance regression (#4024)Refactors
vue.inlayHints.vbindShorthand
setting tovue.inlayHints.vBindShorthand
(#3995) - thanks @l4dybirdv2.0.5
Compare Source
Features
v-bind
shorthand (#3990) - thanks @so1vev-bind
shorthand (#3990) - thanks @so1veFixes
globalTypesHolder
being specified from anode_modules
file (#3990)Refactors
cloudflare/workers-sdk (wrangler)
v3.33.0
Compare Source
Minor Changes
#4930
2680462
Thanks @rozenmd! - refactor: defaultwrangler d1 execute
andwrangler d1 migrations
commands to local mode first, to matchwrangler dev
This PR defaults
wrangler d1 execute
andwrangler d1 migrations
commands to use the local development environment provided by wrangler to match the default behaviour inwrangler dev
.BREAKING CHANGE (for a beta feature):
wrangler d1 execute
andwrangler d1 migrations
commands now default--local
totrue
. When runningwrangler d1 execute
against a remote D1 database, you will need to provide the--remote
flag.Patch Changes
#5184
046930e
Thanks @nora-soderlund! - fix: change d1 migrations create to use the highest migration number rather than the first non-existing migration number to allow for gaps in the migration files.Updated dependencies [
1235d48
,27fb22b
]:v3.32.0
Compare Source
Minor Changes
#5148
11951f3
Thanks @dom96! - chore: bumpworkerd
to1.20240304.0
#5148
11951f3
Thanks @dom96! - fix: use python_workers compat flag for PythonPatch Changes
#5089
5b85dc9
Thanks @DaniFoldi! - fix: include all currently existing bindings inwrangler types
Add support for Email Send, Vectorize, Hyperdrive, mTLS, Browser Rendering and Workers AI bindings in
wrangler types
For example, from the following
wrangler.toml
setup:Previously, nothing would have been included in the generated Environment.
Now, the following will be generated:
Updated dependencies [
11951f3
,11951f3
]:v3.31.0
Compare Source
Minor Changes
#5119
b0bd413
Thanks @garrettgu10! - feature: Python support for remote dev#5118
30694a3
Thanks @garrettgu10! - fix: Including version identifiers in Python requirements.txt will now throw an errorPatch Changes
#5132
82a3f94
Thanks @mrbbot! - fix: switch default logging level ofunstable_dev()
towarn
When running
unstable_dev()
in its default "test mode", the logging level was set tonone
. This meant any Worker startup errors or helpful warnings wouldn't be shown. This change switches the default towarn
. To restore the previous behaviour, includelogLevel: "none"
in your options object:#5128
d27e2a7
Thanks @taylorlee! - fix: Add legacy_env support to experimental versions upload command.#5087
a5231de
Thanks @dario-piotrowicz! - fix: makewrangler types
always generate ad.ts
file for module workersCurrently if a config file doesn't define any binding nor module, running
wrangler types
against such file would not produce ad.ts
file.Producing a
d.ts
file can however still be beneficial as it would define a correctenv interface (even if empty) that can be expanded/referenced by user code (this can
be particularly convenient for scaffolding tools that may want to always generate an
env interface).
Example:
Before
wrangler types --env-interface MyEnv
run with an emptywrangler.toml
filewould not generate any file, after these change it would instead generate a file with
the following content:
#5138
3dd9089
Thanks @G4brym! - fix: ensure Workers-AI local mode fetcher returns headers to client workerUpdated dependencies [
42bcc72
,42bcc72
]:v3.30.1
Compare Source
Patch Changes
#5106
2ed7f32
Thanks @RamIdeas! - fix: automatically drain incoming request bodiesPreviously, requests sent to
wrangler dev
with unconsumed bodies could result inNetwork connection lost
errors. This change attempts to work around the issue by ensuring incoming request bodies are drained if they're not used. This is a temporary fix whilst we try to address the underlying issue. Whilst we don't think this change will introduce any other issues, it can be disabled by setting theWRANGLER_DISABLE_REQUEST_BODY_DRAINING=true
environment variable. Note this fix is only applied if you've enabled Wrangler's bundling—--no-bundle
mode continues to have the previous behaviour.#5107
65d0399
Thanks @penalosa! - fix: Ensures that switching to remote mode during a dev session (from local mode) will correctly use the right zone. Previously, zone detection happened before the dev session was mounted, and so dev sessions started with local mode would have no zone inferred, and would have failed to start, with an ugly error.#5107
65d0399
Thanks @penalosa! - fix: Ensure that preview sessions created without a zone don't switch the host on which to start the preview from the one returned by the API.#4833
54f6bfc
Thanks @admah! - fix: remove extra arguments from wrangler init deprecation message and update recommended c3 versionc3 can now infer the pre-existing type from the presence of the
--existing-script
flag so we can remove the extratype
argument. C3 2.5.0 introduces an auto-update feature that will make sure users get the latest minor version of c3 and prevent problems where older 2.x.x versions get cached by previous runs ofwrangler init
.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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.