chore: bump up all non-major dependencies #23
Merged
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:
4.20240919.0
->4.20241004.0
20.16.5
->20.16.10
9.10.0
->9.12.1
6.1.47
->6.1.50
3.78.7
->3.80.0
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20241004.0
Compare Source
v4.20240925.0
Compare Source
v4.20240924.0
Compare Source
pnpm/pnpm (pnpm)
v9.12.1
: pnpm 9.12.1Compare Source
Patch Changes
pnpm update --latest
should not update the automatically installed peer dependencies #6657.pnpm publish
should be able to publish from a local tarball #7950.EBUSY
errors caused by creating symlinks in paralleldlx
processes #8604.Platinum Sponsors
Gold Sponsors
Our Silver Sponsors
v9.12.0
: pnpm 9.12Compare Source
Minor Changes
Fix peer dependency resolution dead lock #8570. This change might change some of the keys in the
snapshots
field insidepnpm-lock.yaml
but it should happen very rarely.pnpm outdated
command supports now a--sort-by=name
option for sorting outdated dependencies by package name #8523.Added the ability for
overrides
to remove dependencies by specifying"-"
as the field value #8572. For example, to removelodash
from the dependencies, use this configuration inpackage.json
:Patch Changes
pnpm list --json pkg
showed"private": false
for a private package #8519.libc
that differ frompnpm.supportedArchitectures.libc
are not downloaded #7362.ENOENT
errors caused by runningstore prune
in parallel #8586.pnpm bugs
#8596.Platinum Sponsors
Gold Sponsors
Our Silver Sponsors
v9.11.0
Compare Source
remusao/tldts (tldts)
v6.1.50
Compare Source
📜 Update Public Suffix List
tldts-experimental
,tldts
🔩 Dependencies
Authors: 2
v6.1.49
Compare Source
📜 Update Public Suffix List
tldts-experimental
,tldts-icann
,tldts
🔩 Dependencies
Authors: 2
v6.1.48
Compare Source
📜 Update Public Suffix List
tldts-experimental
,tldts-icann
,tldts
tldts-experimental
,tldts
🔩 Dependencies
tldts-core
,tldts-experimental
,tldts-icann
,tldts
Authors: 2
cloudflare/workers-sdk (wrangler)
v3.80.0
Compare Source
Minor Changes
#6408
3fa846e
Thanks @RamIdeas! - feat: update the--experimental-dev-env
(shorthand:--x-dev-env
) flag to on-by-defaultIf you experience any issues, you can disable the flag with
--x-dev-env=false
. Please also let us know by opening an issue at https://github.com/cloudflare/workers-sdk/issues/new/choose.Patch Changes
#6854
04a8fed
Thanks @penalosa! - chore: Include serialisedFormData
in debug logs#6879
b27d8cb
Thanks @petebacondarwin! - fix: the docs command should not crash if given search termsFixes a regression accidentally introduced by #3735.
#6873
b123f43
Thanks @zwily! - fix: reduce logging noise during wrangler dev with static assetsUpdates to static assets are accessible by passing in --log-level="debug" but otherwise hidden.
#6881
7ca37bc
Thanks @RamIdeas! - fix: custom builds outputting files in assets watched directory no longer cause the custom build to run again in an infinite loop#6872
b2d094e
Thanks @petebacondarwin! - fix: render a helpful build error if a Service Worker mode Worker has importsA common mistake is to forget to export from the entry-point of a Worker, which causes
Wrangler to infer that we are in "Service Worker" mode.
In this mode, imports to external modules are not allowed.
Currently this only fails at runtime, because our esbuild step converts these imports to an internal
__require()
call that throws an error.The error message is misleading and does not help the user identify the cause of the problem.
This is particularly tricky where the external imports are added by a library or our own node.js polyfills.
Fixes #6648
#6792
27e8385
Thanks @penalosa! - fix: Handle more module declaration cases#6838
7dbd0c8
Thanks @GregBrimble! - fix: Improve static asset upload messagingv3.79.0
Compare Source
Minor Changes
6009bb4
Thanks @RamIdeas! - feat: implement retries withinwrangler deploy
andwrangler versions upload
to workaround spotty network connections and service flakesPatch Changes
#6870
dc9039a
Thanks @penalosa! - fix: Includeworkerd
in the external dependecies of Wrangler to fix local builds.#6866
c75b0d9
Thanks @zwily! - fix: debounce restarting worker on assets dir file changesv3.78.12
Compare Source
Patch Changes
5bfb75d
Thanks @a-robinson! - chore: update warning inwrangler dev --remote
when using Queues to not mention beta statusv3.78.11
Compare Source
Patch Changes
7ede181
Thanks @CarmenPopoviciu! - fix: Validate[routes]
on configuration file changesv3.78.10
Compare Source
Patch Changes
#6824
1c58a74
Thanks @petebacondarwin! - fix: tidy up error messaging for unexpected use of Node.js APIsFixes #6822
Updated dependencies [
5e2e62c
,1c58a74
]:v3.78.9
Compare Source
Patch Changes
#6753
4e33f2c
Thanks @bluwy! - refactor: prevent bundling entirepackage.json
in built code#6812
f700d37
Thanks @CarmenPopoviciu! - fix: Validate additional config properties for[observability]
#6751
638a550
Thanks @bluwy! - refactor: simplify date calculation and remove date-fns dependency#6809
28cb0d7
Thanks @smellercf! - fix: Remove Beta tag from r2 event notification wrangler command descriptions#6802
17eb8a9
Thanks @CarmenPopoviciu! - chore: renameexperimental_assets
toassets
#6781
0792fa0
Thanks @mikenomitch! - chore: tweaks warning when using node_compatv3.78.8
Compare Source
Patch Changes
#6791
74d719f
Thanks @penalosa! - fix: Add missing binding toinit --from-dash
#6728
1ca313f
Thanks @emily-shen! - fix: remove filepath encoding on asset upload and handle sometimes-encoded charactersSome characters like [ ] @ are encoded by encodeURIComponent() but are often requested at an unencoded URL path.
This change will make assets with filenames with these characters accessible at both the encoded and unencoded paths,
but to use the encoded path as the canonical one, and to redirect requests to the canonical path if necessary.
#6798
7d7f19a
Thanks @emily-shen! - fix: error if an asset binding is provided without a Worker scriptUpdated dependencies [
1ca313f
]: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 was generated by Mend Renovate. View the repository job log.