GoogleCloudPlatform / prometheus-engine

Google Cloud Managed Service for Prometheus libraries and manifests.
https://g.co/cloud/managedprometheus
Apache License 2.0
191 stars 89 forks source link

fix(deps): bump the go-deps group with 12 updates #934

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 5 months ago

Bumps the go-deps group with 12 updates:

Package From To
cloud.google.com/go/compute/metadata 0.2.3 0.3.0
cloud.google.com/go/monitoring 1.18.0 1.18.2
github.com/googleapis/gax-go/v2 2.12.0 2.12.3
github.com/prometheus/client_golang 1.18.0 1.19.0
github.com/prometheus/client_model 0.5.0 0.6.1
github.com/stretchr/testify 1.8.4 1.9.0
go.uber.org/zap 1.26.0 1.27.0
golang.org/x/mod 0.15.0 0.17.0
golang.org/x/oauth2 0.17.0 0.18.0
google.golang.org/api 0.162.0 0.172.0
google.golang.org/genproto/googleapis/api 0.0.0-20240205150955-31a09d347014 0.0.0-20240401170217-c3f982113cda
google.golang.org/grpc 1.61.0 1.62.1

Updates cloud.google.com/go/compute/metadata from 0.2.3 to 0.3.0

Release notes

Sourced from cloud.google.com/go/compute/metadata's releases.

config: v0.3.0

0.3.0 (2024-03-19)

Features

  • config: Infrastructure Manager supports the deployment of infrastructure from Terraform configurations in a private Git repository (a3bb7c0)

compute/metadata: v0.3.0

0.3.0 (2024-04-15)

Features

  • compute/metadata: Add context aware functions (#9733) (e4eb5b4)

netapp: v0.2.7

0.2.7 (2024-03-25)

Documentation

  • netapp: Rephrase comment on psa_range (1ef5b19)

policysimulator: v0.2.4

0.2.4 (2024-03-14)

Bug Fixes

  • policysimulator: Update protobuf dep to v1.33.0 (30b038d)
Changelog

Sourced from cloud.google.com/go/compute/metadata's changelog.

v0.3.0

  • storage:
    • AdminClient replaced by methods on Client. Replace

      adminClient.CreateBucket(ctx, bucketName, attrs)
      

      with

      client.Bucket(bucketName).Create(ctx, projectID, attrs)
      
    • BucketHandle.List replaced by BucketHandle.Objects. Replace

      for query != nil {
          objs, err := bucket.List(d.ctx, query)
          if err != nil { ... }
          query = objs.Next
          for _, obj := range objs.Results {
              fmt.Println(obj)
          }
      }
      

      with

      iter := bucket.Objects(d.ctx, query)
      for {
          obj, err := iter.Next()
          if err == iterator.Done {
              break
          }
          if err != nil { ... }
          fmt.Println(obj)
      }
      

      (The iterator package is at google.golang.org/api/iterator.)

      Replace Query.Cursor with ObjectIterator.PageInfo().Token.

      Replace Query.MaxResults with ObjectIterator.PageInfo().MaxSize.

    • ObjectHandle.CopyTo replaced by ObjectHandle.CopierFrom. Replace

      attrs, err := src.CopyTo(ctx, dst, nil)
      

      with

... (truncated)

Commits
  • 44b3a7d Add autogenerated clients: debugger, iam, and trace
  • c6705a9 bigquery: restore backwards-compatible Query.TableDefinitions.
  • b8c1696 bigquery: add RowIterator, to replace Iterator
  • 5d33b1b bigquery: Make Query more configurable and add a Run method.
  • 07f82cd bigtable/bttest: Allow more time for concurrent mod test.
  • b9d51d5 pubsub: implement on top of generated client
  • fa279f9 storage: don't fail tests loudly if cleanup fails
  • 139d2e0 examples/bigquery: update WriteDisposition field
  • 2912d48 bigquery: shorten Disposition field names
  • 2096d28 bigquery: add Table.Update
  • Additional commits viewable in compare view


Updates cloud.google.com/go/monitoring from 1.18.0 to 1.18.2

Release notes

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

monitoring: v1.18.2

1.18.2 (2024-04-15)

Documentation

  • monitoring/apiv3: Various updates (8892943)
Changelog

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

Changes

1.27.0 (2024-04-15)

Features

  • documentai: Support a new Layout Processor in Document AI (2cdc40a)

1.26.1 (2024-03-14)

Bug Fixes

  • documentai: Update protobuf dep to v1.33.0 (30b038d)

Documentation

  • documentai: A comment for field processor_version_source in message .google.cloud.documentai.v1beta3.ImportProcessorVersionRequest is changed (25c3f2d)

1.26.0 (2024-02-21)

Features

  • documentai: A new field schema_override is added to message ProcessOptions (#9400) (a86aa8e)
  • documentai: A new message FoundationModelTuningOptions is added (7e6c208)

1.25.0 (2024-02-09)

Features

  • documentai: Expose model_type in v1 processor, so that user can see the model_type after get or list processor version (2fcf55c)

1.24.0 (2024-02-06)

Features

  • documentai: Add model_type in v1beta3 processor proto (#9355) (05e9e1f)

1.23.8 (2024-01-30)

Bug Fixes

  • documentai: Enable universe domain resolution options (fd1d569)

... (truncated)

Commits
  • 115646c chore: release main (#9312)
  • ca86474 chore(main): release pubsub 1.36.1 (#9334)
  • fd1d569 chore: bump gapic modules (#9324)
  • 51ead97 chore(all): update deps (#9320)
  • 4315cdf feat(visionai): new clients (#9333)
  • 4d56af1 docs(aiplatform): add comments for FeatureOnlineStoreService and ModelMonitor...
  • 1782dc3 chore(main): release spanner 1.56.0 (#9271)
  • 5f156e8 feat(spanner/spansql): add support for CREATE VIEW with SQL SECURITY DEFINER ...
  • e577006 chore(internal/actions): add touch flag to changefinder (#9325)
  • dce9db4 deps(bigqueyry): bump google.golang.org/api to 0.160.0 (#9323)
  • Additional commits viewable in compare view


Updates github.com/googleapis/gax-go/v2 from 2.12.0 to 2.12.3

Release notes

Sourced from github.com/googleapis/gax-go/v2's releases.

v2.12.3

2.12.3 (2024-03-14)

Bug Fixes

v2.12.2

2.12.2 (2024-02-23)

Bug Fixes

  • v2/callctx: fix SetHeader race by cloning header map (#326) (534311f)

v2.12.1

2.12.1 (2024-02-13)

Bug Fixes

Commits


Updates github.com/prometheus/client_golang from 1.18.0 to 1.19.0

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.19.0

What's Changed

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

New Contributors

Full Changelog: https://github.com/prometheus/client_golang/compare/v1.18.0...v1.19.0

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.19.0 / 2023-02-27

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427
Commits
  • 77d4003 Add 1.19.0 changelog (#1451)
  • 14259fa Merge pull request #1448 from ywwg/owilliams/content-negotiation
  • 6d03920 deps: bump prometheus/common version
  • 353395b Remove support for go 1.19 (#1449)
  • 9dd5d2a Merge pull request #1445 from kavu/add_go122_metrics_test
  • c906a5e Add support for Go 1.22
  • 7ac9036 Merge pull request #1440 from prometheus/dependabot/github_actions/github-act...
  • 8c7e30f Merge pull request #1441 from prometheus/dependabot/go_modules/tutorial/whats...
  • 08769f8 Bump github.com/prometheus/common in /tutorial/whatsup
  • 83d5940 Bump the github-actions group with 2 updates
  • Additional commits viewable in compare view


Updates github.com/prometheus/client_model from 0.5.0 to 0.6.1

Release notes

Sourced from github.com/prometheus/client_model's releases.

v0.6.1

What's Changed

Full Changelog: https://github.com/prometheus/client_model/compare/v0.6.0...v0.6.1

v0.6.0

What's Changed

New Contributors

Full Changelog: https://github.com/prometheus/client_model/compare/v0.5.0...v0.6.0

Commits
  • 571429e Merge pull request #86 from prometheus/repo_sync
  • cc727ab Update common Prometheus files
  • 6fe5007 Merge pull request #85 from prometheus/repo_sync
  • bce87c1 Update common Prometheus files
  • 64c33c9 Merge pull request #84 from prometheus/dependabot/go_modules/google.golang.or...
  • d954a8a Bump google.golang.org/protobuf from 1.32.0 to 1.33.0
  • 5c25993 Merge pull request #82 from prometheus/repo_sync
  • bb45f95 Update common Prometheus files
  • 01ca24c Merge pull request #81 from prometheus/repo_sync
  • ccd6823 Update common Prometheus files
  • Additional commits viewable in compare view


Updates github.com/stretchr/testify from 1.8.4 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view


Updates go.uber.org/zap from 1.26.0 to 1.27.0

Release notes

Sourced from go.uber.org/zap's releases.

v1.27.0

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

Changelog

Sourced from go.uber.org/zap's changelog.

1.27.0 (20 Feb 2024)

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

Commits


Updates golang.org/x/mod from 0.15.0 to 0.17.0

Commits
  • aa51b25 modfile: do not collapse if there are unattached comments within blocks
  • 87140ec sumdb/tlog: make NewTiles only generate strictly necessary tiles
  • 18d3f56 modfile: fix crash on AddGoStmt in empty File
  • 766dc5d modfile: use new go version string format in WorkFile.add error
  • See full diff in compare view


Updates golang.org/x/oauth2 from 0.17.0 to 0.18.0

Commits
  • 85231f9 go.mod: update golang.org/x dependencies
  • 34a7afa google/externalaccount: add Config.UniverseDomain
  • 95bec95 google/externalaccount: moves externalaccount package out of internal and exp...
  • See full diff in compare view


Updates google.golang.org/api from 0.162.0 to 0.172.0

Release notes

Sourced from google.golang.org/api's releases.

v0.172.0

0.172.0 (2024-03-26)

Features

v0.171.0

0.171.0 (2024-03-21)

Features

Bug Fixes

  • transport: Return GDU for all errors from MDS universe_domain (#2484) (63b7c0d), refs #2399

v0.170.0

0.170.0 (2024-03-14)

Features

v0.169.0

0.169.0 (2024-03-07)

Features

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.172.0 (2024-03-26)

Features

0.171.0 (2024-03-21)

Features

Bug Fixes

  • transport: Return GDU for all errors from MDS universe_domain (#2484) (63b7c0d), refs #2399

0.170.0 (2024-03-14)

Features

0.169.0 (2024-03-07)

Features

... (truncated)

Commits
  • 707b9b2 chore(main): release 0.172.0 (#2486)
  • 77cc7d0 feat(all): auto-regenerate discovery clients (#2492)
  • 18f643a chore(all): update all to 94a12d6 (#2489)
  • 78ee47e feat(all): auto-regenerate discovery clients (#2490)
  • 57e19b3 feat(all): auto-regenerate discovery clients (#2488)
  • b0eaf37 feat(all): auto-regenerate discovery clients (#2487)
  • 0398093 feat(all): auto-regenerate discovery clients (#2485)
  • a28dfbd chore(main): release 0.171.0 (
    dependabot[bot] commented 4 months ago

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