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 dev-dependencies group with 7 updates #4867

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2024

Bumps the dev-dependencies group with 7 updates:

Package From To
github.com/aliyun/alibaba-cloud-sdk-go 1.63.49 1.63.50
github.com/civo/civogo 0.3.87 0.3.88
github.com/oracle/oci-go-sdk/v65 65.78.0 65.78.1
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common 1.0.1038 1.0.1040
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod 1.0.1038 1.0.1040
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns 1.0.1038 1.0.1040
go.etcd.io/etcd/client/v3 3.5.16 3.5.17

Updates github.com/aliyun/alibaba-cloud-sdk-go from 1.63.49 to 1.63.50

Release notes

Sourced from github.com/aliyun/alibaba-cloud-sdk-go's releases.

v1.63.50

  • Generated 2014-08-28 for Ess.
  • ScalingConfiguration supoort ConfidentialComputingMode.
Changelog

Sourced from github.com/aliyun/alibaba-cloud-sdk-go's changelog.

2024-11-12 Version: v1.63.50

  • Generated 2014-08-28 for Ess.
  • ScalingConfiguration supoort ConfidentialComputingMode.
Commits

Updates github.com/civo/civogo from 0.3.87 to 0.3.88

Release notes

Sourced from github.com/civo/civogo's releases.

v0.3.88

What's Changed

Full Changelog: civo/civogo@v0.3.87...v0.3.88

Commits

Updates github.com/oracle/oci-go-sdk/v65 from 65.78.0 to 65.78.1

Release notes

Sourced from github.com/oracle/oci-go-sdk/v65's releases.

65.78.1

Added

  • Support for calling Oracle Cloud Infrastructure services in the me-alain-1 region

  • Support for connection refresh in the GoldenGate service

  • Support for secret compartment id in import and export operations of deployment wallet in the GoldenGate service

  • Support for creating metadata only backups in the GoldenGate service

  • Support for Llama 3.2 unit shape in Generative AI service

  • Support for Llama 3.2 vision in Generative AI Inference service

  • Support for Cohere CommandR response format in Generative AI Inference service

File Checksums (SHA256)

oci-go-sdk-65.78.1.zip ea14ef9a0b7dd14b00908b3620cd30e005a8e324417b66229e7d726baa1b5081

Changelog

Sourced from github.com/oracle/oci-go-sdk/v65's changelog.

65.78.1 - 2024-11-12

Added

  • Support for calling Oracle Cloud Infrastructure services in the me-alain-1 region
  • Support for connection refresh in the GoldenGate service
  • Support for secret compartment id in import and export operations of deployment wallet in the GoldenGate service
  • Support for creating metadata only backups in the GoldenGate service
  • Support for Llama 3.2 unit shape in Generative AI service
  • Support for Llama 3.2 vision in Generative AI Inference service
  • Support for Cohere CommandR response format in Generative AI Inference service
Commits
  • 850fffe Releasing version 65.78.1
  • d8ef141 Merge remote-tracking branch 'bitbucket/github' into release_2024-11-12
  • 82704a6 Releasing version 65.78.1
  • See full diff in compare view

Updates github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common from 1.0.1038 to 1.0.1040

Commits

Updates github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod from 1.0.1038 to 1.0.1040

Commits

Updates github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns from 1.0.1038 to 1.0.1040

Commits

Updates go.etcd.io/etcd/client/v3 from 3.5.16 to 3.5.17

Release notes

Sourced from go.etcd.io/etcd/client/v3's releases.

v3.5.17

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.5.17
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.5.17
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
</tr></table>

... (truncated)

Commits
  • 507c0de version: bump up to 3.5.17
  • 307f9dc Merge pull request #18863 from ghouscht/backport-18812-3.5
  • 4f9a1c7 Merge pull request #18876 from ivanvc/release-3.5-backport-18649
  • cb970e5 release: use GitHub's gh to create GitHub release
  • 76275d6 release: properly change working dir if tmp location already exists
  • 4726460 Merge pull request #18854 from ghouscht/backport-defrag-close-temp-3.5
  • b2ba488 fix(defrag): close temp file in case of error
  • d770310 Merge pull request #18849 from ivanvc/release-3.5-update-go-to-1.22.9
  • bceca16 Bump go toolchain to 1.22.9
  • ab8bfc2 Merge pull request #18842 from ghouscht/defrag-fixes-backport-3.5
  • 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 dev-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/aliyun/alibaba-cloud-sdk-go](https://github.com/aliyun/alibaba-cloud-sdk-go) | `1.63.49` | `1.63.50` |
| [github.com/civo/civogo](https://github.com/civo/civogo) | `0.3.87` | `0.3.88` |
| [github.com/oracle/oci-go-sdk/v65](https://github.com/oracle/oci-go-sdk) | `65.78.0` | `65.78.1` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.1038` | `1.0.1040` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.1038` | `1.0.1040` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.1038` | `1.0.1040` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.5.16` | `3.5.17` |


Updates `github.com/aliyun/alibaba-cloud-sdk-go` from 1.63.49 to 1.63.50
- [Release notes](https://github.com/aliyun/alibaba-cloud-sdk-go/releases)
- [Changelog](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/ChangeLog.txt)
- [Commits](aliyun/alibaba-cloud-sdk-go@v1.63.49...v1.63.50)

Updates `github.com/civo/civogo` from 0.3.87 to 0.3.88
- [Release notes](https://github.com/civo/civogo/releases)
- [Changelog](https://github.com/civo/civogo/blob/master/changelog.yml)
- [Commits](civo/civogo@v0.3.87...v0.3.88)

Updates `github.com/oracle/oci-go-sdk/v65` from 65.78.0 to 65.78.1
- [Release notes](https://github.com/oracle/oci-go-sdk/releases)
- [Changelog](https://github.com/oracle/oci-go-sdk/blob/master/CHANGELOG.md)
- [Commits](oracle/oci-go-sdk@v65.78.0...v65.78.1)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common` from 1.0.1038 to 1.0.1040
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.1038...v1.0.1040)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod` from 1.0.1038 to 1.0.1040
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.1038...v1.0.1040)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns` from 1.0.1038 to 1.0.1040
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.1038...v1.0.1040)

Updates `go.etcd.io/etcd/client/v3` from 3.5.16 to 3.5.17
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.16...v3.5.17)

---
updated-dependencies:
- dependency-name: github.com/aliyun/alibaba-cloud-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/civo/civogo
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/oracle/oci-go-sdk/v65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 13, 2024
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign raffo for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Nov 13, 2024
@k8s-ci-robot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Nov 13, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 14, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 14, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/dev-dependencies-03a1735b69 branch November 14, 2024 03:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. dependencies Pull requests that update a dependency file go Pull requests that update Go code needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant