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-deps group with 4 updates #177

Merged
merged 1 commit into from
Sep 26, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 26, 2023

Bumps the go-deps group with 4 updates: github.com/aws/aws-sdk-go, github.com/gophercloud/gophercloud, github.com/vmware/govmomi and google.golang.org/api.

Updates github.com/aws/aws-sdk-go from 1.45.15 to 1.45.16

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.45.16 (2023-09-25)

Service Client Updates

  • service/amplifyuibuilder: Updates service API and documentation
  • service/chime-sdk-media-pipelines: Updates service API, documentation, and paginators
  • service/emr-serverless: Updates service API and documentation
  • service/finspace-data: Updates service API and documentation
  • service/quicksight: Updates service API and documentation
    • Added ability to tag users upon creation.
  • service/ssm: Updates service API and documentation
    • This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output.
  • service/wafv2: Updates service API and documentation
Commits

Updates github.com/gophercloud/gophercloud from 1.6.0 to 1.7.0

Release notes

Sourced from github.com/gophercloud/gophercloud's releases.

v1.7.0

What's Changed

Full Changelog: gophercloud/gophercloud@v1.6.0...v1.7.0

Changelog

Sourced from github.com/gophercloud/gophercloud's changelog.

v1.7.0 (2023-09-22)

New features and improvements:

  • GH-2782 [v1] (manual clean backport) Add tag field to compute block_device_v2

CI changes:

  • GH-2760 [v1 backports] semver auto labels
  • GH-2775 [v1] Fix typos in comments
  • GH-2783 [v1] (clean manual backport) ci/functional: fix ubuntu version & add antelope
  • GH-2785 [v1] Acceptance: Handle numerical version names in version comparison helpers
  • GH-2787 backport-v1: fixes to semver label
  • GH-2788 [v1] Make acceptance tests internal
Commits
  • 1ef3b08 Merge pull request #2789 from EmilienM/release_1.7.0
  • 4f4a056 Prepare 1.7.0
  • d462f04 Merge pull request #2788 from gophercloud/bp-v1-6f31881-7bec78e
  • 39c2b02 Fix acceptancetest script when running without argument
  • 5871a11 Make acceptance tests internal
  • b024625 Merge pull request #2787 from EmilienM/backport_label_fix
  • fc1b8fc Merge pull request #2785 from gophercloud/bp-v1-8a3a10b-5819dc0
  • 27c2a3f Fix semver-auto
  • d7d4aac ci/semver-auto: return a failure only when needed
  • e5568fe Acceptance: Fix IsCurrentBelow and IsCurrentAbove functions
  • Additional commits viewable in compare view

Updates github.com/vmware/govmomi from 0.30.7 to 0.31.0

Release notes

Sourced from github.com/vmware/govmomi's releases.

v0.31.0

Release v0.31.0

Release Date: 2023-09-25

