fix(deps): update all non-major dependencies #540
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.20250705.0->^4.20250712.0^9.30.1->^9.31.0^1.15.0->^1.16.0^8.1.2->^8.1.3^8.1.2->^8.1.3^9.35.0->^9.38.0^9.35.0->^9.38.0^9.35.0->^9.38.0^8.35.1->^8.36.0^8.35.1->^8.36.0^0.25.5->^0.25.6^9.30.1->^9.31.0^4.8.4->^4.8.5^24.11.2->^24.12.1^8.35.1->^8.36.0^3.5.1->^3.5.2^4.23.0->^4.24.3^3.25.74->^3.25.76^8.6.1->^8.7.1Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20250712.0Compare Source
v4.20250711.0Compare Source
v4.20250710.0Compare Source
v4.20250709.0Compare Source
v4.20250708.0Compare Source
eslint/eslint (@eslint/js)
v9.31.0Compare Source
honojs/node-server (@hono/node-server)
v1.16.0Compare Source
What's Changed
Full Changelog: honojs/node-server@v1.15.0...v1.16.0
mantinedev/mantine (@mantine/core)
v8.1.3Compare Source
What's Changed
[@mantine/core]Container: Fix base responsive props value not being handled correctly (#8054)[@mantine/form]Fix type errors with read only array types (#7950)[@mantine/core]Fix incorrect disabled border color of Checkbox, Radio and Slider (#8053)[@mantine/core]Combobox: Fixaria-expandedattribute not being assigned correctly to combobox target[@mantine/core]Menu: Fix SubMenu having visual arrow offset when default props are set for Popover on theme (#8027)[@mantine/form]Fixform.resetFieldnot updating DOM withmode: 'uncontrolled'(#8050)[@mantine/form]Add option to triggerwatchcallbacks when nested field value changes (#8026)[@mantine/hooks]use-move: Fix React 18 compatibility (#8018)[@mantine/dates]DateTimePicker: AdddefaultDateprop support (#8023)[@mantine/dates]DatePickerInput: Fixsize="xsbeing slightly different from other inputs[@mantine/dates]TimePicker: Fix dropdown being visible even whenwithDropdown={false}is set[@mantine/core]Popover: FixonClicknot firing on the child of Popover.Target[@mantine/spotlight]Fix incorrectqueryprop with empty string handling[@mantine/core]Text: Fix autocomplete not working forsizeprop[@mantine/hooks]use-debounced-callback: Fix incorrectleadingbehavior (#8021)[@mantine/core]Collapse: AddkeepMountedprop support (#8013)[@mantine/date]TimePicker: FixdisabledandreadOnlyprops not working (#8011)New Contributors
Full Changelog: mantinedev/mantine@8.1.2...8.1.3
getsentry/sentry-javascript (@sentry/react)
v9.38.0Compare Source
Important Changes
This release publishes the
@sentry/node-nativeSDK.Other Changes
debugto replacelogger(#16906)nextHopProtocolwhen adding resource spans (#16900)Bundle size 📦
v9.37.0Compare Source
Important Changes
feat(nuxt): Parametrize SSR routes (#16843)
When requesting dynamic or catch-all routes in Nuxt, those will now be shown as parameterized routes in Sentry.
For example,
/users/123will be shown as/users/:userId()in Sentry. This will make it easier to identify patterns and make grouping easier.Other Changes
beforeStartNavigationSpanlifecycle hook (#16863)wrapRequestHandler(#16852)instrumentation-client.ts|js(#16855)redirect()calls as errors in Cloudflare (#16853)deleteSourcemapsAfterUploadjsdoc default value (#16867)Work in this release was contributed by @zachkirsch. Thank you for your contribution!
Bundle size 📦
v9.36.0Compare Source
Important Changes
This release adds a new SDK
@sentry/node-corewhich ships without any OpenTelemetry instrumententation out of the box. All OpenTelemetry dependencies are peer dependencies and OpenTelemetry has to be set up manually.Use
@sentry/node-corewhen:Use
@sentry/nodewhen:The ANR integration has been deprecated and will be removed in future versions. Use
eventLoopBlockIntegrationfrom@sentry/node-nativeinstead._experiments.ignoreMutationsoption (#16816)This replay option allows to configure a selector list of elements to not capture mutations for.
Other changes
@sentry/replay-internal(#16794)diagnoseSdkConnectivityrequest (#16840)Work in this release was contributed by @Spice-King and @stayallive. Thank you for your contributions!
Bundle size 📦
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.36.0Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/utils)
v8.36.0Compare Source
🚀 Features
basePathintseslint.config()(#11357)❤️ Thank You
You can read about our versioning strategy and releases on our website.
evanw/esbuild (esbuild)
v0.25.6Compare Source
Fix a memory leak when
cancel()is used on a build context (#4231)Calling
rebuild()followed bycancel()in rapid succession could previously leak memory. The bundler uses a producer/consumer model internally, and the resource leak was caused by the consumer being termianted while there were still remaining unreceived results from a producer. To avoid the leak, the consumer now waits for all producers to finish before terminating.Support empty
:is()and:where()syntax in CSS (#4232)Previously using these selectors with esbuild would generate a warning. That warning has been removed in this release for these cases.
Improve tree-shaking of
trystatements in dead code (#4224)With this release, esbuild will now remove certain
trystatements if esbuild considers them to be within dead code (i.e. code that is known to not ever be evaluated). For example:Consider negated bigints to have no side effects
While esbuild currently considers
1,-1, and1nto all have no side effects, it didn't previously consider-1nto have no side effects. This is because esbuild does constant folding with numbers but not bigints. However, it meant that unused negative bigint constants were not tree-shaken. With this release, esbuild will now consider these expressions to also be side-effect free:Support a configurable delay in watch mode before rebuilding (#3476, #4178)
The
watch()API now takes adelayoption that lets you add a delay (in milliseconds) before rebuilding when a change is detected in watch mode. If you use a tool that regenerates multiple source files very slowly, this should make it more likely that esbuild's watch mode won't generate a broken intermediate build before the successful final build. This option is also available via the CLI using the--watch-delay=flag.This should also help avoid confusion about the
watch()API's options argument. It was previously empty to allow for future API expansion, which caused some people to think that the documentation was missing. It's no longer empty now that thewatch()API has an option.Allow mixed array for
entryPointsAPI option (#4223)The TypeScript type definitions now allow you to pass a mixed array of both string literals and object literals to the
entryPointsAPI option, such as['foo.js', { out: 'lib', in: 'bar.js' }]. This was always possible to do in JavaScript but the TypeScript type definitions were previously too restrictive.Update Go from 1.23.8 to 1.23.10 (#4204, #4207)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4673 and CVE-2025-22874) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.
Experimental support for esbuild on OpenHarmony (#4212)
With this release, esbuild now publishes the
@esbuild/openharmony-arm64npm package for OpenHarmony. It contains a WebAssembly binary instead of a native binary because Go doesn't currently support OpenHarmony. Node does support it, however, so in theory esbuild should now work on OpenHarmony through WebAssembly.This change was contributed by @hqzing.
eslint/eslint (eslint)
v9.31.0Compare Source
honojs/hono (hono)
v4.8.5Compare Source
What's Changed
Full Changelog: honojs/hono@v4.8.4...v4.8.5
puppeteer/puppeteer (puppeteer)
v24.12.1Compare Source
Miscellaneous Chores
Dependencies
Bug Fixes
v24.12.0Compare Source
Miscellaneous Chores
Dependencies
Bug Fixes
typescript-eslint/typescript-eslint (typescript-eslint)
v8.36.0Compare Source
🚀 Features
basePathintseslint.config()(#11357)❤️ Thank You
You can read about our versioning strategy and releases on our website.
MatteoGabriele/vue-gtag (vue-gtag)
v3.5.2Compare Source
Bug Fixes
cloudflare/workers-sdk (wrangler)
v4.24.3Compare Source
Patch Changes
#9923
c01c4eeThanks @gpanders! - Fix image name resolution when modifying a container application#9833
3743896Thanks @dario-piotrowicz! - fix: ensure that container builds don't disrupt dev hotkey handlingcurrently container builds run during local development (via
wrangler devorstartWorker) prevent the standard hotkeys not to be recognized (most noticeablyctrl+c, preventing developers from existing the process), the changes here ensure that hotkeys are instead correctly handled as expectedUpdated dependencies []:
v4.24.2Compare Source
Patch Changes
80cc834Thanks @edmundhung! - fix: assets only versions upload should include tag and messagev4.24.1Compare Source
Patch Changes
#9765
05adc61Thanks @hasip-timurtas! - Build container images without the user's account ID. This allows containers to be built and verified in dry run mode (where we do not necessarily have the user's account info).When we push the image to the managed registry, we first re-tag the image to include the user's account ID so that the image has the full resolved image name.
Updated dependencies [
bb09e50,25dbe54,3bdec6b]:v4.24.0Compare Source
Minor Changes
#9796
ba69586Thanks @simonabadoiu! - Browser Rendering local mode#9825
49c85c5Thanks @ReppCodes! - Add support for origin_connection_limit to WranglerConfigure connection limits to Hyperdrive via command line options:
--origin-connection-limit: The (soft) maximum number of connections that Hyperdrive may establish to the origin database.#9064
a1181bfThanks @sdnts! - Added anevent-subscriptionssubcommandPatch Changes
#9729
1b3a2b7Thanks @404Wolf! - Set docker build context to the Dockerfile directory whenimage_build_contextis not explicitly provided#9845
dbfa4efThanks @jonboulle! - remove extraneous double spaces from Wrangler help output#9811
fc29c31Thanks @gpanders! - Fix unauthorized errors on "containers images delete".#9813
45497abThanks @gpanders! - Support container image names without account ID#9821
a447d67Thanks @WillTaylorDev! - Preview Aliases: Force alias generation to meet stricter naming requirements.For cases where CI is requesting Wrangler to generate the alias based on the branch name, we want a stricter check around the generated alias name in order to avoid version upload failures. If a valid alias name was not able to be generated, we warn and do not provide an alias (avoiding a version upload failure).
#9840
7c55f9eThanks @dario-piotrowicz! - fix: make sure that the experimentalremoteBindingsflag is properly handled ingetPlatformProxyThere are two issues related to how the experimental
remoteBindingsflag is handled ingetPlatformProxythat are being fixed by this change:experimental_remoteconfiguration flag set on service bindings is incorrectly always taken into account, even ifremoteBindingsis set tofalseexperimental_remoteconfiguration flag of all the other bindings is never taken into account (effectively preventing the bindings to be used in remote mode) since theremoteBindingsflag is not being properly propagated#9801
0bb619aThanks @IRCody! - Containers: Fix issue where setting an image URI instead of dockerfile would incorrectly not update the image#9872
a727db3Thanks @emily-shen! - fix: resolve Dockerfile path relative to the Wrangler config pathThis fixes a bug where Wrangler would not be able to find a Dockerfile if a Wrangler config path had been specified with the
--configflag.#9815
1358034Thanks @gpanders! - Remove --json flag from containers and cloudchamber commands (except for "images list")#9734
1a58bc3Thanks @penalosa! - Make Wrangler warn more loudly if you're missing auth scopes#9748 [
7e3aa1b](https://redirect.github.com/cloudflare/workers-Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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.