Skip to content

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

Merged
yyxi merged 1 commit intotrunkfrom
renovate/all-minor-patch
May 22, 2025
Merged

fix(deps): update all non-major dependencies#80
yyxi merged 1 commit intotrunkfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 19.7.1 -> 19.8.1 age adoption passing confidence
@commitlint/config-conventional (source) 19.7.1 -> 19.8.1 age adoption passing confidence
@types/node (source) 22.15.3 -> 22.15.18 age adoption passing confidence
@vitest/coverage-v8 (source) 3.1.2 -> 3.1.3 age adoption passing confidence
browserslist ^4.24.4 -> ^4.24.5 age adoption passing confidence
esbuild 0.25.3 -> 0.25.4 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
execa ^9.5.2 -> ^9.5.3 age adoption passing confidence
knip (source) 5.43.6 -> 5.56.0 age adoption passing confidence
lefthook 1.10.10 -> 1.11.12 age adoption passing confidence
lightningcss ^1.29.3 -> ^1.30.1 age adoption passing confidence
type-fest 4.40.1 -> 4.41.0 age adoption passing confidence
vitest (source) 3.1.2 -> 3.1.3 age adoption passing confidence
zod (source) 3.24.3 -> 3.24.4 age adoption passing confidence
zod (source) ^3.24.3 -> ^3.24.4 age adoption passing confidence

Release Notes

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

v19.8.1

Compare Source

Bug Fixes

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

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

v19.8.1

Compare Source

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

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

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

vitest-dev/vitest (@​vitest/coverage-v8)

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
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

webpro-nl/knip (knip)

v5.56.0

Compare Source

v5.55.1

Compare Source

  • Update Node.js versions in CI (09a158b)
  • Update plugin authoring guide (b9bf354)
  • Update sponsors info (2014ac0)
  • Leverage isProduction better in webpack config (779948d)
  • Add smoke test command to dev guide (59b23cf)
  • Consistent messages in streamer.cast (1b2866b)
  • Add exports to ignored binaries list (7073b68)
  • Edit docs (ffc3cac)
  • Remove obsolete installed-check flag (61b65eb)
  • Use minimum supported node version in CI (almost!) (7787123)

v5.55.0

Compare Source

v5.54.1

Compare Source

v5.54.0

Compare Source

v5.53.0

Compare Source

  • Remove unused script (d6484de)
  • Add --force and --graceful options to create-plugin script (063db24)
  • Add SVGO plugin (#​1065) (5d68767) - thanks @​azat-io!
  • Replace pretty-ms with prettyMilliseconds fn (d383899)
  • Add mem flags, observer & table to Performance (dabb874)
  • Fix --isolate-workspaces flag to gc principals (b75c872)
  • Fix and optimize git-ignore cache (c1c8e8c)

v5.52.0

Compare Source

  • Use default entries w/o config file (fixes #​1063) (01a8e65)
  • Fix negated glob pattern for ignored workspacea (28d9b4c)
  • Don't bail out early for --filter if also -r in pnpm resolver (48e49a7)
  • Replace easy-table with new Table (cd70e95)

v5.51.1

Compare Source

v5.51.0

Compare Source

v5.50.5

Compare Source

  • Add jiti to "positionals" (resolves #​1033) (08a4688)
  • Group some scripts tests (edf56e0)
  • Fix starlight social config (cc51eaa)
  • Support ignoreUnresolved from top-level and root ws config (resolves #​1032) (852298b)
  • Update docs re. production mode (3b142b1)

v5.50.4

Compare Source

  • Don't exclude (dist) files with js ext from being source mapped (b39ac44)
  • Mark simple-git-hooks as used dependency when config exists (#​1027) (78f8cf4) - thanks @​azat-io!
  • Update docs dependencies (a8b44f6)

v5.50.3

Compare Source

  • Include empty named import declaration (d958e90)
  • Use pnpm workspaces over package.json workspaces (330e918)
  • Update comment (e8fcd87)
  • Revert and improve fix for #​1024 (3db59f7)

v5.50.2

Compare Source

v5.50.1

Compare Source

  • Revert "Remove unused TS config options"

This reverts commit d1686e2. (731fe7e)

v5.50.0

Compare Source

v5.49.0

Compare Source

v5.48.0

Compare Source

v5.47.0

Compare Source

v5.46.5

Compare Source

v5.46.4

Compare Source

  • fix: Fix the issue where the built-in Vue compiler only supports <scr… (#​997)
  • Update dependencies (16667d1)

v5.46.3

Compare Source

v5.46.2

Compare Source

  • npm pkg fix (52e2f1f)
  • Upgrade release-it (80281f7)
  • Make server.js production entry in node plugin (89f59f1)
  • Make entry points coming from plugins optional in production mode (resolves #​1000) (f26f95f)

v5.46.1

Compare Source


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

@renovate renovate bot added the dependencies Concerns or updates related to external libraries or packages label Apr 28, 2025
@socket-security
Copy link

socket-security bot commented Apr 28, 2025

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 6423312 to ef69a5f Compare April 30, 2025 06:14
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies - autoclosed May 1, 2025
@renovate renovate bot closed this May 1, 2025
@renovate renovate bot deleted the renovate/all-minor-patch branch May 1, 2025 06:24
@renovate renovate bot changed the title fix(deps): update all non-major dependencies - autoclosed fix(deps): update all non-major dependencies May 5, 2025
@renovate renovate bot reopened this May 5, 2025
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies May 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from b549304 to 553fd7c Compare May 9, 2025 16:44
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies May 9, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1ffeb18 to ae44c51 Compare May 10, 2025 14:20
@socket-security
Copy link

socket-security bot commented May 10, 2025

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 3ec6d0d to 2bbfa15 Compare May 12, 2025 23:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 8cfb3e8 to 150987d Compare May 19, 2025 20:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 150987d to 522384d Compare May 21, 2025 06:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 522384d to e4b9b02 Compare May 21, 2025 19:22
@yyxi yyxi merged commit 77ef643 into trunk May 22, 2025
11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Concerns or updates related to external libraries or packages

Development

Successfully merging this pull request may close these issues.

1 participant