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 the gomodupdates group across 1 directory with 14 updates #4595

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 26, 2024

Bumps the gomodupdates group with 12 updates in the / directory:

Package From To
cloud.google.com/go/secretmanager 1.13.6 1.14.0
github.com/aws/aws-sdk-go-v2/config 1.27.28 1.27.30
github.com/aws/aws-sdk-go-v2/service/ec2 1.175.1 1.176.0
github.com/aws/aws-sdk-go-v2/service/secretsmanager 1.32.5 1.32.6
github.com/aws/aws-sdk-go-v2/service/ssm 1.52.5 1.52.6
github.com/charmbracelet/bubbles 0.18.0 0.19.0
github.com/charmbracelet/bubbletea 0.27.0 0.27.1
go.mondoo.com/ranger-rpc 0.6.2 0.6.3
k8s.io/apimachinery 0.28.9 0.31.0
k8s.io/client-go 0.28.9 0.31.0
k8s.io/component-base 0.28.9 0.31.0
k8s.io/kubelet 0.28.9 0.31.0

Updates cloud.google.com/go/secretmanager from 1.13.6 to 1.14.0

Release notes

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

eventarc: v1.14.0

1.14.0 (2024-08-20)

Features

  • eventarc: Add support for Go 1.23 iterators (84461c0)

language: v1.14.0

1.14.0 (2024-08-20)

Features

  • language: Add support for Go 1.23 iterators (84461c0)

metastore: v1.14.0

1.14.0 (2024-08-20)

Features

  • metastore: Add support for Go 1.23 iterators (84461c0)

networkmanagement: v1.14.0

1.14.0 (2024-08-20)

Features

  • networkmanagement: Add support for Go 1.23 iterators (84461c0)

osconfig: v1.14.0

1.14.0 (2024-08-20)

Features

  • osconfig: Add support for Go 1.23 iterators (84461c0)

oslogin: v1.14.0

1.14.0 (2024-08-20)

Features

  • oslogin: Add support for Go 1.23 iterators (84461c0)

secretmanager: v1.14.0

1.14.0 (2024-08-20)

... (truncated)

Changelog

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

1.14.0 (2023-01-04)

Features

  • documentai: Add REST client (06a54a1)

1.13.0 (2022-12-01)

Features

  • documentai: added field_mask field in DocumentOutputConfig.GcsOutputConfig in document_io.proto (2a0b1ae)

1.12.0 (2022-11-16)

Features

  • documentai: added TrainProcessorVersion, EvaluateProcessorVersion, GetEvaluation, and ListEvaluations v1beta3 APIs feat: added evaluation.proto feat: added document_schema field in ProcessorVersion processor.proto feat: added image_quality_scores field in Document.Page in document.proto feat: added font_family field in Document.Style in document.proto (ac0c5c2)

1.11.0 (2022-11-09)

Features

  • documentai: added font_family to document.proto feat: added ImageQualityScores message to document.proto feat: added PropertyMetadata and EntityTypeMetadata to document_schema.proto (9c5d6c8)

1.10.0 (2022-11-03)

Features

  • documentai: rewrite signatures in terms of new location (3c4b2b3)

1.9.0 (2022-10-25)

Features

  • documentai: start generating stubs dir (de2d180)

1.8.0 (2022-09-21)

Features

  • documentai: rewrite signatures in terms of new types for betas (9f303f9)

1.7.0 (2022-09-19)

... (truncated)

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.27.28 to 1.27.30

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.28 to 1.17.29

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ec2 from 1.175.1 to 1.176.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/secretsmanager from 1.32.5 to 1.32.6

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ssm from 1.52.5 to 1.52.6

Commits

Updates github.com/charmbracelet/bubbles from 0.18.0 to 0.19.0

Release notes

Sourced from github.com/charmbracelet/bubbles's releases.

v0.19.0

Bugs? Squashed (along with a few nice lil’ features).

Community-Driven Development?! Yep, the majority of the changes in this release were done by the community. Thank you all for your contributions that made this release possible.

Progress: custom chars

You can now customize the filled and empty characters of the progress bar.

p := progress.New(progress.WithFillCharacters('>', '.'))

progress bar example

Table improvements

Help is on the way

Table now includes a short and full help view so it's easier than ever to tell your users how to interact with the table.

// Render a table with its help.
t := table.New()
view := t.View() + "\n" + t.HelpView()

Accessing columns

You can also now get the table's columns (this already existed for rows).

package table
// Columns returns the current columns.
func (m Model) Columns() []Column

List: page navigation is fixed!

Previously, list.NextPage() and list.PrevPage() didn't work because the methods did not have pointer receivers. We've fixed this…by making them pointer receivers!

⚠️ Note that this is a minor API change and you might need to update your app to pass a pointer receiver to your model rather than a copy. Details in #458.

package progress
// NextPage moves to the next page, if available.
func (m *Model) NextPage()
</tr></table>

... (truncated)

Commits
  • f25096d chore(lint): disable 'predeclared' linter
  • 235075a feat: add HelpView to table as a convenience
  • c1d9f7d feat(table): remove StyleFunc + add tests for table alignment (#586)
  • 549d076 chore: fix lint
  • 92d44ed feat(deps): bump github.com/charmbracelet/bubbletea (#587)
  • 5428d6d feat(key): accept any stringer interface to match keys (#584)
  • ff5fb57 ci: no announce
  • b8a38ff ci: use goreleaser for releases (#526)
  • 57c9331 feat(deps): bump github.com/mattn/go-runewidth from 0.0.15 to 0.0.16 (#565)
  • 6063cfb feat(deps): bump github.com/charmbracelet/lipgloss from 0.11.0 to 0.12.1 (#552)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/bubbletea from 0.27.0 to 0.27.1

Release notes

Sourced from github.com/charmbracelet/bubbletea's releases.

v0.27.1

This is a lil’ workaround for a hang that can occur when starting a program using Lip Gloss. For details see charmbracelet/bubbletea#1107.

Changelog

Bug fixes

  • d6458e03f27245a597a30234a532ef345af31d36: fix: force query the terminal bg before running any programs (@​aymanbagabas)

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

Commits
  • 17443d8 chore(deps): go mod tidy
  • d6458e0 fix: force query the terminal bg before running any programs
  • See full diff in compare view

Updates github.com/charmbracelet/lipgloss from 0.12.1 to 0.13.0

Release notes

Sourced from github.com/charmbracelet/lipgloss's releases.

v0.13.0

Woodn’t you know, Lip Gloss has trees!

Lip Gloss ships with a tree rendering sub-package.

import "github.com/charmbracelet/lipgloss/tree"

Define a new tree.

t := tree.Root(".").
    Child("A", "B", "C")

Print the tree.

fmt.Println(t)
// .
// ├── A
// ├── B
// └── C

Trees have the ability to nest.

t := tree.Root(".").
    Child("macOS").
    Child(
        tree.New().
            Root("Linux").
            Child("NixOS").
            Child("Arch Linux (btw)").
            Child("Void Linux"),
        ).
    Child(
        tree.New().
            Root("BSD").
            Child("FreeBSD").
            Child("OpenBSD"),
    )

Print the tree.

</tr></table> 

... (truncated)

Commits
  • bb3e339 docs(README): match tree example alignment with list examples
  • bc0de5c docs(README): make tree example match output
  • 185fde3 docs(README): update tree images
  • cf0a7c6 docs: fix tree screenshot
  • feb42a9 feat: move tree to root (#342)
  • 0618c73 feat(test): add test for JoinHorizontal (#346)
  • ed7f56e docs: fix CompleteColor example (#345)
  • 8a0e640 fix: remove unnecessary if
  • 87dd58d chore: fix little typo in comment in go.mod
  • See full diff in compare view

Updates go.mondoo.com/ranger-rpc from 0.6.2 to 0.6.3

Release notes

Sourced from go.mondoo.com/ranger-rpc's releases.

v0.6.3

What's Changed

Full Changelog: mondoohq/ranger-rpc@v0.6.2...v0.6.3

Commits
  • 97927b1 🧹 update proto examples (#91)
  • a3f3804 Bump the gomodupdates group with 2 updates (#94)
  • 62b862d Bump golang.org/x/crypto from 0.25.0 to 0.26.0 in the gomodupdates group (#92)
  • 6b6efa3 Bump contributor-assistant/github-action from 2.4.0 to 2.5.1 (#93)
  • be3074a Bump the gomodupdates group with 3 updates (#90)
  • 30fd205 Bump google.golang.org/protobuf in the gomodupdates group (#89)
  • 5e78c82 🐛 Fix goreleaser config version (#88)
  • See full diff in compare view

Updates k8s.io/apimachinery from 0.28.9 to 0.31.0

Commits
  • a8f449e Falls back to SPDY for gorilla/websocket https proxy error
  • 62791ec Merge pull request #125571 from liggitt/filter-auth-02-sar
  • cc2ba35 add field and label selectors to authorization attributes
  • ce76a8f generate
  • 35052c5 add subjectaccessreview field and label selectors
  • ab06869 Merge pull request #126105 from benluddy/cbor-framer
  • 429f4e4 Implement runtime.Framer for CBOR Sequences.
  • d7e1c53 Merge pull request #126018 from aroradaman/bump-k8s-utils
  • 07cb122 Merge pull request #125748 from benluddy/cbor-custom-marshalers
  • dd17456 bump k8s.io/utils
  • Additional commits viewable in compare view

Updates k8s.io/client-go from 0.28.9 to 0.31.0

Commits
  • 02a19c3 Update dependencies to v0.31.0 tag
  • 5e3e8ea informers: add comment that Start does not block
  • f71a5cc Call non-blocking informerFactory.Start synchronously to avoid races
  • 4536e5a Merge pull request #124012 from Jefftree/le-controller
  • 93c6a5b Merge pull request #126353 from liggitt/fix-vendor
  • 6a9911a revendor dependencies
  • fe54892 Merge pull request #126243 from SergeyKanzhelev/devicePluginFailures
  • 825f52e Change PingTime to be persistent
  • f45c451 fix ordering issue in candidates
  • 18dd587 feedback: leasecandidate clients
  • Additional commits viewable in compare view

Updates k8s.io/component-base from 0.28.9 to 0.31.0

Commits
  • 6123741 Update dependencies to v0.31.0 tag
  • 6332889 Merge pull request #126344 from MikeSpreitzer/fix-120112
  • 95f30f1 [sample-apiserver] Fix: Use Correct Effective Version for kube (#125941)
  • 763ac17 Merge pull request #126353 from liggitt/fix-vendor
  • 40cf325 revendor dependencies
  • d64a96d Relax noise margin in TestOneWeightedHistogram
  • 6cc953a Merge pull request #126204 from vrutkovs/unsafeRecordQueried-atomicPointer
  • f9413de featuregate: clone queriedFeatures only when mutation is needed
  • 6f32dbe Merge pull request #125926 from MadhavJivrajani/bump-staticcheck-exclude-SA1006
  • 64c7d3f .*: fix lint errors
  • Additional commits viewable in compare view

Updates k8s.io/kubelet from 0.28.9 to 0.31.0

Commits
  • b173915 Update dependencies to v0.31.0 tag
  • c90fbe9 Merge pull request #126031 from harche/kubelet_cgroupv1_arg
  • de521a3 Merge pull request #125488 from pohly/dra-1.31
  • c4a7fd5 DRA kubelet: adapt to v1alpha3 API
  • 136516c Merge pull request #125163 from pohly/dra-kubelet-api-version-independent-no-...
  • 9d8ab9f Merge pull request #122922 from marosset/windows-memory-eviction
  • 776d934 Kubelet option to disable cgroup v1 support
  • 78e0369 dra kubelet: bump gRPC API to v1alpha4
  • 45d6a8c DRA: read ResourceClaim in DRA drivers
  • 63f4c6d DRA: move ResourceSlice publishing into DRA drivers
  • 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 gomodupdates group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/secretmanager](https://github.com/googleapis/google-cloud-go) | `1.13.6` | `1.14.0` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.28` | `1.27.30` |
| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.175.1` | `1.176.0` |
| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.32.5` | `1.32.6` |
| [github.com/aws/aws-sdk-go-v2/service/ssm](https://github.com/aws/aws-sdk-go-v2) | `1.52.5` | `1.52.6` |
| [github.com/charmbracelet/bubbles](https://github.com/charmbracelet/bubbles) | `0.18.0` | `0.19.0` |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `0.27.0` | `0.27.1` |
| [go.mondoo.com/ranger-rpc](https://github.com/mondoohq/ranger-rpc) | `0.6.2` | `0.6.3` |
| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.28.9` | `0.31.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.28.9` | `0.31.0` |
| [k8s.io/component-base](https://github.com/kubernetes/component-base) | `0.28.9` | `0.31.0` |
| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.28.9` | `0.31.0` |



Updates `cloud.google.com/go/secretmanager` from 1.13.6 to 1.14.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md)
- [Commits](googleapis/google-cloud-go@automl/v1.13.6...kms/v1.14.0)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.28 to 1.27.30
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.27.28...config/v1.27.30)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.28 to 1.17.29
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.28...credentials/v1.17.29)

Updates `github.com/aws/aws-sdk-go-v2/service/ec2` from 1.175.1 to 1.176.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ec2/v1.175.1...service/ec2/v1.176.0)

Updates `github.com/aws/aws-sdk-go-v2/service/secretsmanager` from 1.32.5 to 1.32.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sqs/v1.32.5...service/fsx/v1.32.6)

Updates `github.com/aws/aws-sdk-go-v2/service/ssm` from 1.52.5 to 1.52.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.52.5...service/ssm/v1.52.6)

Updates `github.com/charmbracelet/bubbles` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Changelog](https://github.com/charmbracelet/bubbles/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbles@v0.18.0...v0.19.0)

Updates `github.com/charmbracelet/bubbletea` from 0.27.0 to 0.27.1
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Changelog](https://github.com/charmbracelet/bubbletea/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbletea@v0.27.0...v0.27.1)

Updates `github.com/charmbracelet/lipgloss` from 0.12.1 to 0.13.0
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Changelog](https://github.com/charmbracelet/lipgloss/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/lipgloss@v0.12.1...v0.13.0)

Updates `go.mondoo.com/ranger-rpc` from 0.6.2 to 0.6.3
- [Release notes](https://github.com/mondoohq/ranger-rpc/releases)
- [Changelog](https://github.com/mondoohq/ranger-rpc/blob/main/.goreleaser.yml)
- [Commits](mondoohq/ranger-rpc@v0.6.2...v0.6.3)

Updates `k8s.io/apimachinery` from 0.28.9 to 0.31.0
- [Commits](kubernetes/apimachinery@v0.28.9...v0.31.0)

Updates `k8s.io/client-go` from 0.28.9 to 0.31.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.28.9...v0.31.0)

Updates `k8s.io/component-base` from 0.28.9 to 0.31.0
- [Commits](kubernetes/component-base@v0.28.9...v0.31.0)

Updates `k8s.io/kubelet` from 0.28.9 to 0.31.0
- [Commits](kubernetes/kubelet@v0.28.9...v0.31.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/secretmanager
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomodupdates
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomodupdates
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ec2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: github.com/aws/aws-sdk-go-v2/service/secretsmanager
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomodupdates
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ssm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomodupdates
- dependency-name: github.com/charmbracelet/bubbles
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomodupdates
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: go.mondoo.com/ranger-rpc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomodupdates
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: k8s.io/component-base
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
- dependency-name: k8s.io/kubelet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomodupdates
...

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 Aug 26, 2024
Copy link
Contributor

Test Results

0 tests   - 3 097   0 ✅  - 3 096   0s ⏱️ - 1m 23s
0 suites  -   370   0 💤  -     1 
0 files    -    28   0 ❌ ±    0 

Results for commit 02eb8b2. ± Comparison against base commit e707ac2.

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 26, 2024

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

@dependabot dependabot bot closed this Aug 26, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/gomodupdates-62455a2404 branch August 26, 2024 10:42
@github-actions github-actions bot locked and limited conversation to collaborators Aug 26, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
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