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 across 1 directory with 16 updates #4358

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 11, 2024

Bumps the go-deps group with 11 updates in the / directory:

Package From To
github.com/aws/aws-sdk-go-v2 1.30.4 1.30.5
github.com/aws/aws-sdk-go-v2/config 1.27.31 1.27.33
github.com/aws/aws-sdk-go-v2/feature/s3/manager 1.17.16 1.17.18
github.com/aws/aws-sdk-go-v2/service/autoscaling 1.43.5 1.43.7
github.com/aws/aws-sdk-go-v2/service/ec2 1.177.0 1.177.3
github.com/getsentry/sentry-go 0.28.1 0.29.0
github.com/openshift-online/ocm-sdk-go 0.1.438 0.1.441
github.com/osbuild/images 0.83.0 0.85.0
github.com/prometheus/client_golang 1.20.2 1.20.3
github.com/vmware/govmomi 0.42.0 0.43.0
google.golang.org/api 0.195.0 0.197.0

Updates github.com/aws/aws-sdk-go-v2 from 1.30.4 to 1.30.5

Commits
  • a2b751d Release 2024-09-03
  • e22c249 Regenerated Clients
  • ff0cf6f Update API model
  • 3120376 refactoring of buildQuery to accept a list of maintained headers to l… (#2773)
  • 4ed838e Merge pull request #2768 from bhavya2109sharma/presignedurl-requestpayer-change
  • d4bd42f Merge branch 'main' into presignedurl-requestpayer-change
  • 0353706 Added Changelog
  • 97e2d3f Release 2024-08-30
  • 4cca52b Regenerated Clients
  • c8a5146 Update endpoints model
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/config from 1.27.31 to 1.27.33

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.30 to 1.17.32

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/ec2/imds from 1.16.12 to 1.16.13

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/s3/manager from 1.17.16 to 1.17.18

Commits

Updates github.com/aws/aws-sdk-go-v2/service/autoscaling from 1.43.5 to 1.43.7

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ec2 from 1.177.0 to 1.177.3

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.61.0 to 1.61.2

Commits

Updates github.com/getsentry/sentry-go from 0.28.1 to 0.29.0

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.29.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.29.0.

Breaking Changes

  • Remove the sentrymartini integration (#861)
  • The WrapResponseWriter has been moved from the sentryhttp package to the internal/httputils package. If you've imported it previosuly, you'll need to copy the implementation in your project. (#871)

Features

  • Add new convenience methods to continue a trace and propagate tracing headers for error-only use cases. (#862)

    If you are not using one of our integrations, you can manually continue an incoming trace by using sentry.ContinueTrace() by providing the sentry-trace and baggage header received from a downstream SDK.

    hub := sentry.CurrentHub()
    sentry.ContinueTrace(hub, r.Header.Get(sentry.SentryTraceHeader), r.Header.Get(sentry.SentryBaggageHeader)),

    You can use hub.GetTraceparent() and hub.GetBaggage() to fetch the necessary header values for outgoing HTTP requests.

    hub := sentry.GetHubFromContext(ctx)
    req, _ := http.NewRequest("GET", "http://localhost:3000", nil)
    req.Header.Add(sentry.SentryTraceHeader, hub.GetTraceparent())
    req.Header.Add(sentry.SentryBaggageHeader, hub.GetBaggage())

Bug Fixes

  • Initialize HTTPTransport.limit if nil (#844)
  • Fix sentry.StartTransaction() returning a transaction with an outdated context on existing transactions (#854)
  • Treat Proxy-Authorization as a sensitive header (#859)
  • Add support for the http.Hijacker interface to the sentrynegroni package (#871)
  • Go version >= 1.23: Use value from http.Request.Pattern for HTTP transaction names when using sentryhttp & sentrynegroni (#875)
  • Go version >= 1.21: Fix closure functions name grouping (#877)

Misc

  • Collect span origins (#849)
Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.29.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.29.0.

Breaking Changes

  • Remove the sentrymartini integration (#861)
  • The WrapResponseWriter has been moved from the sentryhttp package to the internal/httputils package. If you've imported it previosuly, you'll need to copy the implementation in your project. (#871)

Features

  • Add new convenience methods to continue a trace and propagate tracing headers for error-only use cases. (#862)

    If you are not using one of our integrations, you can manually continue an incoming trace by using sentry.ContinueTrace() by providing the sentry-trace and baggage header received from a downstream SDK.

    hub := sentry.CurrentHub()
    sentry.ContinueTrace(hub, r.Header.Get(sentry.SentryTraceHeader), r.Header.Get(sentry.SentryBaggageHeader)),

    You can use hub.GetTraceparent() and hub.GetBaggage() to fetch the necessary header values for outgoing HTTP requests.

    hub := sentry.GetHubFromContext(ctx)
    req, _ := http.NewRequest("GET", "http://localhost:3000", nil)
    req.Header.Add(sentry.SentryTraceHeader, hub.GetTraceparent())
    req.Header.Add(sentry.SentryBaggageHeader, hub.GetBaggage())

Bug Fixes

  • Initialize HTTPTransport.limit if nil (#844)
  • Fix sentry.StartTransaction() returning a transaction with an outdated context on existing transactions (#854)
  • Treat Proxy-Authorization as a sensitive header (#859)
  • Add support for the http.Hijacker interface to the sentrynegroni package (#871)
  • Go version >= 1.23: Use value from http.Request.Pattern for HTTP transaction names when using sentryhttp & sentrynegroni (#875)
  • Go version >= 1.21: Fix closure functions name grouping (#877)

Misc

  • Collect span origins (#849)
Commits

Updates github.com/openshift-online/ocm-sdk-go from 0.1.438 to 0.1.441

Release notes

Sourced from github.com/openshift-online/ocm-sdk-go's releases.

Release 0.1.441

  • Update model version v0.0.394
    • Add WifTemplates field to WifConfig model

Release 0.1.440

  • Update model version v0.0.393
    • Include missing field to hypershift model
    • Include new fields to manifest model
    • Remove v2alpha1 resources

Release 0.1.439

  • Update model version v0.0.392
    • Add vm WIF access type
    • Add support field to WifConfig resource
Changelog

Sourced from github.com/openshift-online/ocm-sdk-go's changelog.

0.1.441

  • Update model version v0.0.394
    • Add WifTemplates field to WifConfig model

0.1.440

  • Update model version v0.0.393
    • Include missing field to hypershift model
    • Include new fields to manifest model
    • Remove v2alpha1 resources

0.1.439

  • Update model version v0.0.392
    • Add vm WIF access type
    • Add support field to WifConfig resource
Commits
  • 70eea10 bump version to 0.1.441 (#996)
  • eb7091e Merge pull request #995 from gdbranco/feat/ocm-10883
  • f538306 chore: Release v0.1.440
  • f542f2e OCM-10883 | chore: bump api model to v0.0.393
  • 6b50545 OCM-10883 | feat: include manifests example
  • efcb490 Merge pull request #994 from gdbranco/feat/ocm-10939
  • 24ddb48 OCM-10939 | chore: bump metamodel to v0.0.61
  • b94f08d Merge pull request #993 from renan-campos/wif
  • 75f3861 chore: release v0.1.439
  • b41c6c2 chore: bump to ocm-api-model 0.0.392
  • See full diff in compare view

Updates github.com/osbuild/images from 0.83.0 to 0.85.0

Release notes

Sourced from github.com/osbuild/images's releases.

0.85.0

Changes with 0.85.0

  • Revert "manifest: switch to halt --eject to avoid auto-reboot" (#915)
    • Author: Michael Vogt, Reviewers: Achilleas Koutsou
  • Update osbuild dependency commit ID to latest (#913)
    • Author: SchutzBot, Reviewers: Achilleas Koutsou
  • cmd/otk-*: do basic input validation to avoid crashing too easily (#896)
    • Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  • pkg/osbuild: replace openscap with compliance in rhsm facts (#914)
    • Author: Sanne Raymaekers, Reviewers: Gianluca Zuccarelli

— Somewhere on the Internet, 2024-09-10

0.84.0

Changes with 0.84.0

  • Test configs for RHEL 10 (#908)
    • Author: Achilleas Koutsou, Reviewers: Gianluca Zuccarelli
  • build(deps): bump the go-deps group across 1 directory with 2 updates (#911)
    • Author: dependabot[bot], Reviewers: SchutzBot
  • image: add vhd/vpc support to BootcDiskImage (#909)
    • Author: Michael Vogt, Reviewers: Achilleas Koutsou
  • manifest: wait for user input before rebooting when creating a bootc installer (#714)
    • Author: Michael Vogt, Reviewers: Achilleas Koutsou
  • test: add Fedora 41 repositories (#867)
    • Author: Achilleas Koutsou, Reviewers: Simon de Vlieger

— Somewhere on the Internet, 2024-09-09

Commits
  • dc9903b cmd/otk-*: do basic input validation to avoid crashing too easily
  • 4cc61ea Revert "manifest: switch to halt --eject to avoid auto-reboot"
  • cadc2d2 pkg/osbuild: replace openscap with compliance in rhsm facts
  • b9a4a36 schutzfile: Update osbuild dependency commit ID
  • 7bfd9da image: add vhd/vpc support to BootcDiskImage
  • a857cec github: ensure python3 is installed in Fedora containers
  • 1fee9a7 github: run unit tests on Fedora 41
  • d8ffddc gitlab: add Fedora 41 build configs
  • 767979c test: add Fedora 41 repositories
  • 69be466 build(deps): bump the go-deps group across 1 directory with 2 updates
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.20.2 to 1.20.3

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.20.3

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608
Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.20.3 / 2024-09-05

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608
Commits
  • ef2f87e Merge pull request #1620 from prometheus/arthursens/prepare-1.20.3
  • 937ac63 Add changelog entry for 1.20.3
  • 6e9914d Merge pull request #1608 from krajorama/index-out-of-range-native-histogram-e...
  • d6b8c89 Update comments with more explanations
  • 504566f Use simplified solution from #1609 for the data race
  • dc8e9a4 fix: native histogram: Simplify and fix addExemplar
  • dc819ce Use a trivial solution to #1605
  • e061dfa native histogram: use exemplars in concurrency test
  • See full diff in compare view

Updates github.com/vmware/govmomi from 0.42.0 to 0.43.0

Release notes

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

v0.43.0

Release v0.43.0

Release Date: 2024-09-10

🐞 Fix

  • [97aa7214] vcsim: avoid possible race when encoding PropertyCollector response (#3533)
  • [ad2d3573] use complete InventoryPath in Datacenter.Folders (#3523)

💫 API Changes

  • [476704a3] Fault helpers
  • [caad54aa] add VirtualMachine.AddDeviceWithProfile method
  • [a316da5c] VirtualMachine.AttachDisk unitNumber param is optional
  • [8491321a] ToString for vim types
  • [64610213] add namespace.RegisterVM binding
  • [e602029e] Fix panic when encoding nil iface ptrs to JSON

💫 govc (CLI)

  • [8fd86912] add disk.create '-profile' flag
  • [ea3cf257] add vm.disk.create '-profile' flag
  • [e73c34fa] add vm.disk.attach '-profile' flag
  • [06dcf31a] Add '-size' flag to datastore.create (#3519)
  • [23390c23] add namespace.registervm command
  • [1892eecd] Support thick/eager disk opts on vm.create (#3526)

💫 vcsim (Simulator)

  • [8421b678] Support PlaceVm with relocate placement type
  • [9234233e] Support PlaceVm with reconfigure placement type
  • [f06d0834] add VirtualMachine AttachDisk and DetachDisk methods
  • [35dc193f] Support VM crypto spec in vC Sim
  • [0517b87e] add namespace/registervm implementation

🧹 Chore

  • [b17abb20] Update version.go for v0.43.0
  • [93da4a20] sync generated govc/USAGE.md
  • [51105db8] govc: add common StorageProfileFlag

⚠️ BREAKING

VirtualMachine.AttachDisk unitNumber param is optional [a316da5c]: switching from int32 to *int32, otherwise the client must choose a valid unitNumber. vCenter will choose a unitNumber when not provided.

... (truncated)

Commits
  • b17abb2 chore: Update version.go for v0.43.0
  • 139b19e Merge pull request #3527 from bzed/disk_prov
  • bc0c8a0 Merge pull request #3544 from akutz/feature/fault
  • 476704a api: Fault helpers
  • 0a94649 Merge pull request #3546 from yanleizhao-vmware/feature/vcsim-support-placevm...
  • 8421b67 vcsim: Support PlaceVm with relocate placement type
  • d3cb5c6 Merge pull request #3545 from ericvmw/issue-3542
  • 93b97e1 Update library state info to content library API
  • c1151f8 Merge pull request #3543 from yanleizhao-vmware/yanleizhao-vmware/feature/sim...
  • 988a047 Merge pull request #3539 from dougm/disk-attach
  • Additional commits viewable in compare view

Updates golang.org/x/oauth2 from 0.22.0 to 0.23.0

Commits

Updates golang.org/x/sys from 0.24.0 to 0.25.0

Commits
  • a43b625 windows: add SIO_UDP_NETRESET constant
  • ed67b15 windows: add console codepage api
  • 9cb830b unix: add missing import to syscall_hurd.go
  • 71132f5 unix: add POLLRDHUP to FreeBSD
  • 3283fc3 cpu: add support for detecting RISC-V extensions
  • 29e55b2 unix: use os.Executable rather than os.Args[0] in tests
  • a8c5219 unix: rename XDPUmemReg field back to Size
  • 59665e5 unix: add Connectx for darwin
  • a0c72ef unix: add f_flag member flags on z/OS
  • c64c51d unix: update riscv64 hwprobe to Linux kernel 6.10
  • Additional commits viewable in compare view

Updates google.golang.org/api from 0.195.0 to 0.197.0

Release notes

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

v0.197.0

0.197.0 (2024-09-10)

Features

Bug Fixes

  • transport: Set UniverseDomain in http.NewClient for new auth (#2773) (140d0a5)

v0.196.0

0.196.0 (2024-09-03)

Features

Changelog

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

0.197.0 (2024-09-10)

Features

Bug Fixes

  • transport: Set UniverseDomain in http.NewClient for new auth (#2773) (140d0a5)

0.196.0 (2024-09-03)

Features

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Sep 11, 2024
Bumps the go-deps group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.4` | `1.30.5` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.31` | `1.27.33` |
| [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2) | `1.17.16` | `1.17.18` |
| [github.com/aws/aws-sdk-go-v2/service/autoscaling](https://github.com/aws/aws-sdk-go-v2) | `1.43.5` | `1.43.7` |
| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.177.0` | `1.177.3` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.28.1` | `0.29.0` |
| [github.com/openshift-online/ocm-sdk-go](https://github.com/openshift-online/ocm-sdk-go) | `0.1.438` | `0.1.441` |
| [github.com/osbuild/images](https://github.com/osbuild/images) | `0.83.0` | `0.85.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.20.2` | `1.20.3` |
| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.42.0` | `0.43.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.195.0` | `0.197.0` |



Updates `github.com/aws/aws-sdk-go-v2` from 1.30.4 to 1.30.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.30.4...v1.30.5)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.31 to 1.27.33
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.27.31...config/v1.27.33)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.30 to 1.17.32
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.30...credentials/v1.17.32)

Updates `github.com/aws/aws-sdk-go-v2/feature/ec2/imds` from 1.16.12 to 1.16.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.16.12...v1.16.13)

Updates `github.com/aws/aws-sdk-go-v2/feature/s3/manager` from 1.17.16 to 1.17.18
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.16...credentials/v1.17.18)

Updates `github.com/aws/aws-sdk-go-v2/service/autoscaling` from 1.43.5 to 1.43.7
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/fsx/v1.43.5...service/fsx/v1.43.7)

Updates `github.com/aws/aws-sdk-go-v2/service/ec2` from 1.177.0 to 1.177.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ec2/v1.177.0...service/ec2/v1.177.3)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.61.0 to 1.61.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.61.0...service/s3/v1.61.2)

Updates `github.com/getsentry/sentry-go` from 0.28.1 to 0.29.0
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.28.1...v0.29.0)

Updates `github.com/openshift-online/ocm-sdk-go` from 0.1.438 to 0.1.441
- [Release notes](https://github.com/openshift-online/ocm-sdk-go/releases)
- [Changelog](https://github.com/openshift-online/ocm-sdk-go/blob/main/CHANGES.md)
- [Commits](openshift-online/ocm-sdk-go@v0.1.438...v0.1.441)

Updates `github.com/osbuild/images` from 0.83.0 to 0.85.0
- [Release notes](https://github.com/osbuild/images/releases)
- [Commits](osbuild/images@v0.83.0...v0.85.0)

Updates `github.com/prometheus/client_golang` from 1.20.2 to 1.20.3
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.3/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.20.2...v1.20.3)

Updates `github.com/vmware/govmomi` from 0.42.0 to 0.43.0
- [Release notes](https://github.com/vmware/govmomi/releases)
- [Changelog](https://github.com/vmware/govmomi/blob/main/CHANGELOG.md)
- [Commits](vmware/govmomi@v0.42.0...v0.43.0)

Updates `golang.org/x/oauth2` from 0.22.0 to 0.23.0
- [Commits](golang/oauth2@v0.22.0...v0.23.0)

Updates `golang.org/x/sys` from 0.24.0 to 0.25.0
- [Commits](golang/sys@v0.24.0...v0.25.0)

Updates `google.golang.org/api` from 0.195.0 to 0.197.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.195.0...v0.197.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/ec2/imds
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/s3/manager
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/service/autoscaling
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ec2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/getsentry/sentry-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/openshift-online/ocm-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/osbuild/images
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: golang.org/x/sys
  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 force-pushed the dependabot/go_modules/go-deps-a29b681980 branch from 249a288 to 931dc01 Compare September 12, 2024 04:29
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 13, 2024

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

@dependabot dependabot bot closed this Sep 13, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/go-deps-a29b681980 branch September 13, 2024 04:23
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