Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 10, 2024

This PR contains the following updates:

Package Change Age Confidence
cloud.google.com/go/compute/metadata v0.4.0 -> v0.8.0 age confidence

Release Notes

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

v0.8.0

Compare Source

  • profiler package added.
  • storage:
    • Retry Objects.Insert call.
    • Add ProgressFunc to WRiter.
  • pubsub: breaking changes:
    • Publish is now asynchronous (announcement).
    • Subscription.Pull replaced by Subscription.Receive, which takes a callback (announcement).
    • Message.Done replaced with Message.Ack and Message.Nack.

v0.7.0

Compare Source

  • Release of a client library for Spanner. See
    the
    blog
    post
    .
    Note that although the Spanner service is beta, the Go client library is alpha.

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.

v0.5.0

Compare Source

  • bigquery:
    • The SQL types DATE, TIME and DATETIME are now supported. They correspond to
      the Date, Time and DateTime types in the new cloud.google.com/go/civil
      package.
    • Support for query parameters.
    • Support deleting a dataset.
    • Values from INTEGER columns will now be returned as int64, not int. This
      will avoid errors arising from large values on 32-bit systems.
  • datastore:
    • Nested Go structs encoded as Entity values, instead of a
      flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg.
      type State struct {
        Cities  []struct{
          Populations []int
        }
      }
      See the announcement for
      more details.
    • Contexts no longer hold namespaces; instead you must set a key's namespace
      explicitly. Also, key functions have been changed and renamed.
    • The WithNamespace function has been removed. To specify a namespace in a Query, use the Query.Namespace method:
      q := datastore.NewQuery("Kind").Namespace("ns")
    • All the fields of Key are exported. That means you can construct any Key with a struct literal:
      k := &Key{Kind: "Kind",  ID: 37, Namespace: "ns"}
    • As a result of the above, the Key methods Kind, ID, d.Name, Parent, SetParent and Namespace have been removed.
    • NewIncompleteKey has been removed, replaced by IncompleteKey. Replace
      NewIncompleteKey(ctx, kind, parent)
      with
      IncompleteKey(kind, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • NewKey has been removed, replaced by NameKey and IDKey. Replace
      NewKey(ctx, kind, name, 0, parent)
      NewKey(ctx, kind, "", id, parent)
      with
      NameKey(kind, name, parent)
      IDKey(kind, id, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • The Done variable has been removed. Replace datastore.Done with iterator.Done, from the package google.golang.org/api/iterator.
    • The Client.Close method will have a return type of error. It will return the result of closing the underlying gRPC connection.
    • See the announcement for
      more details.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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
Contributor Author

renovate bot commented Jul 10, 2024

ℹ Artifact update notice

File name: function/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.19 -> 1.23.0
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 -> v0.34.0

@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from d9d8726 to 9e95a2e Compare September 12, 2024 18:45
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.5.0 Update module cloud.google.com/go/compute/metadata to v0.5.1 Sep 12, 2024
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 9e95a2e to 525ea3c Compare September 23, 2024 15:36
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.5.1 Update module cloud.google.com/go/compute/metadata to v0.5.2 Sep 23, 2024
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 525ea3c to 99ee6e3 Compare November 17, 2024 15:09
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 99ee6e3 to 124c0a3 Compare December 13, 2024 22:06
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.5.2 Update module cloud.google.com/go/compute/metadata to v0.6.0 Dec 13, 2024
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 Update module cloud.google.com/go/compute/metadata to v0.6.0 - autoclosed Dec 19, 2024
@renovate renovate bot closed this Dec 19, 2024
@renovate renovate bot deleted the renovate/cloud.google.com-go-compute-metadata-0.x branch December 19, 2024 09:35
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 - autoclosed Update module cloud.google.com/go/compute/metadata to v0.6.0 Dec 19, 2024
@renovate renovate bot reopened this Dec 19, 2024
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 9f3cfb3 to 124c0a3 Compare December 19, 2024 12:26
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 124c0a3 to f498bbd Compare March 3, 2025 11:55
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from f498bbd to 8af0fb9 Compare March 11, 2025 12:08
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 8af0fb9 to 8291844 Compare April 8, 2025 13:00
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 Update module cloud.google.com/go/compute/metadata to v0.6.0 - autoclosed Apr 9, 2025
@renovate renovate bot closed this Apr 9, 2025
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 - autoclosed Update module cloud.google.com/go/compute/metadata to v0.6.0 Apr 9, 2025
@renovate renovate bot reopened this Apr 9, 2025
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from af63a6b to 8291844 Compare April 9, 2025 22:04
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 Update module cloud.google.com/go/compute/metadata to v0.6.0 - autoclosed Apr 15, 2025
@renovate renovate bot closed this Apr 15, 2025
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 - autoclosed Update module cloud.google.com/go/compute/metadata to v0.6.0 Apr 15, 2025
@renovate renovate bot reopened this Apr 15, 2025
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 8dd7cda to 8291844 Compare April 15, 2025 05:35
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch 2 times, most recently from 6388db5 to 5b894cb Compare May 13, 2025 23:53
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.6.0 Update module cloud.google.com/go/compute/metadata to v0.7.0 May 13, 2025
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.7.0 Update module cloud.google.com/go/compute/metadata to v0.7.0 - autoclosed Jun 18, 2025
@renovate renovate bot closed this Jun 18, 2025
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.7.0 - autoclosed Update module cloud.google.com/go/compute/metadata to v0.7.0 Jun 18, 2025
@renovate renovate bot reopened this Jun 18, 2025
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch 2 times, most recently from 5b894cb to 6db3ca5 Compare June 19, 2025 03:36
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.7.0 Update module cloud.google.com/go/compute/metadata to v0.7.0 - autoclosed Jul 28, 2025
@renovate renovate bot closed this Jul 28, 2025
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.7.0 - autoclosed Update module cloud.google.com/go/compute/metadata to v0.7.0 Jul 28, 2025
@renovate renovate bot reopened this Jul 28, 2025
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch 2 times, most recently from 6db3ca5 to 7b31536 Compare July 29, 2025 01:56
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 7b31536 to 0fdc006 Compare August 7, 2025 01:07
@renovate renovate bot changed the title Update module cloud.google.com/go/compute/metadata to v0.7.0 Update module cloud.google.com/go/compute/metadata to v0.8.0 Aug 7, 2025
@renovate renovate bot force-pushed the renovate/cloud.google.com-go-compute-metadata-0.x branch from 0fdc006 to c58c39a Compare August 10, 2025 12:59
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants