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

build(deps): bump the go group with 7 updates #1113

Merged
merged 2 commits into from
Mar 4, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

Bumps the go group with 7 updates:

Package From To
github.com/envoyproxy/go-control-plane/envoy 1.32.3 1.32.4
github.com/go-playground/validator/v10 10.24.0 10.25.0
github.com/google/go-cmp 0.6.0 0.7.0
github.com/open-policy-agent/opa 1.1.0 1.2.0
github.com/spf13/cobra 1.8.1 1.9.1
golang.org/x/sync 0.10.0 0.11.0
google.golang.org/protobuf 1.36.3 1.36.4

Updates github.com/envoyproxy/go-control-plane/envoy from 1.32.3 to 1.32.4

Commits
  • c19bf63 Release envoy/v1.32.4
  • 454f8a0 build(deps): Bump github.com/prometheus/client_model in /envoy (#1119)
  • 58efc63 build(deps): Bump google.golang.org/protobuf in /envoy (#1115)
  • 33b45de build(deps): Bump github.com/envoyproxy/protoc-gen-validate in /envoy (#1118)
  • 4e8ae81 build(deps): Bump google.golang.org/protobuf in /contrib (#1112)
  • aca1ecc build(deps): Bump google.golang.org/protobuf in /ratelimit (#1116)
  • 74d3edc build(deps): Bump google.golang.org/grpc from 1.67.1 to 1.70.0 in /envoy (#1120)
  • 639a4f1 chore: setup dependabot for new sub-modules (#1110)
  • 0d09f56 build(deps): Bump go.opentelemetry.io/build-tools/multimod (#1108)
  • d881ae0 build(deps): Bump github.com/golangci/golangci-lint in /internal/tools (#1107)
  • Additional commits viewable in compare view

Updates github.com/go-playground/validator/v10 from 10.24.0 to 10.25.0

Release notes

Sourced from github.com/go-playground/validator/v10's releases.

Release 10.25.0

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.24.0...v10.25.0

Commits
  • 0240917 Update README.md
  • f5f02dc feat: Add support for omitting empty and zero values in validation (including...
  • c171f2d Fix/remove issue template md (#1375)
  • e564451 chore: using errors.As instead of type assertion (#1346)
  • 57dcfdc Update README to replace the Travis CI badge with a GitHub Actions badge (#1362)
  • b111154 Fix postcode_iso3166_alpha2_field validation (#1359)
  • See full diff in compare view

Updates github.com/google/go-cmp from 0.6.0 to 0.7.0

Release notes

Sourced from github.com/google/go-cmp's releases.

v0.7.0

New API:

  • (#367) Support compare functions with SortSlices and SortMaps

Panic messaging:

  • (#370) Detect proto.Message types when failing to export a field
Commits

Updates github.com/open-policy-agent/opa from 1.1.0 to 1.2.0

Release notes

Sourced from github.com/open-policy-agent/opa's releases.

v1.2.0

This release contains a mix of features, performance improvements, and bugfixes.

Parameterized Rego Tests (#2176)

Rego tests now support parameterization, allowing a single test rule to include multiple, hierarchical, named test cases. This feature is useful for data-driven testing, where a single test rule can be used for multiple test cases with different inputs and expected outputs.

package example_test
test_concat[note] if {
some note, tc in {
"empty + empty": {
"a": [],
"b": [],
"exp": [],
},
"empty + filled": {
"a": [],
"b": [1, 2],
"exp": [1, 2],
},
"filled + filled": {
"a": [1, 2],
"b": [3, 4],
"exp": [1, 2, 3], # Faulty expectation, this test case will fail
},
}
act := array.concat(tc.a, tc.b)
act == tc.exp

}

$ opa test example_test.rego
example_test.rego:
data.example_test.test_concat: FAIL (263.375µs)
  empty + empty: PASS
  empty + filled: PASS
  filled + filled: FAIL
--------------------------------------------------------------------------------
FAIL: 1/1

See the documentation for more information.

Authored by @​johanfylling, reported by @​anderseknert

... (truncated)

Changelog

Sourced from github.com/open-policy-agent/opa's changelog.

1.2.0

This release contains a mix of features, performance improvements, and bugfixes.

Parameterized Rego Tests (#2176)

Rego tests now support parameterization, allowing a single test rule to include multiple, hierarchical, named test cases. This feature is useful for data-driven testing, where a single test rule can be used for multiple test cases with different inputs and expected outputs.

package example_test
test_concat[note] if {
some note, tc in {
"empty + empty": {
"a": [],
"b": [],
"exp": [],
},
"empty + filled": {
"a": [],
"b": [1, 2],
"exp": [1, 2],
},
"filled + filled": {
"a": [1, 2],
"b": [3, 4],
"exp": [1, 2, 3], # Faulty expectation, this test case will fail
},
}
act := array.concat(tc.a, tc.b)
act == tc.exp

}

$ opa test example_test.rego
example_test.rego:
data.example_test.test_concat: FAIL (263.375µs)
  empty + empty: PASS
  empty + filled: PASS
  filled + filled: FAIL
--------------------------------------------------------------------------------
FAIL: 1/1

See the documentation for more information.

Authored by @​johanfylling, reported by @​anderseknert

... (truncated)

Commits
  • d537788 Release v1.2.0 (#7403)
  • d6b8e6d perf: various small improvements (#7357)
  • e46696e ci: Using fetch-depth when fetching tags (#7400)
  • 85eaacd docs: Add note about v1.0 addr behaviour (#7398)
  • 83c8e0e ci: Adding fetch-tags under with in GHA (#7397)
  • 10d1a54 Explicitly fetching fetching git tags for CI builds (#7395)
  • 6088316 build(deps): bump github.com/containerd/containerd from 1.7.25 to 1.7.26 (#7392)
  • 3ab892f docs: Update homepage examples to drop v1 import (#7391)
  • bad1b1a build(deps): bump github.com/prometheus/client_golang (#7375)
  • e75f583 build(deps): bump actions/download-artifact from 4.1.8 to 4.1.9 (#7389)
  • Additional commits viewable in compare view

Updates github.com/spf13/cobra from 1.8.1 to 1.9.1

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.9.1

🐛 Fixes

Full Changelog: spf13/cobra@v1.9.0...v1.9.1

v1.9.0

✨ Features

🐛 Fixes

🤖 Completions

🧪 Testing

✍🏼 Documentation

🔧 Dependency upgrades

... (truncated)

Commits

Updates golang.org/x/sync from 0.10.0 to 0.11.0

Commits
  • fe3591b sync/errgroup: improve documentation for semaphore limit behavior
  • See full diff in compare view

Updates google.golang.org/protobuf from 1.36.3 to 1.36.4

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

@dependabot dependabot bot requested a review from a team as a code owner March 1, 2025 18:04
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 1, 2025
@dependabot dependabot bot requested review from wasaga and removed request for a team March 1, 2025 18:04
Bumps the go group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) | `1.32.3` | `1.32.4` |
| [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.24.0` | `10.25.0` |
| [github.com/google/go-cmp](https://github.com/google/go-cmp) | `0.6.0` | `0.7.0` |
| [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) | `1.1.0` | `1.2.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.1` | `1.9.1` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.10.0` | `0.11.0` |
| google.golang.org/protobuf | `1.36.3` | `1.36.4` |


Updates `github.com/envoyproxy/go-control-plane/envoy` from 1.32.3 to 1.32.4
- [Release notes](https://github.com/envoyproxy/go-control-plane/releases)
- [Changelog](https://github.com/envoyproxy/go-control-plane/blob/main/CHANGELOG.md)
- [Commits](envoyproxy/go-control-plane@envoy/v1.32.3...envoy/v1.32.4)

Updates `github.com/go-playground/validator/v10` from 10.24.0 to 10.25.0
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.24.0...v10.25.0)

Updates `github.com/google/go-cmp` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/google/go-cmp/releases)
- [Commits](google/go-cmp@v0.6.0...v0.7.0)

Updates `github.com/open-policy-agent/opa` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md)
- [Commits](open-policy-agent/opa@v1.1.0...v1.2.0)

Updates `github.com/spf13/cobra` from 1.8.1 to 1.9.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.1...v1.9.1)

Updates `golang.org/x/sync` from 0.10.0 to 0.11.0
- [Commits](golang/sync@v0.10.0...v0.11.0)

Updates `google.golang.org/protobuf` from 1.36.3 to 1.36.4

---
updated-dependencies:
- dependency-name: github.com/envoyproxy/go-control-plane/envoy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/go-playground/validator/v10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/google/go-cmp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/open-policy-agent/opa
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-f44f040f4f branch from 26e902b to 89819b5 Compare March 3, 2025 20:25
@wasaga wasaga enabled auto-merge (squash) March 4, 2025 16:38
@wasaga wasaga merged commit 2b29f3a into main Mar 4, 2025
7 checks passed
@wasaga wasaga deleted the dependabot/go_modules/go-f44f040f4f branch March 4, 2025 16:44
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.

1 participant