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

chore(deps): bump the common group across 1 directory with 4 updates #252

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 3, 2024

Bumps the common group with 4 updates in the / directory: github.com/aquasecurity/trivy, github.com/owenrumney/squealer, github.com/samber/lo and mvdan.cc/sh/v3.

Updates github.com/aquasecurity/trivy from 0.54.1-0.20240830061815-3a5d09175956 to 0.54.1

Release notes

Sourced from github.com/aquasecurity/trivy's releases.

v0.54.1

Changelog

  • 854c61d34a550a9fcbab3bc59e55b868c15d1962 release: v0.54.1 [release/v0.54] (#7282)
  • 334a1c293bb3d490af2a6d80732f399efaac22f7 fix(flag): incorrect behavior for deprected flag --clear-cache [backport: release/v0.54] (#7285)
  • f61725c28b56d80fb46395479842a2ab0c517c5f fix(java): Return error when trying to find a remote pom to avoid segfault [backport: release/v0.54] (#7283)
  • a7b7117fe2c9608e990b42e702cc83675c48f888 fix(plugin): do not call GitHub content API for releases and tags [backport: release/v0.54] (#7279)
Changelog

Sourced from github.com/aquasecurity/trivy's changelog.

0.54.1 (2024-07-31)

Bug Fixes

  • flag: incorrect behavior for deprected flag --clear-cache [backport: release/v0.54] (#7285) (334a1c2)
  • java: Return error when trying to find a remote pom to avoid segfault [backport: release/v0.54] (#7283) (f61725c)
  • plugin: do not call GitHub content API for releases and tags [backport: release/v0.54] (#7279) (a7b7117)

0.54.0 (2024-07-30)

Features

Bug Fixes

  • Add dependencyManagement exclusions to the child exclusions (#6969) (dc68a66)
  • add missing platform and type to spec (#7149) (c8a7abd)
  • cli: error on missing config file (#7154) (7fa5e7d)
  • close file when failed to open gzip (#7164) (2a577a7)
  • dotnet: don't include non-runtime libraries into report for *.deps.json files (#7039) (5bc662b)
  • dotnet: show nuget package dir not found log only when checking nuget packages (#7194) (d76feba)
  • ignore nodes when listing permission is not allowed (#7107) (25f8143)
  • java: avoid panic if deps from pom in it dir are not found (#7245) (4e54a7e)
  • java: use go-mvn-version to remove Package duplicates (#7088) (a7a304d)
  • misconf: do not evaluate TF when a load error occurs (#7109) (f27c236)
  • nodejs: detect direct dependencies when using latest version for files yarn.lock + package.json (#7110) (54bb8bd)
  • report: hide empty table when all secrets/license/misconfigs are ignored (#7171) (c3036de)
  • secret: skip regular strings contain secret patterns (#7182) (174b1e3)
  • secret: trim excessively long lines (#7192) (92b13be)
  • secret: update length of hugging-face-access-token (#7216) (8c87194)
  • server: pass license categories to options (#7203) (9d52018)

Performance Improvements

... (truncated)

Commits

Updates github.com/owenrumney/squealer from 1.2.3 to 1.2.4

Release notes

Sourced from github.com/owenrumney/squealer's releases.

v1.2.4

What's Changed

New Contributors

Full Changelog: owenrumney/squealer@v1.2.3...v1.2.4

Commits
  • f0214b9 chore(deps): bump alpine from 3.20.1 to 3.20.2 (#120)
  • 674fede chore: fix goreleaser option and config to support goreleaser v2 (#118)
  • See full diff in compare view

Updates github.com/samber/lo from 1.46.0 to 1.47.0

Release notes

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

v1.47.0

What's Changed

New Contributors

Full Changelog: samber/lo@v1.46.0...v1.47.0

Commits

Updates mvdan.cc/sh/v3 from 3.8.0 to 3.9.0

Release notes

Sourced from mvdan.cc/sh/v3's releases.

v3.9.0

This release drops support for Go 1.21 and includes many fixes.

  • cmd/shfmt
    • Switch the diff implementation to remove one dependency
  • syntax
    • Protect against overflows in position offset integers
  • interp
    • Use os.Pipe for stdin to prevent draining by subprocesses - #1085
    • Support cancelling reads in builtins when stdin is a file - #1066
    • Support the nocaseglob bash option - #1073
    • Support the Bash 5.2 @k parameter expansion operator
    • Support the test -O and test -G operators on non-Windows - #1080
    • Support the read -s builtin flag - #1063
  • expand
    • Add support for case insensitive globbing - #1073
    • Don't panic when pattern words are nil - #1076

A special thanks to @​theclapp for their contributors to this release!

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

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

CGO_ENABLED=0 go build -trimpath -ldflags="-w -s -X=main.version=v3.9.0"

Changelog

Sourced from mvdan.cc/sh/v3's changelog.

[3.9.0] - 2024-08-16

This release drops support for Go 1.21 and includes many fixes.

  • cmd/shfmt
    • Switch the diff implementation to remove one dependency
  • syntax
    • Protect against overflows in position offset integers
  • interp
    • Use os.Pipe for stdin to prevent draining by subprocesses - #1085
    • Support cancelling reads in builtins when stdin is a file - #1066
    • Support the nocaseglob bash option - #1073
    • Support the Bash 5.2 @k parameter expansion operator
    • Support the test -O and test -G operators on non-Windows - #1080
    • Support the read -s builtin flag - #1063
  • expand
    • Add support for case insensitive globbing - #1073
    • Don't panic when pattern words are nil - #1076

A special thanks to @​theclapp for their contributors to this release!

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

Commits
  • 7bd422f CHANGELOG: prepare for v3.9.0
  • 4430915 add Go 1.23.x, drop 1.21.x
  • ccc828f interp: add -s (silent) support to the read builtin
  • b701811 cmd/gosh: use an os.Pipe in another interactive test
  • bced200 interp: fix data race regression with stdin pipe changes
  • 63f3119 interp: use os.Pipe when StdIO or OpenHandler produce non-file stdins
  • 262cc0e interp: add a broken test for stdin draining with StdIO
  • 7eeba77 interp: do not include TODOs in godoc comments
  • 980b6fc interp: implement here-documents via os.Pipe
  • 4a8ae22 interp: verify tests with Bash 5.2
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

Bumps the common group with 4 updates in the / directory: [github.com/aquasecurity/trivy](https://github.com/aquasecurity/trivy), [github.com/owenrumney/squealer](https://github.com/owenrumney/squealer), [github.com/samber/lo](https://github.com/samber/lo) and [mvdan.cc/sh/v3](https://github.com/mvdan/sh).


Updates `github.com/aquasecurity/trivy` from 0.54.1-0.20240830061815-3a5d09175956 to 0.54.1
- [Release notes](https://github.com/aquasecurity/trivy/releases)
- [Changelog](https://github.com/aquasecurity/trivy/blob/v0.54.1/CHANGELOG.md)
- [Commits](https://github.com/aquasecurity/trivy/commits/v0.54.1)

Updates `github.com/owenrumney/squealer` from 1.2.3 to 1.2.4
- [Release notes](https://github.com/owenrumney/squealer/releases)
- [Changelog](https://github.com/owenrumney/squealer/blob/main/.goreleaser.yml)
- [Commits](owenrumney/squealer@v1.2.3...v1.2.4)

Updates `github.com/samber/lo` from 1.46.0 to 1.47.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.46.0...v1.47.0)

Updates `mvdan.cc/sh/v3` from 3.8.0 to 3.9.0
- [Release notes](https://github.com/mvdan/sh/releases)
- [Changelog](https://github.com/mvdan/sh/blob/master/CHANGELOG.md)
- [Commits](mvdan/sh@v3.8.0...v3.9.0)

---
updated-dependencies:
- dependency-name: github.com/aquasecurity/trivy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/owenrumney/squealer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/samber/lo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: mvdan.cc/sh/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from simar7 as a code owner September 3, 2024 23:26
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Sep 3, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 9, 2024

Superseded by #253.

@dependabot dependabot bot closed this Sep 9, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/common-7fc5fab5a0 branch September 9, 2024 15:59
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