Skip to content
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

fix(deps): update all dependencies #186

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

fix(deps): update all dependencies #186

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 4, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@libp2p/interface (source) 2.6.1 -> 2.7.0 age adoption passing confidence dependencies minor
@libp2p/logger (source) 5.1.11 -> 5.1.13 age adoption passing confidence dependencies patch
@typescript-eslint/eslint-plugin (source) 8.26.0 -> 8.26.1 age adoption passing confidence devDependencies patch
@typescript-eslint/parser (source) 8.26.0 -> 8.26.1 age adoption passing confidence devDependencies patch
esbuild 0.25.0 -> 0.25.1 age adoption passing confidence devDependencies patch
eslint (source) 9.21.0 -> 9.22.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 10.0.2 -> 10.1.1 age adoption passing confidence devDependencies minor
github.com/aperturerobotics/util v1.28.1 -> v1.29.0 age adoption passing confidence require minor
github.com/coder/websocket v1.8.12 -> v1.8.13 age adoption passing confidence require patch
github.com/evanw/esbuild v0.25.0 -> v0.25.1 age adoption passing confidence require patch
github.com/golangci/golangci-lint v1.64.6 -> v1.64.7 age adoption passing confidence require patch
github.com/libp2p/go-yamux/v4 v4.0.1 -> v5.0.0 age adoption passing confidence require major
github/codeql-action v3.28.10 -> v3.28.11 age adoption passing confidence action patch
go (source) 1.24.0 -> 1.24.1 age adoption passing confidence toolchain patch
golang.org/x/tools v0.30.0 -> v0.31.0 age adoption passing confidence require minor
it-first (source) 3.0.6 -> 3.0.7 age adoption passing confidence dependencies patch
lint-staged 15.4.3 -> 15.5.0 age adoption passing confidence devDependencies minor
vitest (source) 3.0.7 -> 3.0.8 age adoption passing confidence devDependencies patch

Release Notes

libp2p/js-libp2p (@​libp2p/interface)

