Skip to content

chore(deps): update all non-major dependencies - #2995

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#2995
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Aug 24, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
golangci-lint tools patch 2.13.02.13.2 age confidence
golangci/golangci-lint patch v2.13.0v2.13.2 age confidence
golangci/golangci-lint uses-with patch v2.13.0v2.13.2 age confidence
goreleaser tools minor 22.18.0 age confidence
mockery tools patch 3.7.33.7.4 age confidence
mvdan.cc/sh/moreinterp require digest d6550df868c8e8
mvdan.cc/sh/v3 require minor v3.13.2-0.20260817215856-d6550df7ed8dv3.14.0 age confidence
netlify-cli devDependencies minor 27.1.227.4.1 age confidence
node (source) tools minor 24.19.0v24.20.0 age confidence
pnpm (source) packageManager minor 11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd62111.24.0 age confidence
pnpm (source) tools minor 11.22.011.24.0 age confidence
vue (source) devDependencies patch 3.5.413.5.42 age confidence

Release Notes

golangci/golangci-lint (golangci-lint)

v2.13.2

Compare Source

Released on 2026-08-28

  1. Bug fixes
    • Decrease cache entropy
  2. Linters bug fixes
    • iface: from 1.5.0 to 1.5.1
    • staticcheck: from 0.8.0 to 0.8.1
    • unparam: from 3f964bc to 2fa3d84
    • canonicalheader: from v1.1.2 to a temporary fork

v2.13.1

Compare Source

Released on 2026-08-20

  1. Linters bug fixes
    • ginkgolinter: from 0.23.1 to 0.24.0
    • gofmt: from d62b90e to e84e050
    • staticcheck: from 0.8.0-rc.1 to 0.8.0
    • wsl_v5: from 5.8.0 to 5.9.0
goreleaser/goreleaser (goreleaser)

v2.18.0

Compare Source

Announcement

Read the official announcement: Announcing GoReleaser v2.18.

Changelog

New Features
Security updates
Bug fixes
Documentation updates
Other work

Full Changelog: goreleaser/goreleaser@v2.17.1...v2.18.0

Helping out

This release is only possible thanks to all the support of some awesome people!

Want to be one of them?
You can sponsor, get a Pro License or contribute with code.

Where to go next?

GoReleaser logo

v2.17.1

Compare Source

Announcement

Read the official announcement: Announcing GoReleaser v2.17.

Changelog

Bug fixes
Documentation updates
Other work

Full Changelog: goreleaser/goreleaser@v2.17.0...v2.17.1

Helping out

This release is only possible thanks to all the support of some awesome people!

Want to be one of them?
You can sponsor, get a Pro License or contribute with code.

Where to go next?

GoReleaser logo

v2.17.0

Compare Source

Announcement

Read the official announcement: Announcing GoReleaser v2.17.

Changelog

New Features
Security updates
Bug fixes
Documentation updates
Other work

Full Changelog: goreleaser/goreleaser@v2.16.0...v2.17.0

Helping out

This release is only possible thanks to all the support of some awesome people!

Want to be one of them?
You can sponsor, get a Pro License or contribute with code.

Where to go next?

GoReleaser logo

vektra/mockery (mockery)

v3.7.4

Compare Source

What's Changed

New Contributors

Full Changelog: vektra/mockery@v3.7.3...v3.7.4

mvdan/sh (mvdan.cc/sh/v3)

v3.14.0

Compare Source

