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 cloud.google.com/go/profiler from 0.3.1 to 0.4.0 #1779

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 19, 2023

Bumps cloud.google.com/go/profiler from 0.3.1 to 0.4.0.

Release notes

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

profiler: v0.4.0

0.4.0 (2023-10-18)

Features

  • profiler: Support configurable debug logging destination (#8104) (fc3d840)
  • profiler: Update all direct dependencies (b340d03)

Bug Fixes

  • profiler: Migrate to protobuf-go v2 (#8730) (deeb583), refs #8585
  • profiler: REST query UpdateMask bug (df52820)
  • profiler: Update golang.org/x/net to v0.17.0 (174da47)
  • profiler: Update grpc to v1.55.0 (1147ce0)

grafeas: v0.3.2

0.3.2 (2023-10-12)

Bug Fixes

  • grafeas: Update golang.org/x/net to v0.17.0 (174da47)

grafeas: v0.3.2

0.3.2 (2023-10-12)

Bug Fixes

  • grafeas: Update golang.org/x/net to v0.17.0 (174da47)
Changelog

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

v0.4.0

  • bigquery: -NewGCSReference is now a function, not a method on Client.
    • Table.LoaderFrom now accepts a ReaderSource, enabling loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed. Replace

      client.OpenTable("project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table")
    • Client.CreateTable has been removed. Replace

      client.CreateTable(ctx, "project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
    • Dataset.ListTables have been replaced with Dataset.Tables. Replace

      tables, err := ds.ListTables(ctx)

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read. Replace

      it, err := client.Read(ctx, job)

... (truncated)

Commits
  • 8c2dc61 logging: check for exact # of logs in tests
  • 4791784 logadmin: use generated iterators
  • 384ca55 storage: use pointer receiver for ObjectAttrs
  • bd8a5e8 datastore: add new key functions
  • 09d95d9 bigtable/bttest: add emulator support for DeleteCellsInFamily
  • 7ee19e7 bigquery: restore semantics of ForceZeroQuote
  • f7f94a2 bigquery: clean up implementation of LoadSource
  • f9c9ec4 storage: always send destination in compose request
  • 67f57c5 storage: readObject method for tests
  • 28994ff bigtable: Use connection pool by default for data client.
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team as a code owner October 19, 2023 11:27
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Oct 19, 2023
@codecov
Copy link

codecov bot commented Oct 19, 2023

Codecov Report

Merging #1779 (65f6a75) into main (1bde2df) will not change coverage.
Report is 1 commits behind head on main.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main    #1779   +/-   ##
=======================================
  Coverage   66.54%   66.54%           
=======================================
  Files          90       90           
  Lines        9048     9048           
=======================================
  Hits         6021     6021           
  Misses       2298     2298           
  Partials      729      729           
Flag Coverage Δ
e2etests 48.13% <ø> (+0.02%) ⬆️
unittests 47.61% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

@cpanato
Copy link
Member

cpanato commented Oct 19, 2023

@dependabot rebase

Bumps [cloud.google.com/go/profiler](https://github.com/googleapis/google-cloud-go) from 0.3.1 to 0.4.0.
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@talent/v0.3.1...v0.4.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/profiler
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/cloud.google.com/go/profiler-0.4.0 branch from ef0c5b5 to 65f6a75 Compare October 19, 2023 12:03
@cpanato cpanato enabled auto-merge (squash) October 19, 2023 12:05
@cpanato cpanato merged commit 7a67ccf into main Oct 19, 2023
14 checks passed
@cpanato cpanato deleted the dependabot/go_modules/cloud.google.com/go/profiler-0.4.0 branch October 19, 2023 12:25
@github-actions github-actions bot added this to the v1.2.2 milestone Oct 19, 2023
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.

None yet

2 participants