From 66ceee43089998266812efdc759fd4b57c504bde Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 6 Aug 2024 12:32:37 -0400
Subject: [PATCH] build(deps): bump github.com/onsi/gomega from 1.33.1 to
1.34.1 (#1048)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from
1.33.1 to 1.34.1.
Release notes
Sourced from github.com/onsi/gomega's
releases.
v1.34.1
1.34.1
Maintenance
- Use slices from exp/slices to keep golang 1.20 compat [5e71dcd]
v1.34.0
1.34.0
Features
- Add RoundTripper method to ghttp.Server [c549e0d]
Fixes
- fix incorrect handling of nil slices in HaveExactElements (fixes #771)
[878940c]
- issue_765 - fixed bug in Hopcroft-Karp algorithm [ebadb67]
Maintenance
- bump ginkgo [8af2ece]
- Fix typo in docs [123a071]
- Bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.17.3 (#756)
[0e69083]
- Bump google.golang.org/protobuf from 1.33.0 to 1.34.1 (#755)
[2675796]
- Bump golang.org/x/net from 0.24.0 to 0.25.0 (#754)
[4160c0f]
- Bump github-pages from 230 to 231 in /docs (#748)
[892c303]
Changelog
Sourced from github.com/onsi/gomega's
changelog.
1.34.1
Maintenance
- Use slices from exp/slices to keep golang 1.20 compat [5e71dcd]
1.34.0
Features
- Add RoundTripper method to ghttp.Server [c549e0d]
Fixes
- fix incorrect handling of nil slices in HaveExactElements (fixes #771)
[878940c]
- issue_765 - fixed bug in Hopcroft-Karp algorithm [ebadb67]
Maintenance
- bump ginkgo [8af2ece]
- Fix typo in docs [123a071]
- Bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.17.3 (#756)
[0e69083]
- Bump google.golang.org/protobuf from 1.33.0 to 1.34.1 (#755)
[2675796]
- Bump golang.org/x/net from 0.24.0 to 0.25.0 (#754)
[4160c0f]
- Bump github-pages from 230 to 231 in /docs (#748)
[892c303]
Commits
fa057b8
v1.34.1
5e71dcd
Use slices from exp/slices to keep golang 1.20 compat
32e5498
v1.34.0
cb3fa6a
run go mod tidy and wonder why go get doesnt just run it for me in the
first ...
8af2ece
bump ginkgo
878940c
fix incorrect handling of nil slices in HaveExactElements (fixes #771)
f5bec80
clean up bipartitegraph tests
ebadb67
issue_765 - fixed bug in Hopcroft-Karp algorithm
123a071
Fix typo in docs
c549e0d
Add RoundTripper method to ghttp.Server
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega&package-manager=go_modules&previous-version=1.33.1&new-version=1.34.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
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 ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
go.mod | 4 ++--
go.sum | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/go.mod b/go.mod
index 1f63edaec..c0d8dcd2c 100644
--- a/go.mod
+++ b/go.mod
@@ -10,7 +10,7 @@ require (
github.com/google/go-licenses v1.6.1-0.20230903011517-706b9c60edd4
github.com/lima-vm/lima v0.22.0
github.com/onsi/ginkgo/v2 v2.19.1
- github.com/onsi/gomega v1.34.0
+ github.com/onsi/gomega v1.34.1
github.com/pelletier/go-toml v1.9.5
github.com/pkg/sftp v1.13.6
github.com/runfinch/common-tests v0.7.23
@@ -22,7 +22,7 @@ require (
github.com/tc-hib/go-winres v0.3.3
github.com/xorcare/pointer v1.2.2
golang.org/x/crypto v0.25.0
- golang.org/x/exp v0.0.0-20230810033253-352e893a4cad
+ golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
golang.org/x/tools v0.23.0
gopkg.in/yaml.v3 v3.0.1
k8s.io/apimachinery v0.30.3
diff --git a/go.sum b/go.sum
index edd9b286f..36f5e15a7 100644
--- a/go.sum
+++ b/go.sum
@@ -117,8 +117,8 @@ github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 h1:zYyBkD/k9seD2A7fsi6
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8=
github.com/onsi/ginkgo/v2 v2.19.1 h1:QXgq3Z8Crl5EL1WBAC98A5sEBHARrAJNzAmMxzLcRF0=
github.com/onsi/ginkgo/v2 v2.19.1/go.mod h1:O3DtEWQkPa/F7fBMgmZQKKsluAy8pd3rEQdrjkPb9zA=
-github.com/onsi/gomega v1.34.0 h1:eSSPsPNp6ZpsG8X1OVmOTxig+CblTc4AxpPBykhe2Os=
-github.com/onsi/gomega v1.34.0/go.mod h1:MIKI8c+f+QLWk+hxbePD4i0LMJSExPaZOVfkoex4cAo=
+github.com/onsi/gomega v1.34.1 h1:EUMJIKUjM8sKjYbtxQI9A4z2o+rruxnzNvpknOXie6k=
+github.com/onsi/gomega v1.34.1/go.mod h1:kU1QgUvBDLXBJq618Xvm2LUX6rSAfRaFRTcdOeDLwwY=
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
github.com/opencontainers/image-spec v1.1.0-rc6 h1:XDqvyKsJEbRtATzkgItUqBA7QHk58yxX1Ov9HERHNqU=
@@ -203,8 +203,8 @@ golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw
golang.org/x/crypto v0.25.0 h1:ypSNr+bnYL2YhwoMt2zPxHFmbAN1KZs/njMG3hxUp30=
golang.org/x/crypto v0.25.0/go.mod h1:T+wALwcMOSE0kXgUAnPAHqTLW+XHgcELELW8VaDgm/M=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
-golang.org/x/exp v0.0.0-20230810033253-352e893a4cad h1:g0bG7Z4uG+OgH2QDODnjp6ggkk1bJDsINcuWmJN1iJU=
-golang.org/x/exp v0.0.0-20230810033253-352e893a4cad/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=
+golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8=
+golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY=
golang.org/x/image v0.18.0 h1:jGzIakQa/ZXI1I0Fxvaa9W7yP25TqT6cHIHn+6CqvSQ=
golang.org/x/image v0.18.0/go.mod h1:4yyo5vMFQjVjUcVk4jEQcU9MGy/rulF5WvUILseCM2E=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=