v2.7.0

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.26.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unsafe-return] handle recursive type (#​10883)
  • eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as eligible for nullish coalescing (#​10865)
❤️ Thank You

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.26.1

Compare 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.

evanw/esbuild (esbuild)

v0.25.1

Compare Source

  • Fix incorrect paths in inline source maps (#​4070, #​4075, #​4105)

    This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.

  • Fix invalid generated source maps (#​4080, #​4082, #​4104, #​4107)

    This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.

    This fix was contributed by @​jridgewell.

  • Fix a regression with non-file source map paths (#​4078)

    The format of paths in source maps that aren't in the file namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from file paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a : character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.

  • Fix a crash with switch optimization (#​4088)

    The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:

    switch (x) {
      case '':
        return y.map(z => z.value)
      case y.map(z => z.key).join(','):
        return []
    }
  • Update Go from 1.23.5 to 1.23.7 (#​4076, #​4077)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.

    This PR was contributed by @​MikeWillCook.

eslint/eslint (eslint)

v9.22.0

Compare Source

prettier/eslint-config-prettier (eslint-config-prettier)

v10.1.1

Compare Source

Patch Changes
  • #​309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also #​308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

v10.1.0

Compare Source

Minor Changes

v10.0.3

Compare Source

Patch Changes
aperturerobotics/util (github.com/aperturerobotics/util)

v1.29.0

Compare Source

coder/websocket (github.com/coder/websocket)

v1.8.13

Compare Source

Changes

Full Changelog: coder/websocket@v1.8.12...v1.8.13

golangci/golangci-lint (github.com/golangci/golangci-lint)

v1.64.7

Compare Source

  1. Linters bug fixes
    • depguard: from 2.2.0 to 2.2.1
    • dupl: from 3e9179a to f665c8d
    • gosec: from 2.22.1 to 2.22.2
    • staticcheck: from 0.6.0 to 0.6.1
  2. Documentation
    • Add GitLab documentation
libp2p/go-yamux (github.com/libp2p/go-yamux/v4)

v5.0.0

Compare Source

What's Changed

Full Changelog: libp2p/go-yamux@v4.0.2...v5.0.0

v4.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: libp2p/go-yamux@v4.0.1...v4.0.2

github/codeql-action (github/codeql-action)

v3.28.11

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.28.11 - 07 Mar 2025
  • Update default CodeQL bundle version to 2.20.6. #​2793

See the full CHANGELOG.md for more information.

golang/go (go)

v1.24.1

achingbrain/it (it-first)

v3.0.7

Compare Source

Bug Fixes
Trivial Changes
Dependencies
lint-staged/lint-staged (lint-staged)

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes
vitest-dev/vitest (vitest)

v3.0.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

Copy link
Contributor Author

renovate bot commented Mar 4, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa -> v0.0.0-20250228200357-dead58393ab7
File name: tools/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 10 additional dependencies were updated

Details:

Package Change
github.com/OpenPeeDeeP/depguard/v2 v2.2.0 -> v2.2.1
github.com/aperturerobotics/util v1.28.1 -> v1.29.0
github.com/coder/websocket v1.8.13-0.20240815203528-e46e0200618d -> v1.8.13
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a -> v0.0.0-20250308024227-f665c8d69b32
github.com/securego/gosec/v2 v2.22.1 -> v2.22.2
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa -> v0.0.0-20250228200357-dead58393ab7
golang.org/x/mod v0.23.0 -> v0.24.0
golang.org/x/sync v0.11.0 -> v0.12.0
golang.org/x/sys v0.30.0 -> v0.31.0
honnef.co/go/tools v0.6.0 -> v0.6.1

Copy link

socket-security bot commented Mar 4, 2025

New and updated dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@esbuild/[email protected]0.25.1 None 0 11.3 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 12.1 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.7 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 12.1 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.82 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.5 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.5 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.2 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.7 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.57 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.65 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.9 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 11.1 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.96 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.57 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.7 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.2 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.5 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.2 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.57 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.2 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.2 MB esbuild, evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.64 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 9.92 MB evanw
npm/@esbuild/[email protected]0.25.1 None 0 10.5 MB esbuild, evanw
npm/@eslint-community/[email protected]4.5.1 None +1 414 kB eslint-community-bot, michaeldeboey
npm/@eslint/[email protected] None 0 53.9 kB eslintbot
npm/@eslint/[email protected]9.22.0 None 0 14.9 kB eslintbot, openjsfoundation
npm/@libp2p/[email protected]2.7.0 None 0 337 kB npm-service-account-libp2p
npm/@libp2p/[email protected]5.1.13 None 0 41.5 kB achingbrain, alanshaw, daviddias, ...3 more
npm/@rollup/[email protected]4.35.0 None 0 1.69 MB lukastaegert
npm/@rollup/[email protected]4.35.0 None 0 2.36 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.34 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.54 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.18 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.56 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.34 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.34 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.27 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.17 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.66 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.96 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.44 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 4.05 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.57 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.55 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.9 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/[email protected]4.35.0 None 0 2.69 MB lukastaegert
npm/@rollup/[email protected]4.35.0 None 0 3.58 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@types/[email protected]22.13.10 None 0 2.31 MB types
npm/@typescript-eslint/[email protected]8.26.1 None 0 0 B
npm/@typescript-eslint/[email protected]8.26.1 None 0 14.5 kB bradzacher, jameshenry
npm/@typescript-eslint/[email protected]8.26.1 None 0 0 B
npm/@typescript-eslint/[email protected]8.26.1 None 0 0 B
npm/@typescript-eslint/[email protected]8.26.1 None 0 0 B
npm/@typescript-eslint/[email protected]8.26.1 None 0 412 kB bradzacher, jameshenry
npm/@typescript-eslint/[email protected]8.26.1 None 0 0 B
npm/@typescript-eslint/[email protected]8.26.1 None 0 0 B
npm/@vitest/[email protected]3.0.8 None 0 185 kB antfu, oreanno, patak, ...1 more
npm/@vitest/[email protected]3.0.8 None +1 17.6 kB
npm/@vitest/[email protected]3.0.8 None 0 0 B
npm/@vitest/[email protected]3.0.8 None 0 0 B
npm/@vitest/[email protected]3.0.8 None 0 0 B
npm/@vitest/[email protected]3.0.8 None 0 0 B
npm/@vitest/[email protected]3.0.8 None 0 0 B
npm/[email protected]8.14.1 None 0 547 kB marijn
npm/[email protected]0.25.1 None 0 134 kB evanw
npm/[email protected]10.1.1 None 0 58.4 kB jounqin, lydell, thorn0
npm/[email protected]8.3.0 None 0 155 kB eslintbot, ivolodin, nzakas, ...1 more
npm/[email protected]9.22.0 None +2 18.8 kB
npm/[email protected]3.0.7 None 0 10.8 kB achingbrain
npm/[email protected]15.5.0 None +2 725 kB
npm/[email protected]3.3.9 None 0 56.6 kB ai
npm/[email protected]4.35.0 None 0 2.7 MB eventualbuddha, lukastaegert, rich_harris, ...2 more
npm/[email protected]3.0.8 None 0 0 B
npm/[email protected]6.2.2 None 0 2.85 MB antfu, patak, soda, ...2 more
npm/[email protected]3.0.8 None 0 1.6 MB vitestbot

View full report↗︎

@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from bb45447 to 2a0e751 Compare March 11, 2025 13:53
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from cd77b26 to faa44cb Compare March 13, 2025 18:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

0 participants