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

Bump github.com/zalando/skipper from 0.17.32 to 0.18.38 #648

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 17, 2023

Bumps github.com/zalando/skipper from 0.17.32 to 0.18.38.

Release notes

Sourced from github.com/zalando/skipper's releases.

v0.18.38

Changes

fix: master build by dropping gosec from GH action, because of recent gosec changes (#2689)

Multiarch Docker image

Multiarch Docker image is available in Github's docker registry:

docker run -it ghcr.io/zalando/skipper:v0.18.38 skipper --help

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.18.38 skipper --help

v0.18.37

Changes

fix: GH actions run an outdated Go version, trying to fix as stated in https://github.com/actions/setup-go/tree/main#check-latest-version (#2688)

Multiarch Docker image

Multiarch Docker image is available in Github's docker registry:

docker run -it ghcr.io/zalando/skipper:v0.18.37 skipper --help

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.18.37 skipper --help

v0.18.36

Changes

fix otel dependency CVE-2023-45142 (#2686)

... (truncated)

Commits
  • 9b57097 fix: master build by dropping gosec from GH action, because of recent gosec c...
  • 21b58f6 fix: GH actions run an outdated Go version, trying to fix as stated in https:...
  • a05ac5f fix otel dependency CVE-2023-45142 (#2686)
  • 6f00e95 build(deps): bump github.com/instana/go-sensor from 1.56.0 to 1.57.0 (#2677)
  • 9df1e2f update setup-go action (#2687)
  • c4fa23b build(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#2678)
  • 15cbed6 drop: gosec from blockin build in CI pipeline (#2681)
  • 30eada3 build(deps): bump github.com/andybalholm/brotli from 1.0.5 to 1.0.6 (#2679)
  • 2a202c4 Do not use endpointregistry in the hotpath (#2673)
  • 9de6be2 Do not use endpointregistry in the hotpath (#2673)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 17, 2023
@katyanna katyanna force-pushed the dependabot/go_modules/github.com/zalando/skipper-0.18.38 branch from b20edb1 to da9b8b3 Compare October 19, 2023 10:13
@@ -184,7 +184,7 @@ func (a *Adapter) NewInclusterConfigClientset(ctx context.Context) error {
IdleConnTimeout: idleConnTimeout,
Transport: &http.Transport{
Proxy: trCfg.Proxy,
DialContext: trCfg.Dial,
DialContext: cfg.Dial,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no, that's basically dropping the work we try to achieve above: having timeouts configured for the client.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah no, hmm, maybe you are right, dunno :D

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you post some error that you try to fix?
Maybe we can also add a log to see if trCfg.Dial and cfg.Dial are different log with "%p" for example

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, then this needs a more detailed check considering the client-go update on TransportConfig.

Copy link
Member

@katyanna katyanna Oct 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

kubernetes/client.go:187:33: trCfg.Dial undefined (type *transport.Config has no field or method Dial)

this was the error, because client-go dropped TransportConfig.Dial here

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok thanks, then go ahead like this

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2023

A newer version of github.com/zalando/skipper exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

go.mod Outdated Show resolved Hide resolved
dependabot bot and others added 5 commits January 3, 2024 15:24
Bumps [github.com/zalando/skipper](https://github.com/zalando/skipper) from 0.17.32 to 0.18.38.
- [Release notes](https://github.com/zalando/skipper/releases)
- [Commits](zalando/skipper@v0.17.32...v0.18.38)

---
updated-dependencies:
- dependency-name: github.com/zalando/skipper
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
client-go has dropped direct access to Dial from Transport, this commit
updates the usage to the upper layer, InClusterConfig.
- kubernetes/client-go@5dab9a0

Signed-off-by: Katyanna Moura <[email protected]>
deadcode and varcheck are deprecated. They're currenlty unused throughout the code, so no need for replacement.

Signed-off-by: Katyanna Moura <[email protected]>
Fix lint error:
Error: kubernetes/pods.go:53:26: Error return value of
`informer.AddEventHandler` is not checked (errcheck)

Signed-off-by: Katyanna Moura <[email protected]>
@szuecs szuecs force-pushed the dependabot/go_modules/github.com/zalando/skipper-0.18.38 branch from 26684df to 15cfbbb Compare January 3, 2024 14:24
Signed-off-by: Sandor Szücs <[email protected]>
@szuecs
Copy link
Member

szuecs commented Jan 3, 2024

👍

1 similar comment
@RomanZavodskikh
Copy link
Member

👍

@szuecs szuecs merged commit 2275800 into master Jan 3, 2024
10 checks passed
@szuecs szuecs deleted the dependabot/go_modules/github.com/zalando/skipper-0.18.38 branch January 3, 2024 15:10
MustafaSaber pushed a commit that referenced this pull request Jan 4, 2024
* Bump github.com/zalando/skipper from 0.17.32 to 0.18.38

Bumps [github.com/zalando/skipper](https://github.com/zalando/skipper) from 0.17.32 to 0.18.38.
- [Release notes](https://github.com/zalando/skipper/releases)
- [Commits](zalando/skipper@v0.17.32...v0.18.38)

---
updated-dependencies:
- dependency-name: github.com/zalando/skipper
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Get Dial directly from InClusterConfig instead of TransportConfig

client-go has dropped direct access to Dial from Transport, this commit
updates the usage to the upper layer, InClusterConfig.
- kubernetes/client-go@5dab9a0

Signed-off-by: Katyanna Moura <[email protected]>

* Remove deprecated linters

deadcode and varcheck are deprecated. They're currenlty unused throughout the code, so no need for replacement.

Signed-off-by: Katyanna Moura <[email protected]>

* Check error returned from client-go/SharedInformer.AddEventHandler

Fix lint error:
Error: kubernetes/pods.go:53:26: Error return value of
`informer.AddEventHandler` is not checked (errcheck)

Signed-off-by: Katyanna Moura <[email protected]>

* fix update and pin k8s dependency to v0.24.17

Signed-off-by: Sandor Szücs <[email protected]>

* fix deps

Signed-off-by: Sandor Szücs <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Katyanna Moura <[email protected]>
Signed-off-by: Sandor Szücs <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Katyanna Moura <[email protected]>
Co-authored-by: Sandor Szücs <[email protected]>
katyanna added a commit that referenced this pull request Jan 18, 2024
* master:
  Bump github.com/zalando/skipper from 0.17.32 to 0.18.38 (#648)
  Add test case for rolling in progress stacks
  Bump github.com/aws/aws-sdk-go from 1.47.0 to 1.49.13
  Bump github.com/google/uuid from 1.4.0 to 1.5.0 (#670)
  Bump github.com/prometheus/client_golang from 1.17.0 to 1.18.0 (#669)
  Require labels (#666)
  Bump golang.org/x/crypto from 0.14.0 to 0.17.0
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants