Skip to content

build(deps): Bump the go-dependencies group across 1 directory with 12 updates#171

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-dependencies-8201e7641e
Closed

build(deps): Bump the go-dependencies group across 1 directory with 12 updates#171
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-dependencies-8201e7641e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2026

Bumps the go-dependencies group with 9 updates in the / directory:

Package From To
github.com/aws/aws-sdk-go-v2 1.41.1 1.41.2
github.com/aws/aws-sdk-go-v2/config 1.32.7 1.32.10
github.com/aws/aws-sdk-go-v2/service/secretsmanager 1.41.1 1.41.2
github.com/aws/aws-sdk-go-v2/service/ssm 1.67.8 1.68.1
github.com/aymanbagabas/go-udiff 0.3.1 0.4.0
github.com/samber/lo 1.52.0 1.53.0
github.com/urfave/cli/v3 3.6.1 3.7.0
github.com/walles/moor/v2 2.10.1 2.11.0
golang.org/x/crypto 0.47.0 0.48.0

Updates github.com/aws/aws-sdk-go-v2 from 1.41.1 to 1.41.2

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.32.7 to 1.32.10

Commits

Updates github.com/aws/aws-sdk-go-v2/service/secretsmanager from 1.41.1 to 1.41.2

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ssm from 1.67.8 to 1.68.1

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.41.6 to 1.41.7

Commits

Updates github.com/aymanbagabas/go-udiff from 0.3.1 to 0.4.0

Release notes

Sourced from github.com/aymanbagabas/go-udiff's releases.

v0.4.0

This release updates the package to the latest upstream changes and added API methods.

What's Changed

Full Changelog: aymanbagabas/go-udiff@v0.3.1...v0.4.0

Commits
  • 055e3f0 chore: bump minimum Go version to 1.24
  • de325c9 feat(ci): use go.mod to determine Go version in CI
  • 4feebcf fix(lcs): reexport DiffStrings to keep compatibility with previous versions
  • 3525e42 fix(scripts): use sed command
  • 8905c5a chore(ci): update upstream commit hash
  • 2a3862f chore(ci): extract import logic to a script
  • 263cab6 chore: update patches
  • ff72838 fix: preserve upstream formatting
  • 1ac8472 chore: manually import upstream changes
  • 3ca613f fix(ci): update build.yml to use stable go versions
  • Additional commits viewable in compare view

Updates github.com/samber/lo from 1.52.0 to 1.53.0

Release notes

Sourced from github.com/samber/lo's releases.

v1.53.0

Announcing the latest release of lo with lots of good gifts! 🎁

🌊 First, a big thanks to @​d-enk for making lots of performance improvements in the recent weeks.

🧪 Second, this release introduces a new simd experimental package. If you run on an amd64 architecture and a recent CPU, you can perform very fast operations thanks to SIMD CPU instructions. -> Documentation: https://lo.samber.dev/docs/experimental/simd

💥 Third, this version adds *Err variants of many lo helpers (like MapErr, FlatMapErr, ReduceErr, etc.) whose callbacks can return an error and short-circuit execution when one occurs.

[!NOTE] The simd sub-package is considered not stable. We might break the initial API based on developers' feedback in the coming months.


Features & improvements

Deprecation

Performance improvements

... (truncated)

Commits

Updates github.com/urfave/cli/v3 from 3.6.1 to 3.7.0

Release notes

Sourced from github.com/urfave/cli/v3's releases.

v3.7.0

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.6.2...v3.7.0

v3.6.2

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.6.1...v3.6.2

Commits
  • 65ded98 Merge pull request #2269 from TimSoethout/main
  • 600026f Merge pull request #2270 from Maks1mS/feat/dynamic-fish-completion
  • 08fd570 feat: support dynamic fish completion
  • f5d0884 Restore docs/go.mod and docs/go.sum (#5)
  • d895eca Remove docs/go.mod and docs/go.sum (not relevant to PR)
  • 7289ef9 Merge pull request #2 from TimSoethout/copilot/apply-feedback-changes
  • d6047e0 fix(test): set HideHelpCommand on leaf subcommand to properly validate fix
  • 87c2623 Initial plan
  • ffd243e Merge pull request #1 from TimSoethout/fix-2268-global-options-hide-help-command
  • 5effa62 fix: simplify help command visibility logic and add test for hidden help command
  • Additional commits viewable in compare view

Updates github.com/walles/moor/v2 from 2.10.1 to 2.11.0

Release notes

Sourced from github.com/walles/moor/v2's releases.

v2.11.0: Suspend on CTRL-z

Also in this release, filtering is now faster, thanks to @​plutonium-239 in walles/moor#387. Thanks!

v2.10.5: Handle paging non-seekable files

Like this (in bash):

moor <(echo test)

Reported here: walles/moor#385

v2.10.4: Fix bug pressing "n" at the bottom of the input

Before this release, searching for the next hit while at the bottom of the input could sometimes get stuck doing nothing.

With this release, we should now correctly go to "not found" every time.

v2.10.3: Fix two crashes

Repro for crash one, happened when following empty files:

moor --follow /dev/null

Repro for crash two:

  1. moor somefile.txt
  2. Scale terminal window so it's one character high
  3. Press down arrow
  4. Boom!

v2.10.2: Fix truncated lines in man pages

Also in this release:

Commits
  • 54e5c51 Merge pull request #388 from walles/johan/ctrl-z
  • 82cf46f Don't log "resumed" after a failed suspend attempt
  • f04c9c7 Add missing synchronization
  • dcb26b2 Enable Copilot to run test.sh
  • 1f67297 Drop unused function
  • fcf2b86 Actually susspend on CTRL-Z
  • 15a8d75 Move screen setup/teardown into separate methods
  • e0b9ec9 Initial suspend-resume implementation
  • c11014b Merge pull request #387 from plutonium-239/pu239/filtering-optimizations
  • 93db5b5 Fix formatting
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.47.0 to 0.48.0

Commits

Updates golang.org/x/sys from 0.40.0 to 0.41.0

Commits
  • fc646e4 cpu: use IsProcessorFeaturePresent to calculate ARM64 on windows
  • f11c7bb windows: add IsProcessorFeaturePresent and processor feature consts
  • d25a7aa unix: add IoctlSetString on all platforms
  • 6fb913b unix: return early on error in Recvmsg
  • See full diff in compare view

Updates golang.org/x/term from 0.39.0 to 0.40.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…2 updates

Bumps the go-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.1` | `1.41.2` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.32.10` |
| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.41.1` | `1.41.2` |
| [github.com/aws/aws-sdk-go-v2/service/ssm](https://github.com/aws/aws-sdk-go-v2) | `1.67.8` | `1.68.1` |
| [github.com/aymanbagabas/go-udiff](https://github.com/aymanbagabas/go-udiff) | `0.3.1` | `0.4.0` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.52.0` | `1.53.0` |
| [github.com/urfave/cli/v3](https://github.com/urfave/cli) | `3.6.1` | `3.7.0` |
| [github.com/walles/moor/v2](https://github.com/walles/moor) | `2.10.1` | `2.11.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.47.0` | `0.48.0` |



Updates `github.com/aws/aws-sdk-go-v2` from 1.41.1 to 1.41.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.41.1...v1.41.2)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.32.7 to 1.32.10
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.32.7...config/v1.32.10)

Updates `github.com/aws/aws-sdk-go-v2/service/secretsmanager` from 1.41.1 to 1.41.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.41.1...v1.41.2)

Updates `github.com/aws/aws-sdk-go-v2/service/ssm` from 1.67.8 to 1.68.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.67.8...service/ecs/v1.68.1)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.41.6 to 1.41.7
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sts/v1.41.6...service/sts/v1.41.7)

Updates `github.com/aymanbagabas/go-udiff` from 0.3.1 to 0.4.0
- [Release notes](https://github.com/aymanbagabas/go-udiff/releases)
- [Commits](aymanbagabas/go-udiff@v0.3.1...v0.4.0)

Updates `github.com/samber/lo` from 1.52.0 to 1.53.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.52.0...v1.53.0)

Updates `github.com/urfave/cli/v3` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v3.6.1...v3.7.0)

Updates `github.com/walles/moor/v2` from 2.10.1 to 2.11.0
- [Release notes](https://github.com/walles/moor/releases)
- [Commits](walles/moor@v2.10.1...v2.11.0)

Updates `golang.org/x/crypto` from 0.47.0 to 0.48.0
- [Commits](golang/crypto@v0.47.0...v0.48.0)

Updates `golang.org/x/sys` from 0.40.0 to 0.41.0
- [Commits](golang/sys@v0.40.0...v0.41.0)

Updates `golang.org/x/term` from 0.39.0 to 0.40.0
- [Commits](golang/term@v0.39.0...v0.40.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/secretsmanager
  dependency-version: 1.41.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ssm
  dependency-version: 1.68.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-version: 1.41.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/aymanbagabas/go-udiff
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/samber/lo
  dependency-version: 1.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/urfave/cli/v3
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/walles/moor/v2
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/crypto
  dependency-version: 0.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/term
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 3, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 10, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 10, 2026
@dependabot dependabot bot deleted the dependabot/go_modules/go-dependencies-8201e7641e branch March 10, 2026 06:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants