Skip to content

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

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.26.10 -> ^7.27.1 age adoption passing confidence
@babel/plugin-proposal-pipeline-operator (source) ^7.26.7 -> ^7.27.1 age adoption passing confidence
@babel/plugin-transform-react-jsx-development (source) ^7.25.9 -> ^7.27.1 age adoption passing confidence
@babel/plugin-transform-react-jsx-self (source) ^7.25.9 -> ^7.27.1 age adoption passing confidence
@babel/plugin-transform-react-jsx-source (source) ^7.25.9 -> ^7.27.1 age adoption passing confidence
@eslint/js (source) ^9.25.1 -> ^9.26.0 age adoption passing confidence
@swc/plugin-emotion (source) ^9.0.3 -> ^9.0.4 age adoption passing confidence
@swc/plugin-styled-components (source) ^7.1.3 -> ^7.1.5 age adoption passing confidence
@types/node (source) ^22.15.2 -> ^22.15.18 age adoption passing confidence
@types/react (source) ^19.1.2 -> ^19.1.4 age adoption passing confidence
@types/react-dom (source) ^19.1.2 -> ^19.1.5 age adoption passing confidence
babel-plugin-react-compiler (source) 19.1.0-rc.1 -> 19.1.0-rc.2 age adoption passing confidence
esbuild ^0.25.3 -> ^0.25.4 age adoption passing confidence
eslint (source) ^9.25.1 -> ^9.26.0 age adoption passing confidence
eslint-plugin-import-x ^4.11.0 -> ^4.11.1 age adoption passing confidence
eslint-plugin-n ^17.17.0 -> ^17.18.0 age adoption passing confidence
globals ^16.0.0 -> ^16.1.0 age adoption passing confidence
lint-staged ^15.5.1 -> ^15.5.2 age adoption passing confidence
pnpm (source) 10.9.0 -> 10.11.0 age adoption passing confidence
react-compiler-runtime (source) 19.1.0-rc.1 -> 19.1.0-rc.2 age adoption passing confidence
react-router-dom (source) ^7.5.2 -> ^7.6.0 age adoption passing confidence
styled-components (source) ^6.1.17 -> ^6.1.18 age adoption passing confidence
tsx (source) ^4.19.3 -> ^4.19.4 age adoption passing confidence
typescript-eslint (source) ^8.31.0 -> ^8.32.1 age adoption passing confidence
vite (source) ^6.3.5 -> ^6.3.10 age adoption passing confidence
vitest (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.27.1

Compare Source

👓 Spec Compliance
🐛 Bug Fix
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-traverse
  • babel-helper-wrap-function, babel-plugin-transform-async-to-generator
  • babel-helper-remap-async-to-generator, babel-plugin-transform-async-to-generator
  • babel-helper-fixtures, babel-parser
  • babel-generator, babel-parser
    • #​17226 Fill optional AST properties when both estree and typescript parser plugin are enabled (Part 2) (@​JLHwung)
  • babel-parser
  • babel-compat-data, babel-preset-env
  • babel-traverse
  • babel-generator
💅 Polish
  • babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-proposal-decorators, babel-plugin-transform-arrow-functions, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-traverse
🏠 Internal
  • babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-compat-data, babel-preset-env
  • babel-compat-data, babel-standalone
  • Other
  • babel-register
  • babel-cli, babel-compat-data, babel-core, babel-generator, babel-helper-compilation-targets, babel-helper-fixtures, babel-helper-module-imports, babel-helper-module-transforms, babel-helper-plugin-test-runner, babel-helper-transform-fixture-test-runner, babel-helpers, babel-node, babel-parser, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-modules-umd, babel-plugin-transform-react-display-name, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-preset-env, babel-register, babel-standalone, babel-types
  • babel-plugin-transform-regenerator
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3
  • babel-helpers, babel-plugin-transform-regenerator
  • babel-helpers
🔬 Output optimization
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs3
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3
eslint/eslint (@​eslint/js)

v9.26.0

Compare Source

swc-project/plugins (@​swc/plugin-emotion)

v9.0.4

Patch Changes
swc-project/plugins (@​swc/plugin-styled-components)

v7.1.5

Patch Changes
  • 0d14c35: Use correct span hygiene

v7.1.4

Patch Changes
facebook/react (babel-plugin-react-compiler)

v19.1.0-rc.2

Compare Source

evanw/esbuild (esbuild)

v0.25.4

Compare Source

  • Add simple support for CORS to esbuild's development server (#​4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {
          origin: 'https://example.com',
        },
      })
    • Go:

      ctx, _ := api.Context(api.BuildOptions{})
      ctx.Serve(api.ServeOptions{
        Servedir: ".",
        CORS: api.CORSOptions{
          Origin: []string{"https://example.com"},
        },
      })

    The special origin * can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.

  • Pass through invalid URLs in source maps unmodified (#​4169)

    This fixes a regression in version 0.25.0 where sources in source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation of sources from file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs in sources should now be passed through unmodified.

  • Handle exports named __proto__ in ES modules (#​4162, #​4163)

    In JavaScript, the special property name __proto__ sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named __proto__ so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.

    This fix was contributed by @​magic-akari.

eslint/eslint (eslint)

v9.26.0

Compare Source

un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.11.1

Compare Source

Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.18.0

Compare Source

🌟 Features
  • Allow to use tryExtensions in the rule no-unpublished-import (#​429) (002ac9c)
  • no-deprecated-api: Add support for process.getBuiltinModule() (#​435) (fca7cf4)
  • node-builtins: Add support for process.getBuiltinModule() (#​433) (d4c7831)
  • prefer-global: Add support for process.getBuiltinModule() (#​436) (83aa3a7)
  • prefer-node-protocol: Add support for process.getBuiltinModule() (#​430) (9e97d8e)
  • prefer-promises: Add support for process.getBuiltinModule() (#​437) (6f5e81d)
🩹 Fixes
  • false negatives for https in prefer-node-protocol, and false negatives for node:sqlite in node-builtins (#​432) (bb21bd0)
sindresorhus/globals (globals)

v16.1.0

Compare Source


lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes
pnpm/pnpm (pnpm)

v10.11.0

Compare Source

Minor Changes
  • A new setting added for pnpm init to create a package.json with type=module, when init-type is module. Works as a flag for the init command too #​9463.

  • Added support for Nushell to pnpm setup #​6476.

  • Added two new flags to the pnpm audit command, --ignore and --ignore-unfixable #​8474.

    Ignore all vulnerabilities that have no solution:

    > pnpm audit --ignore-unfixable

    Provide a list of CVE's to ignore those specifically, even if they have a resolution.

    > pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678
  • Added support for recursively running pack in every project of a workspace #​4351.

    Now you can run pnpm -r pack to pack all packages in the workspace.

Patch Changes
  • pnpm version management should work, when dangerouslyAllowAllBuilds is set to true #​9472.
  • pnpm link should work from inside a workspace #​9506.
  • Set the default workspaceConcurrency to Math.min(os.availableParallelism(), 4) #​9493.
  • Installation should not exit with an error if strictPeerDependencies is true but all issues are ignored by peerDependencyRules #​9505.
  • Read updateConfig from pnpm-workspace.yaml #​9500.
  • Add support for recursive pack
  • Remove url.parse usage to fix warning on Node.js 24 #​9492.
  • pnpm run should be able to run commands from the workspace root, if ignoreScripts is set tot true #​4858.

v10.10.0

Compare Source

Minor Changes
  • Allow loading the preResolution, importPackage, and fetchers hooks from local pnpmfile.
Patch Changes
  • Fix cd command, when shellEmulator is true #​7838.
  • Sort keys in pnpm-workspace.yaml #​9453.
  • Pass the npm_package_json environment variable to the executed scripts #​9452.
  • Fixed a mistake in the description of the --reporter=silent option.
facebook/react (react-compiler-runtime)

v19.1.0-rc.2

Compare Source

remix-run/react-router (react-router-dom)

v7.6.0

Compare Source

Patch Changes

v7.5.3

Compare Source

Patch Changes
styled-components/styled-components (styled-components)

v6.1.18

Compare Source

privatenumber/tsx (tsx)

v4.19.4

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.32.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.32.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.31.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/rolldown-vite (vite)

v6.3.10

Compare Source

v6.3.9

Compare Source

v6.3.8

Compare Source

v6.3.7

Compare Source

v6.3.6

Compare Source

vitest-dev/vitest (vitest)

v3.1.3

Compare Source

   🐞 Bug Fixes

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.


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

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

@renovate renovate bot changed the title chore(deps): update pnpm to v10.10.0 chore(deps): update all non-major dependencies Apr 28, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ac4878e to c2f90ad Compare April 28, 2025 22:56
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 28, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 732aad2 to e1a59cb Compare May 6, 2025 03:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 7f616ba to b46e201 Compare May 12, 2025 22:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7b9f043 to d434f23 Compare May 15, 2025 03:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d434f23 to a91bc1b Compare May 16, 2025 06:13
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.

0 participants