This release drops support for Go 1.25 and includes many enhancements, particularly in the interpreter, which implements more shell features and fixes many divergences from Bash.

  • cmd/shfmt
    • Add --detect to find shell files by executable bit or shebang - #​944
  • syntax
    • Add Preorder, an iterator over all nodes, complementing Walk
    • Add encoding.TextUnmarshaler implementations for each operator type
    • Support ${ foo;} and ${|foo;} inside double quotes - #​1368
    • Support array elements in {varname} redirects, like exec {fds[3]}>&- - #​719
    • Backslashes inside backquotes within double quotes escape double quotes - #​1083
    • Allow pound signs in associative array keys like ${args[cmd,#]} - #​1285
    • Don't treat # as the start of a comment inside [[ ]] tests - #​1326
    • Don't join then or do with a semicolon when heredocs are pending - #​1047
    • Print a space after ! in arithmetic expressions, avoiding history expansion - #​987
    • Space nested closing parentheses like the opening ones - #​876
    • Make SplitBraces reject malformed sequences and skip backslash escapes - #​1330
    • Zsh: support the ${=name}, ${~name}, and ${^name} prefixes - #​1238
    • Zsh: support the ;| case terminator and leading parentheses for globs - #​1293, #​1279
    • Zsh: parse subscript flag arguments as patterns, and allow [ globs in arrays - #​1278, #​1322
  • syntax/typedjson
    • Encode operators as their syntax form, such as ">>", rather than integers - #​1321
    • Return errors rather than panicking on malformed input
  • interp
    • Add BashOpts to set Bash options like shopt - #​962
    • Add AccessHandler to control file access checks, used by -r and cd - #​1318
    • Add HandlerContext.LastExitStatus, and provide a HandlerContext to stat handlers
    • Implement the help and times builtins, as well as $- - #​1398
    • Implement the ;& and ;;& case terminators - #​1391
    • Implement the -N test operator, and make -nt and -ot follow POSIX - #​1340
    • Support sparse indexed arrays such as a=([5]=x) - #​1373
    • Run files as shell scripts when exec fails with ENOEXEC - #​1065
    • Support empty here-documents, and don't expand quoted ones - #​1390
    • Support js/wasm, where subprocesses and pipes are unavailable
    • Keep the redirections applied by exec with no arguments
    • Only fire the exit trap when the shell exits, rather than after every Run
  • expand
    • Add BracesSeq with a config and error reporting, deprecating Braces
    • Add Variable.Indexes to describe sparse indexed arrays
    • Support integer bases in arithmetic - #​339
    • Short-circuit the arithmetic && and || operators - #​1371
    • Apply per-element operators to quoted array expansions like "${a[@]%o}" - #​1081
    • Make unquoted ${!arr[@]} consistent with the quoted form - #​672
    • Fix many divergences from Bash in arithmetic, string, and brace expansions
    • Reject unsupported Zsh syntax rather than panicking - #​1363
  • pattern
    • Treat an unmatched [ as a literal character, like Bash - #​1372
    • Fix panics and mismatches in bracket expressions, such as [![:space:]]
  • fileutil
    • Recognize dash shebangs as POSIX shell for -ln=auto - #​1307

Consider becoming a sponsor if you benefit from the work that went into this release!

Binaries built on go version go1.27.0 linux/amd64 with:

CGO_ENABLED=0 go build -trimpath -ldflags="-w -s"
netlify/cli (netlify-cli)

v27.4.1

Compare Source

Bug Fixes

v27.4.0

Compare Source

Features
  • status: --json always emits a JSON object for every auth/link state (afc1be1)

v27.3.1

Compare Source

Bug Fixes

v27.3.0

Compare Source

Features
Bug Fixes
nodejs/node (node)

v24.20.0: 2026-08-26, Version 24.20.0 'Krypton' (LTS), @​aduh95

Compare Source

Notable Changes
Commits
  • [1822c0f335] - assert,util: fix TypeError on Maps with null keys (Paul Bouchon) #​64441
  • [b12bcc9ae1] - (SEMVER-MINOR) async_hooks: add using scopes to AsyncLocalStorage (Stephen Belanger) #​61674
  • [984260bf44] - async_hooks: use validateBoolean for trackPromises (Soul Lee) #​64731
  • [ba2612cca2] - benchmark: fix calibrate-n option handling (Luan Muniz) #​64146
  • [236dc4d2d7] - benchmark: add bytes variant to webstreams async-iterator (Matteo Collina) #​64291
  • [b022a1419c] - benchmark: respect stream/iter broadcast backpressure (Trivikram Kamat) #​63314
  • [a290f51f15] - (SEMVER-MINOR) benchmark: add benchmarks for experimental stream/iter (James M Snell) #​62066
  • [465f2bfb74] - buffer: use Clamp conversion in Blob slice (Donghoon Kang) #​64739
  • [74a22cd0c5] - buffer: validate copyArrayBuffer offsets against buffer length (Ilia Alshanetsky) #​63904
  • [21e24208dc] - buffer: normalize lone "\r" in Blob native line endings (Daijiro Wachi) #​64115
  • [ddacb3ff10] - buffer: fix Blob.stream() leaking source buffer (semimikoh) #​63577
  • [49198d2313] - buffer: fix end parameter bugs in indexOf/lastIndexOf (Robert Nagy) #​62711
  • [e2eb88b36b] - (SEMVER-MINOR) buffer: add end parameter (Robert Nagy) #​62390
  • [e2e5c4fe88] - build: update binary-upload to use correct tarball name (Stewart X Addison) #​65282
  • [b78a212553] - build: pin envinfo versions in github actions (Joyee Cheung) #​64117
  • [094fb840aa] - build: add QUIC CI job for PRs matching QUIC related paths (Tim Perry) [#&

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.

@renovate renovate Bot added area: dependencies Changes related to dependency files. area: github actions Pull requests that update GitHub Actions code lang: go Pull requests that update Go code. lang: javascript Pull requests that update Javascript code. labels Aug 24, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 11ec514 to 234d009 Compare August 28, 2026 17:49
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 234d009 to 3a3bfb6 Compare August 28, 2026 23:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area: dependencies Changes related to dependency files. area: github actions Pull requests that update GitHub Actions code lang: go Pull requests that update Go code. lang: javascript Pull requests that update Javascript code.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants