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(all): update all #296

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

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Dec 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go/artifactregistry v1.15.0 -> v1.16.1 age adoption passing confidence require minor
cloud.google.com/go/compute/metadata v0.5.0 -> v0.6.0 age adoption passing confidence require minor
github.com/AlecAivazis/survey/v2 v2.0.7 -> v2.3.7 age adoption passing confidence require minor
github.com/briandowns/spinner v1.9.0 -> v1.23.1 age adoption passing confidence require minor
github.com/fatih/color v1.15.0 -> v1.18.0 age adoption passing confidence require minor
github.com/pkg/errors v0.8.1 -> v0.9.1 age adoption passing confidence require minor
go (source) 1.21.0 -> 1.23.4 age adoption passing confidence toolchain minor
golang 1.21-alpine -> 1.23-alpine age adoption passing confidence stage minor
google.golang.org/api v0.193.0 -> v0.216.0 age adoption passing confidence require minor
google.golang.org/grpc v1.65.0 -> v1.69.4 age adoption passing confidence require minor

Release Notes

googleapis/google-cloud-go (cloud.google.com/go/compute/metadata)

v0.6.0

  • Beta release of BigQuery, DataStore, Logging and Storage. See the
    blog post.

  • bigquery:

    • struct support. Read a row directly into a struct with
      RowIterator.Next, and upload a row directly from a struct with Uploader.Put.
      You can also use field tags. See the [package documentation][cloud-bigquery-ref]
      for details.

    • The ValueList type was removed. It is no longer necessary. Instead of

    var v ValueList
    ... it.Next(&v) ..

    use

    var v []Value
    ... it.Next(&v) ...
    • Previously, repeatedly calling RowIterator.Next on the same []Value or
      ValueList would append to the slice. Now each call resets the size to zero first.

    • Schema inference will infer the SQL type BYTES for a struct field of
      type []byte. Previously it inferred STRING.

    • The types uint, uint64 and uintptr are no longer supported in schema
      inference. BigQuery's integer type is INT64, and those types may hold values
      that are not correctly represented in a 64-bit signed integer.

AlecAivazis/survey (github.com/AlecAivazis/survey/v2)

v2.3.7

Compare Source

v2.3.6

Compare Source

v2.3.5

Compare Source

v2.3.4

Compare Source

What's Changed

Full Changelog: AlecAivazis/survey@v2.3.3...v2.3.4

v2.3.3

Compare Source

v2.3.2

Compare Source

v2.3.1

Compare Source

v2.3.0: Cursor tracks select focus

Compare Source

v2.2.16

Compare Source

v2.2.15

Compare Source

v2.2.14

Compare Source

v2.2.13

Compare Source

v2.2.12

Compare Source

v2.2.11

Compare Source

v2.2.10

Compare Source

v2.2.9

Compare Source

v2.2.8

Compare Source

v2.2.7

Compare Source

v2.2.6

Compare Source

v2.2.5

Compare Source

v2.2.4

Compare Source

v2.2.3

Compare Source

v2.2.2: Fixed another display bug, this time with Inputs

Compare Source

v2.2.1: Fixed display bug in longlists

Compare Source

v2.2.0: Added Input suggestions and bug fixes/accessibility improvements

Compare Source

This release contains improvements to our support for Konsole, improved accessibility, and a way to provide suggestions to the basic Input prompt.

Thanks to everyone who helped get this in!

v2.1.1

Compare Source

v2.1.0: Added select/deselect all to MultiSelect prompt

Compare Source

Users can now press right and left arrows to select and deselect respectively.

Thanks to @​chiaretto for this improvement!

v2.0.8: Fixed rendering of prompts in when the terminal overflows.

Compare Source

This release is thanks to @​coryb and @​Zalgo2462!

briandowns/spinner (github.com/briandowns/spinner)

v1.23.1

Compare Source

What's Changed

New Contributors

Full Changelog: briandowns/spinner@v1.23.0...v1.23.1

v1.23.0

Compare Source

v1.22.0

Compare Source

v1.21.0

Compare Source

v1.20.0

Compare Source

v1.19.0

Compare Source

v1.18.1

Compare Source

v1.18.0

Compare Source

v1.17.0

Compare Source

v1.16.0

Compare Source

v1.15.0

Compare Source

v1.14.0

Compare Source

v1.13.0

Compare Source

v1.12.0

Compare Source

v1.11.1

Compare Source

v1.11.0

Compare Source

v1.10.0

Compare Source

fatih/color (github.com/fatih/color)

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: fatih/color@v1.17.0...v1.18.0

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: fatih/color@v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed

Dependency updates

New Contributors

Full Changelog: fatih/color@v1.15.0...v1.16.0

pkg/errors (github.com/pkg/errors)

v0.9.1: errors 0.9.1

Compare Source

pkg/errors 0.9.1 is a bug fix release for errors 0.9.0. This restore the previous behaviour on Cause method, this behaviour was changed on the PR: #​215 and many breaking changes was produced by that.

v0.9.0: errors 0.9.0

Compare Source

errors 0.9.0 is a preparation release for a 1.0 final release. Also we were working on removing support for Go 1.8, 1.9 and 1.10 and earlier, and become compatible this package with new way of errors on Go 1.13.

We tried to move into runtime.CallerFrames but this was not possible, you can show the explanation here: Issue 188.

The motivation for do the backward compatible this package with Go 1.13 is that you can migrate the easy way for this to the new way.

Now you could use the methods, Is and As, and the Unwrap() interface like on the standard library.

The method Cause is now compatible with fmt.Errorf("%w", err) and with the Unwrap() interface.

On the same way the methods related with wrapping on this package now are compatible with Cause and Unwrap() interface.

Improvements

Bugs fixed

  • .travis.yml Adjust Go versions. Thanks @​komuw, @​aperezg
  • minor fix in an example to print Stack Trace. Thanks @​bep.
  • Remove not necessary code.
  • Clean up documentation. Thanks @​seh.
golang/go (go)

v1.23.4

v1.23.3

v1.23.2

v1.23.1

v1.23.0

v1.22.10

v1.22.9

v1.22.8

v1.22.7

v1.22.6

v1.22.5

v1.22.4

v1.22.3

v1.22.2

v1.22.1

v1.22.0

v1.21.13

v1.21.12

v1.21.11

v1.21.10

v1.21.9

v1.21.8

v1.21.7

v1.21.6

v1.21.5

v1.21.4

v1.21.3

v1.21.2

v1.21.1

googleapis/google-api-go-client (google.golang.org/api)

v0.216.0

Compare Source

Features

v0.215.0

Compare Source

Features

v0.214.0

Compare Source

Features

v0.213.0

Compare Source

Features

v0.212.0

Compare Source

Features

v0.211.0

Compare Source

Features
Bug Fixes

v0.210.0

Compare Source

Features
Bug Fixes

v0.209.0

Compare Source

Features

v0.208.0

Compare Source

Features
  • all: Auto-regenerate discovery clients (#​2881) (44435a9)
  • gensupport: Per-chunk transfer timeout configs (09fa125)
  • gensupport: Per-chunk transfer timeout configs (#​2865) (09fa125)

v0.207.0

Compare Source

Features

v0.206.0

Compare Source

Features

v0.205.0

Compare Source

Features

v0.204.0

Compare Source

Features
Bug Fixes
  • transport/grpc: Pass through cert source to new auth lib (#​2840) (c67e7c0)
Documentation

v0.203.0

Compare Source

Features

v0.202.0

Compare Source

Features

v0.201.0

Compare Source

Features

v0.200.0

Compare Source

Features

v0.199.0

Compare Source

Features
  • all: Auto-regenerate discovery clients (#​2791) (bd9630a)
  • all: Auto-regenerate discovery clients (#​2793) (ac7c6de)
  • all: Auto-regenerate discovery clients (#​2794) (d0e0dc3)
  • all: Auto-regenerate discovery clients ([#​2

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: downloading go1.23.4 (linux/amd64)
go: download go1.23.4: golang.org/[email protected]: verifying module: checksum database disabled by GOSUMDB=off

@renovate-bot renovate-bot force-pushed the renovate/all branch 4 times, most recently from ab5180b to 29b4a8c Compare December 20, 2024 04:56
@renovate-bot renovate-bot force-pushed the renovate/all branch 3 times, most recently from acd5264 to 27e124e Compare January 9, 2025 17:13
@renovate-bot renovate-bot force-pushed the renovate/all branch 2 times, most recently from 0ad28d4 to 073e663 Compare January 13, 2025 23:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant