ts-bridge
ts-bridge copied to clipboard
Bump cloud.google.com/go/profiler from 0.3.1 to 0.4.0
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: -
NewGCSReferenceis now a function, not a method onClient.
Table.LoaderFromnow accepts aReaderSource, enabling loading data into a table from a file or anyio.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
8c2dc61logging: check for exact # of logs in tests4791784logadmin: use generated iterators384ca55storage: use pointer receiver for ObjectAttrsbd8a5e8datastore: add new key functions09d95d9bigtable/bttest: add emulator support for DeleteCellsInFamily7ee19e7bigquery: restore semantics of ForceZeroQuotef7f94a2bigquery: clean up implementation of LoadSourcef9c9ec4storage: always send destination in compose request67f57c5storage: readObject method for tests28994ffbigtable: Use connection pool by default for data client.- 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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)