⚠️ BREAKING

  • [b594bf1f] Move to main

    Changing GoVmomi's default branch from master to main will likely result in dependents needing to repoint their clients and other integrations to the new, default branch.

  • [99200868] Generate JSON tags

    Updating the vim25/types with camelCased, JSON tags affects the output of the govc command when using the -json flag to emit results as JSON. Field names that used to be PascalCased will now be camelCased. Queries for tools that parse JSON, such as jq, will need to be updated to use the new camelCased fields.

    This change was made to support marshaling the eam, pbm, sms, vim, and vslm types to/from JSON using OpenAPI JSON discriminators.

  • [4f9f126a] Change string to *string for Item.Description and Library.Description in library package

    • Test against a VC testbed

      Sending a UpdateLibraryItem request with this change, and set the new description to "". The original item description was "virtualmachinepublishrequest.vmware.com: 6b0d06ad-8e18-4881-a806-2a7c8a7e1b4b", after this UpdateLibraryItem request succeeded, the item description was set to "". While before this change, it would be a no-op for the description.

    • Test using govc

      • Update Library

        Create a library:
        ➜  govmomi git:(issue-3048) ✗ govc library.create -d "description-1" cl-1
        495f611a-cf74-40d6-a54a-8b239cf15406
        ➜  govmomi git:(issue-3048) ✗ ~/go/bin/govc library.info 495f611a-cf74-40d6-a54a-8b239cf15406
        Name:                 cl-1
          ID:                 495f611a-cf74-40d6-a54a-8b239cf15406
          Path:               /cl-1
          Description:        description-1
          Version:            2
          Created:            Fri Feb 17 19:18:22 2023
          Security Policy ID
          StorageBackings:
            DatastoreID:      sharedVmfs-0
            Type:             DATASTORE
        

        Update the library description with new string: ➜ govmomi git:(issue-3048) ✗ ~/go/bin/govc library.update -d "new description" 495f611a-cf74-40d6-a54a-8b239cf15406 ➜ govmomi git:(issue-3048) ✗ ~/go/bin/govc library.info 495f611a-cf74-40d6-a54a-8b239cf15406 Name: cl-1 ID: 495f611a-cf74-40d6-a54a-8b239cf15406

... (truncated)

Commits
  • 2fab8d5 chore: Update version.go for v0.31.0
  • 9d6dca6 Merge pull request #3236 from akutz/feature/8.0U2
  • a03f473 api: Fix errors w 8.0U2 GA update
  • 515df5d api: Update generated types to vSphere 8.0U2 GA
  • b7ceede api: Prep to update types to vSphere 8.0U2 GA
  • c59c149 Merge pull request #3227 from mayankbh/topic/bmayank/guest-datastore-upload-d...
  • 3fb5b82 Use Envoy sidecar for guest and datastore file transfer.
  • 877833c Merge pull request #3228 from vmware/dependabot/github_actions/goreleaser/gor...
  • a83ec3f Merge pull request #3232 from akutz/feature/data-struct-comments
  • cd6389f Merge pull request #3229 from dekp/issue-3050
  • Additional commits viewable in compare view

Updates google.golang.org/api from 0.142.0 to 0.143.0

Release notes

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

v0.143.0

0.143.0 (2023-09-25)

Features

Bug Fixes

Changelog

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

0.143.0 (2023-09-25)

Features

Bug Fixes

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 go-deps group with 4 updates: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go), [github.com/gophercloud/gophercloud](https://github.com/gophercloud/gophercloud), [github.com/vmware/govmomi](https://github.com/vmware/govmomi) and [google.golang.org/api](https://github.com/googleapis/google-api-go-client).


Updates `github.com/aws/aws-sdk-go` from 1.45.15 to 1.45.16
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.45.15...v1.45.16)

Updates `github.com/gophercloud/gophercloud` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/gophercloud/gophercloud/releases)
- [Changelog](https://github.com/gophercloud/gophercloud/blob/v1.7.0/CHANGELOG.md)
- [Commits](gophercloud/gophercloud@v1.6.0...v1.7.0)

Updates `github.com/vmware/govmomi` from 0.30.7 to 0.31.0
- [Release notes](https://github.com/vmware/govmomi/releases)
- [Changelog](https://github.com/vmware/govmomi/blob/main/CHANGELOG.md)
- [Commits](vmware/govmomi@v0.30.7...v0.31.0)

Updates `google.golang.org/api` from 0.142.0 to 0.143.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.142.0...v0.143.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/gophercloud/gophercloud
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/vmware/govmomi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
...

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 Sep 26, 2023
@github-actions github-actions bot added this pull request to the merge queue Sep 26, 2023
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to no response for status checks Sep 26, 2023
@achilleas-k achilleas-k added this pull request to the merge queue Sep 26, 2023
Merged via the queue into main with commit a97dee9 Sep 26, 2023
9 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/go-deps-ce8b6bb405 branch September 26, 2023 12:09
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