Skip to content

fix(deps): update all dependencies #1057

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: master
Choose a base branch
from
Open

fix(deps): update all dependencies #1057

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 5, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) 7.26.10 -> 7.27.1 age adoption passing confidence devDependencies minor
@babel/preset-env (source) 7.26.9 -> 7.27.2 age adoption passing confidence devDependencies minor
@babel/preset-typescript (source) 7.27.0 -> 7.27.1 age adoption passing confidence devDependencies patch
@changesets/cli (source) 2.29.2 -> 2.29.4 age adoption passing confidence devDependencies patch
@commitlint/cli (source) 19.8.0 -> 19.8.1 age adoption passing confidence devDependencies patch
@commitlint/config-conventional (source) 19.8.0 -> 19.8.1 age adoption passing confidence devDependencies patch
@manypkg/cli (source) 0.23.0 -> 0.24.0 age adoption passing confidence devDependencies minor
@opentelemetry/auto-instrumentations-node (source) ^0.58.0 -> ^0.59.0 age adoption passing confidence dependencies minor
@opentelemetry/exporter-metrics-otlp-http (source) ^0.200.0 -> ^0.201.0 age adoption passing confidence dependencies minor
@opentelemetry/sdk-node (source) ^0.200.0 -> ^0.201.0 age adoption passing confidence dependencies minor
@types/node (source) 22.15.3 -> 22.15.18 age adoption passing confidence devDependencies patch
cimg/node 22.15.0 -> 22.15.1 age adoption passing confidence docker patch
cimg/node 20.19.1 -> 20.19.2 age adoption passing confidence docker patch
esbuild 0.25.3 -> 0.25.4 age adoption passing confidence devDependencies patch
lint-staged 15.5.1 -> 15.5.2 age adoption passing confidence devDependencies patch
node (source) 22.15.0 -> 22.15.1 age adoption passing confidence patch
ts-jest (source) 29.3.2 -> 29.3.4 age adoption passing confidence devDependencies patch
typedoc (source) 0.28.3 -> 0.28.4 age adoption passing confidence devDependencies patch
webpack 5.99.7 -> 5.99.8 age adoption passing confidence devDependencies patch

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
changesets/changesets (@​changesets/cli)

v2.29.4

Compare Source

Patch Changes

v2.29.3

Compare Source

Patch Changes
conventional-changelog/commitlint (@​commitlint/cli)

v19.8.1

Compare Source

Bug Fixes
conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.8.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

Thinkmill/manypkg (@​manypkg/cli)

v0.24.0

Compare Source

Minor Changes
Patch Changes
open-telemetry/opentelemetry-js-contrib (@​opentelemetry/auto-instrumentations-node)

v0.59.0

Compare Source

v0.58.1

Compare Source

open-telemetry/opentelemetry-js (@​opentelemetry/exporter-metrics-otlp-http)

v0.201.0

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.

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

v15.5.2

Compare Source

Patch Changes
nodejs/node (node)

v22.15.1

Compare Source

kulshekhar/ts-jest (ts-jest)

v29.3.4

Compare Source

Bug Fixes
  • fix: fix TsJestTransformerOptions type (3b11e29), closes #​4247
  • fix(cli): fix wrong path for preset creator fns (249eb2c)
  • fix(config): disable rewriteRelativeImportExtensions always (9b1f472), closes #​4855

v29.3.3

Compare Source

Bug Fixes
TypeStrong/TypeDoc (typedoc)

v0.28.4

Compare Source

Features
  • The navigation in the default theme will now attempt to break long names onto multiple lines, #​2940.
  • Added German (de) localization, #​2941.
Bug Fixes
  • TypeDoc's default theme now uses the same chevron for all collapsible elements, #​2924
    The chevronSmall helper is now deprecated and will be removed with v0.29.0.
  • Classes/interfaces marked with @hidden will no longer appear in the
    "Hierarchy" section of the docs.
  • TypeDoc now handles wildcard JSDoc types, #​2949.
Thanks!
webpack/webpack (webpack)

v5.99.8

Compare Source

Fixes
  • Fixed type error with latest @types/node
  • Fixed typescript types

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 is behind base branch, 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 requested a review from a team as a code owner May 5, 2025 03:32
Copy link

changeset-bot bot commented May 5, 2025

⚠️ No Changeset found

Latest commit: 5c5dda4

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/all branch 12 times, most recently from 4dfc651 to 212a12b Compare May 8, 2025 16:09
@renovate renovate bot force-pushed the renovate/all branch 11 times, most recently from d34b5ef to 96e9f7b Compare May 15, 2025 20:16
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies May 15, 2025
@renovate renovate bot force-pushed the renovate/all branch from 96e9f7b to 5c5dda4 Compare May 16, 2025 23:32
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