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 gomod group across 1 directory with 8 updates #525

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the gomod group with 6 updates in the / directory:

Package From To
cloud.google.com/go/cloudsqlconn 1.15.0 1.16.0
github.com/GoogleCloudPlatform/cloudsql-proxy 1.37.5 1.37.6
github.com/goccy/go-yaml 1.15.23 1.16.0
github.com/onsi/ginkgo/v2 2.23.0 2.23.2
k8s.io/api 0.32.2 0.32.3
k8s.io/client-go 0.32.2 0.32.3

Updates cloud.google.com/go/cloudsqlconn from 1.15.0 to 1.16.0

Release notes

Sourced from cloud.google.com/go/cloudsqlconn's releases.

v1.16.0

1.16.0 (2025-03-19)

Features

  • add domain name validation (#925) (986152f)
  • Use standard TLS hostname validation for instances with DNS names (#954) (d733a16)
Changelog

Sourced from cloud.google.com/go/cloudsqlconn's changelog.

1.16.0 (2025-03-19)

Features

  • add domain name validation (#925) (986152f)
  • Use standard TLS hostname validation for instances with DNS names (#954) (d733a16)
Commits

Updates github.com/GoogleCloudPlatform/cloudsql-proxy from 1.37.5 to 1.37.6

Release notes

Sourced from github.com/GoogleCloudPlatform/cloudsql-proxy's releases.

v1.37.6

1.37.6 (2025-03-20)

Bug Fixes

filename sha256 hash
cloud_sql_proxy.darwin.amd64 8d2f6bfa2eab9055fb101f541a5cbbba0091d5b759488fdc157c4eaec018e50e
cloud_sql_proxy.darwin.arm64 3703fa6e7e4efb1e4fb356d2ca0e29adabbedfaf218c0ef1d1d6bafcda854f09
cloud_sql_proxy.linux.386 14f5c4ec79a2c426a0e6cc2786acf497710ee1bc892dfee4c781f86bc2b1c594
cloud_sql_proxy.linux.amd64 b51b5d3b3e769c38353b3f311cd922ed10a9a2a79e30885a751f6b99907fdcaa
cloud_sql_proxy.linux.arm64 92b9d7a980f242919a43ecdddc7a2395427114a9225f7987a83681c6dca9e206
cloud_sql_proxy_x64.exe 32f478c1cf6b426a615902b8a946a0ef3dc4fda556cf0738abdd9557a926dae5
cloud_sql_proxy_x86.exe ef417a3dbfc1d5a2f4cdb79bb9b83ade999af19f38631480a9aafd4394928d45
Changelog

Sourced from github.com/GoogleCloudPlatform/cloudsql-proxy's changelog.

1.37.6 (2025-03-20)

Bug Fixes

Commits

Updates github.com/goccy/go-yaml from 1.15.23 to 1.16.0

Release notes

Sourced from github.com/goccy/go-yaml's releases.

1.16.0

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.15.23...v1.16.0

Commits
  • 100fa23 Fix tab character handling ( if ignore the tab character, do not increment th...
  • 9671363 encodeMap() error handling and TestEncoder_UnmarshallableTypes() (#674)
  • 944206a Add AutoInt option (#671)
  • abc7083 support smart anchor option (#662)
  • b46780d Keep reference of anchor's value (#660)
  • See full diff in compare view

Updates github.com/onsi/ginkgo/v2 from 2.23.0 to 2.23.2

Release notes

Sourced from github.com/onsi/ginkgo/v2's releases.

v2.23.2

2.23.2

🎉🎉🎉

At long last, some long-standing performance gaps between ginkgo and go test have been resolved!

Ginkgo operates by running go test -c to generate test binaries, and then running those binaries. It turns out that the compilation step of go test -c is slower than go test's compilation step because go test strips out debug symbols (ldflags=-w) whereas go test -c does not.

Ginkgo now passes the appropriate ldflags to go test -c when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and when ginkgo build is called explicitly.

This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.

v2.23.1

2.23.1

🚨 For users on MacOS 🚨

A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.

Fixes

Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:

  • make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
  • emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]

This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.

Changelog

Sourced from github.com/onsi/ginkgo/v2's changelog.

2.23.2

🎉🎉🎉

At long last, some long-standing performance gaps between ginkgo and go test have been resolved!

Ginkgo operates by running go test -c to generate test binaries, and then running those binaries. It turns out that the compilation step of go test -c is slower than go test's compilation step because go test strips out debug symbols (ldflags=-w) whereas go test -c does not.

Ginkgo now passes the appropriate ldflags to go test -c when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and when ginkgo build is called explicitly.

This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.

2.23.1

🚨 For users on MacOS 🚨

A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.

Fixes

Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:

  • make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
  • emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]

This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.

Commits
  • 979c969 v2.23.2
  • 976a5c0 strip out symbols when running ginkgo
  • 99e2fe2 v2.23.1
  • a0e52ff make it clearer that you need to pass a filename to the various profile flags...
  • b799d8d emit an error and exit if the ginkgo invocation includes flags after position...
  • a565d1f Fix typo in documentation: DescribeHandleSubtree -> DescribeTableSubtree
  • 5157b33 discuss how to disable XProtect on macos
  • See full diff in compare view

Updates google.golang.org/api from 0.222.0 to 0.227.0

Release notes

Sourced from google.golang.org/api's releases.

v0.227.0

0.227.0 (2025-03-19)

Features

v0.226.0

0.226.0 (2025-03-13)

Features

v0.225.0

0.225.0 (2025-03-11)

Features

Bug Fixes

v0.224.0

0.224.0 (2025-03-06)

Features

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.227.0 (2025-03-19)

Features

0.226.0 (2025-03-13)

Features

0.225.0 (2025-03-11)

Features

Bug Fixes

0.224.0 (2025-03-06)

Features

Bug Fixes

... (truncated)

Commits

Updates k8s.io/api from 0.32.2 to 0.32.3

Commits

Updates k8s.io/apimachinery from 0.32.2 to 0.32.3

Commits

Updates k8s.io/client-go from 0.32.2 to 0.32.3

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 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 gomod group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/cloudsqlconn](https://github.com/googlecloudplatform/cloud-sql-go-connector) | `1.15.0` | `1.16.0` |
| [github.com/GoogleCloudPlatform/cloudsql-proxy](https://github.com/GoogleCloudPlatform/cloudsql-proxy) | `1.37.5` | `1.37.6` |
| [github.com/goccy/go-yaml](https://github.com/goccy/go-yaml) | `1.15.23` | `1.16.0` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.23.0` | `2.23.2` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.32.2` | `0.32.3` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.32.2` | `0.32.3` |



Updates `cloud.google.com/go/cloudsqlconn` from 1.15.0 to 1.16.0
- [Release notes](https://github.com/googlecloudplatform/cloud-sql-go-connector/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/cloud-sql-go-connector/blob/main/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/cloud-sql-go-connector@v1.15.0...v1.16.0)

Updates `github.com/GoogleCloudPlatform/cloudsql-proxy` from 1.37.5 to 1.37.6
- [Release notes](https://github.com/GoogleCloudPlatform/cloudsql-proxy/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/cloud-sql-proxy/blob/v1.37.6/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/cloud-sql-proxy@v1.37.5...v1.37.6)

Updates `github.com/goccy/go-yaml` from 1.15.23 to 1.16.0
- [Release notes](https://github.com/goccy/go-yaml/releases)
- [Changelog](https://github.com/goccy/go-yaml/blob/master/CHANGELOG.md)
- [Commits](goccy/go-yaml@v1.15.23...v1.16.0)

Updates `github.com/onsi/ginkgo/v2` from 2.23.0 to 2.23.2
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.23.0...v2.23.2)

Updates `google.golang.org/api` from 0.222.0 to 0.227.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.222.0...v0.227.0)

Updates `k8s.io/api` from 0.32.2 to 0.32.3
- [Commits](kubernetes/api@v0.32.2...v0.32.3)

Updates `k8s.io/apimachinery` from 0.32.2 to 0.32.3
- [Commits](kubernetes/apimachinery@v0.32.2...v0.32.3)

Updates `k8s.io/client-go` from 0.32.2 to 0.32.3
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.32.2...v0.32.3)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/cloudsqlconn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/GoogleCloudPlatform/cloudsql-proxy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/goccy/go-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 21, 2025
Copy link
Contributor

Test Results

85 tests  ±0   85 ✅ ±0   1s ⏱️ -2s
 4 suites ±0    0 💤 ±0 
 1 files   ±0    0 ❌ ±0 

Results for commit dab2ae1. ± Comparison against base commit 5fa9ff2.

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