Skip to content

fix(deps): update all non-major dependencies#744

Merged
magne4000 merged 1 commit into
mainfrom
renovate/all-minor-patch
Jun 3, 2026
Merged

fix(deps): update all non-major dependencies#744
magne4000 merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.29.0^7.29.7 age adoption passing confidence
@babel/plugin-syntax-flow (source) ^7.28.6^7.29.7 age adoption passing confidence
@babel/plugin-transform-react-jsx (source) ^7.28.6^7.29.7 age adoption passing confidence
@biomejs/biome (source) 2.4.152.4.16 age adoption passing confidence
@biomejs/wasm-nodejs (source) ^2.4.15^2.4.16 age adoption passing confidence
@cloudflare/vite-plugin (source) ^1.38.0^1.39.2 age adoption passing confidence
@cloudflare/workers-types ^4.20260525.1^4.20260603.1 age adoption passing confidence
@inquirer/prompts (source) ^8.4.3^8.5.2 age adoption passing confidence
@mantine/core (source) ^9.2.1^9.3.0 age adoption passing confidence
@mantine/hooks (source) ^9.2.1^9.3.0 age adoption passing confidence
@netlify/vite-plugin (source) ^2.12.6^2.12.7 age adoption passing confidence
@sentry/react (source) ^10.53.1^10.56.0 age adoption passing confidence
@sentry/solid (source) ^10.53.1^10.56.0 age adoption passing confidence
@sentry/vue (source) ^10.53.1^10.56.0 age adoption passing confidence
@types/react (source) ^19.2.15^19.2.16 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^8.59.4^8.60.1 age adoption passing confidence
@typescript-eslint/parser (source) ^8.59.4^8.60.1 age adoption passing confidence
@typescript-eslint/utils (source) ^8.59.4^8.60.1 age adoption passing confidence
aws-cdk (source) ^2.1124.1^2.1125.0 age adoption passing confidence
browserless (source) ^13.0.0^13.0.7 age adoption passing confidence
cdk (source) ^2.1124.1^2.1125.0 age adoption passing confidence
eslint-plugin-prettier ^5.5.5^5.5.6 age adoption passing confidence
eslint-plugin-vue (source) ^10.9.1^10.9.2 age adoption passing confidence
jiti ^2.6.1^2.7.0 age adoption passing confidence
lucide-react (source) ^1.16.0^1.17.0 age adoption passing confidence
nx (source) ^22.7.3^22.7.5 age adoption passing confidence
oxlint (source) ^1.66.0^1.68.0 age adoption passing confidence
postgres ^3.4.7^3.4.9 age adoption passing confidence
react (source) ^19.2.6^19.2.7 age adoption passing confidence
react-dom (source) ^19.2.6^19.2.7 age adoption passing confidence
rolldown (source) ^1.0.2^1.1.0 age adoption passing confidence
rolldown-plugin-dts ^0.25.0^0.25.2 age adoption passing confidence
tar ^7.5.1^7.5.16 age adoption passing confidence
tsdown (source) ^0.22.0^0.22.1 age adoption passing confidence
tsx (source) ^4.22.3^4.22.4 age adoption passing confidence
typescript-eslint (source) ^8.59.4^8.60.1 age adoption passing confidence
vite (source) ^8.0.14^8.0.16 age adoption passing confidence
vitest (source) ^4.1.7^4.1.8 age adoption passing confidence
vue (source) ^3.5.34^3.5.35 age adoption passing confidence
vue-eslint-parser ^10.4.0^10.4.1 age adoption passing confidence
wrangler (source) ^4.94.0^4.97.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.29.7

Compare Source

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6

Compare Source

v7.29.6 (2026-05-25)

🐛 Bug Fix
Committers: 3
biomejs/biome (@​biomejs/biome)

v2.4.16

Compare Source

Patch Changes
  • #​10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #​10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #​10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #​10358 05c2617 Thanks @​dyc3! - Fixed #​10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #​10300 950247c Thanks @​dyc3! - Fixed #​10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #​9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #​8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #​10425 1948b72 Thanks @​sjh9714! - Fixed #​10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #​10442 001f94f Thanks @​ematipico! - Fixed #​10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #​10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #​10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

    - <span> {{ value }} </span>
    + <span>
    +   {{ value }}
    + </span>
  • #​10365 0a58eb0 Thanks @​Netail! - Fixed #​10361: noUnusedFunctionParameters now mentions the parameter name in the diagnostic.

  • #​10439 df6b867 Thanks @​denbezrukov! - Fixed CSS and SCSS formatting for comments around declaration colons so comments between property names, colons, and values stay at the same boundary as Prettier.

     .selector {
    -  color: /* red, */
    -    blue;
    +  color: /* red, */ blue;
     }
  • #​10344 b30208c Thanks @​siketyan! - Fixed #10123: Corrected the noReactNativeDeepImports source rule to point to the proper upstream rule, so users can migrate from the original rule correctly.

  • #​10328 b59133f Thanks @​dyc3! - Fixed #​10309: Biome no longer adds newlines to Astro frontmatter when linter or assist --write mode is enabled.

biomejs/biome (@​biomejs/wasm-nodejs)

v2.4.16

Compare Source

cloudflare/workers-sdk (@​cloudflare/vite-plugin)

v1.39.2

Compare Source

Patch Changes
  • #​13893 d8a16e7 Thanks @​penalosa! - Add an experimental, internal cf-vite delegate binary

    This adds an experimental bin/cf-vite binary that is spawned by Cloudflare's own parent tooling to drive the plugin as a long-running dev-server subprocess. It is not part of the plugin's public API surface, is not intended to be invoked directly, and its contract may change at any time without notice.

  • #​14117 3c86121 Thanks @​aicayzer! - Forward response headers from the Worker on WebSocket upgrade responses

    Headers set on a new Response(null, { status: 101, webSocket, headers }) returned from the Worker are now propagated to the upgrade response sent to the browser during vite dev. Previously the headers were dropped, so cookies (Set-Cookie) and custom headers (X-*) on WebSocket handshake responses were invisible client-side — even though they were delivered correctly by wrangler dev.

  • Updated dependencies [b210c5e, aec1bb8, e06cbb7, 9a26191, 5565823, 4ef790b, 890fca7, 6fc9777, 337e912, 8e7b74f, e86489a, 42288d4, 65b5f9e, 3a746ac, 64ef9fd, 94b29f7]:

    • wrangler@​4.97.0
    • miniflare@​4.20260601.0

v1.39.1

Compare Source

Patch Changes

v1.39.0

Compare Source

Minor Changes
  • #​13985 c809d30 Thanks @​jamesopstad! - Add assetsOnly (entry Worker) and devOnly (auxiliary Workers) options to the plugin config

    Both options accept a boolean or a function that returns a boolean. The function is evaluated lazily at build time, allowing frameworks to provide the value after initialization.

    Use assetsOnly on the entry Worker to skip building the Worker and instead emit an assets-only Wrangler config to the client output directory. This enables frameworks such as Astro to use the ssr environment during development but produce a fully static app for deployment.

    export default defineConfig({
      plugins: [
        cloudflare({
          assetsOnly: () => isStaticBuild,
        }),
      ],
    });

    Use devOnly on an auxiliary Worker to include it during vite dev but skip it at build time.

    export default defineConfig({
      plugins: [
        cloudflare({
          auxiliaryWorkers: [
            { configPath: "./dev-only-worker/wrangler.jsonc", devOnly: true },
          ],
        }),
      ],
    });
Patch Changes
cloudflare/workerd (@​cloudflare/workers-types)

v4.20260603.1

Compare Source

v4.20260602.1

Compare Source

v4.20260601.1

Compare Source

v4.20260531.1

Compare Source

v4.20260530.1

Compare Source

v4.20260529.1

Compare Source

v4.20260528.1

Compare Source

v4.20260527.1

Compare Source

v4.20260526.1

Compare Source

SBoudrias/Inquirer.js (@​inquirer/prompts)

v8.5.2

Compare Source

  • Fix security warnings in external-editor

v8.5.1

Compare Source

  • Rolled back mute-stream dependency from v4 to v3 to undo breaking compatible engines.
  • Added tooling to prevent regression of the above in the future. This surfaced our min engines already enforced a higher limit, so adjusted the explicit limits to match the current state.

v8.5.0

Compare Source

  • Feat: Read env variable INQUIRER_KEYBINDINGS to enable vim or emacs keybindings; making this a user preference instead of a library author preference. One caveat is doing so disable the search feature in the select prompt. Syntax: INQUIRER_KEYBINDINGS=vim,emacs.
  • Fix: Line wraps would sometime cause the cursor to be mispositioned relative to the input.
  • Chore: Bump dependencies.
mantinedev/mantine (@​mantine/core)

v9.3.0

Compare Source

v9.2.2

Compare Source

What's Changed
  • [@mantine/core] Pill: Fix incorrect overflow handling (#​8929)
  • [@mantine/dates] TimePicker: Fix incorrect am/pm switching in some cases in production builds (#​8911)
  • [@mantine/hooks] use-mask: Fix undo keyboard shortcut not working (#​8927)
  • [@mantine/hooks] use-mask: Fix cursor jumping on paste/cut (#​8926)
  • [@mantine/core] Input: Fix sections misplaced when dir overrides parent direction (#​8905)
  • [@mantine/core] Select: Fix clear button not showing for falsy primitive values (#​8901)
  • [@mantine/core] Fix incorrect attributes type in Modal, Drawer and Spotlight
  • [@mantine/tiptap] Fix controls throwing errors when editor is destroyed/not initialized (#​8900)
  • [@mantine/core] Menu: Add option to pass safe area polygon options down to Menu.Sub (#​8908)
New Contributors

Full Changelog: mantinedev/mantine@9.2.1...9.2.2

mantinedev/mantine (@​mantine/hooks)

v9.3.0

Compare Source

v9.2.2

Compare Source

What's Changed
  • [@mantine/core] Pill: Fix incorrect overflow handling (#​8929)
  • [@mantine/dates] TimePicker: Fix incorrect am/pm switching in some cases in production builds (#​8911)
  • [@mantine/hooks] use-mask: Fix undo keyboard shortcut not working (#​8927)
  • [@mantine/hooks] use-mask: Fix cursor jumping on paste/cut (#​8926)
  • [@mantine/core] Input: Fix sections misplaced when dir overrides parent direction (#​8905)
  • [@mantine/core] Select: Fix clear button not showing for falsy primitive values (#​8901)
  • [@mantine/core] Fix incorrect attributes type in Modal, Drawer and Spotlight
  • [@mantine/tiptap] Fix controls throwing errors when editor is destroyed/not initialized (#​8900)
  • [@mantine/core] Menu: Add option to pass safe area polygon options down to Menu.Sub (#​8908)
New Contributors

Full Changelog: mantinedev/mantine@9.2.1...9.2.2

netlify/primitives (@​netlify/vite-plugin)

v2.12.7

Compare Source

Dependencies
getsent

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jun 3, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
bati 4a2a2d3 Commit Preview URL

Branch Preview URL
Jun 03 2026, 03:20 PM

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c70ce77 to 4a2a2d3 Compare June 3, 2026 15:16
@magne4000 magne4000 merged commit 8409236 into main Jun 3, 2026
171 checks passed
@magne4000 magne4000 deleted the renovate/all-minor-patch branch June 3, 2026 15:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant