k1LoW / tbls

tbls is a CI-Friendly tool for document a database, written in Go.
MIT License
3.32k stars 163 forks source link

chore(deps): bump the dependencies group with 7 updates #577

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the dependencies group with 7 updates:

Package From To
cloud.google.com/go/bigquery 1.60.0 1.61.0
cloud.google.com/go/spanner 1.56.0 1.60.0
github.com/aws/aws-sdk-go 1.51.21 1.51.32
github.com/expr-lang/expr 1.16.4 1.16.5
github.com/microsoft/go-mssqldb 1.7.0 1.7.1
golang.org/x/oauth2 0.18.0 0.19.0
google.golang.org/api 0.170.0 0.175.0

Updates cloud.google.com/go/bigquery from 1.60.0 to 1.61.0

Release notes

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

spanner: v1.61.0

1.61.0 (2024-04-30)

Features

  • spanner/admin/instance: Adding EXPECTED_FULFILLMENT_PERIOD to the indicate instance creation times (with FULFILLMENT_PERIOD_NORMAL or FULFILLMENT_PERIOD_EXTENDED ENUM) with the extended instance creation time triggered by On-Demand Capacity... (#9693) (aa93790)
  • spanner/executor: Add SessionPoolOptions, SpannerOptions protos in executor protos (2cdc40a)
  • spanner: Add support for change streams transaction exclusion option (#9779) (979ce94)
  • spanner: Support MultiEndpoint (#9565) (0ac0d26)

Bug Fixes

  • spanner/test/opentelemetry/test: Bump x/net to v0.24.0 (ba31ed5)
  • spanner: Bump x/net to v0.24.0 (ba31ed5)
  • spanner: Fix uint8 conversion (9221c7f)

bigquery: v1.61.0

1.61.0 (2024-04-24)

Features

  • bigquery/storage/managedwriter/adapt: Add RANGE support to adapt (#9836) (ae25253)
  • bigquery: RANGE support for basic data movement (#9762) (07f0806)
  • bigquery: RANGE support when reading Arrow format (#9795) (da245fa)
  • bigquery: RANGE type StandardSQLDataType support (#9754) (33666cf)

Bug Fixes

  • bigquery/datatransfer: Mark parent/name fields with the REQUIRED field_behavior annotation (8892943)
  • bigquery: Bump x/net to v0.24.0 (ba31ed5)
Commits


Updates cloud.google.com/go/spanner from 1.56.0 to 1.60.0

Release notes

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

bigquery: v1.60.0

1.60.0 (2024-03-27)

Features

  • bigquery/analyticshub: Support selective sharing on data clean room Listings (a3bb7c0)
  • bigquery/datatransfer: Add UnenrollDataSources API which gives users a programmatic way to unenroll data sources (a86aa8e)
  • bigquery/storage: Add the RANGE type to the google.cloud.bigquery.storage.v1.TableFieldSchema (0195fe9)

Bug Fixes

  • bigquery/storage/managedwriter: Fix flowcontrol refund on error (#9649) (a07bf1d)
  • bigquery/storage/managedwriter: Retry improvements (#9642) (48a9258)
  • bigquery: Update protobuf dep to v1.33.0 (30b038d)

Documentation

  • bigquery/datatransfer: Update unenrollDataSources API documentation (#9449) (da644cc)
  • bigquery/storage: Mark BigQueryWrite v1beta2 as deprecated (d130d86)

spanner: v1.60.0

1.60.0 (2024-03-19)

Features

  • spanner: Allow attempt direct path xds via env var (e4b663c)
Commits


Updates github.com/aws/aws-sdk-go from 1.51.21 to 1.51.32

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.51.32 (2024-04-30)

Service Client Updates

  • service/chime-sdk-voice: Updates service API and documentation
  • service/codeartifact: Updates service API and documentation
  • service/fms: Updates service API and documentation
  • service/omics: Updates service API and documentation
  • service/opensearch: Updates service API and documentation
  • service/pinpoint-sms-voice-v2: Updates service API, documentation, and paginators
  • service/qbusiness: Updates service API, documentation, and waiters
  • service/quicksight: Updates service API and documentation
    • New Q embedding supporting Generative Q&A
  • service/route53resolver: Updates service API and documentation
  • service/sagemaker: Updates service API and documentation
    • Amazon SageMaker Training now supports the use of attribute-based access control (ABAC) roles for training job execution roles. Amazon SageMaker Inference now supports G6 instance types.
  • service/signer: Updates service API and documentation
    • Documentation updates for AWS Signer. Adds cross-account signing constraint and definitions for cross-account actions.

Release v1.51.31 (2024-04-29)

Service Client Updates

  • service/amplify: Updates service API and documentation
  • service/connectcases: Updates service API and documentation
  • service/inspector2: Updates service API and documentation
  • service/timestream-query: Updates service API and documentation
  • service/transcribe: Updates service API and documentation
  • service/trustedadvisor: Updates service API and documentation

Release v1.51.30 (2024-04-26)

Service Client Updates

  • service/codepipeline: Updates service API and documentation
    • Add ability to manually and automatically roll back a pipeline stage to a previously successful execution.
  • service/cognito-idp: Updates service API and documentation
  • service/connectcampaigns: Updates service API and documentation
  • service/entitlement.marketplace: Updates service API
  • service/oam: Updates service API and documentation
  • service/rds: Updates service API, documentation, waiters, paginators, and examples
    • SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database.
  • service/support: Updates service API
    • Releasing minor endpoint updates.

Release v1.51.29 (2024-04-25)

Service Client Updates

  • service/appsync: Updates service API

... (truncated)

Commits


Updates github.com/expr-lang/expr from 1.16.4 to 1.16.5

Release notes

Sourced from github.com/expr-lang/expr's releases.

v1.16.5

Expr is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed.

output, err := expr.Eval("metric > 100", map[string]any{
    "metric": 200,
})

In this release:

  • Added compiler optimization for boolean operations between all, any, none functions (#626)
  • Added optional predicate to sum() builtin (#592)
  • Added sum() compiler optimization c2b609e edb1b5a
  • Improved WithContext to work for methods on env struct (#602)
  • Improved count() builtin: now predicate is optional 725b702
  • Fixed printing of combinations conditional with binary nodes 6157395
  • Fixed optional chaining to return proper nil 5804ccb

Expr Editor

The Expr Editor is an embeddable code editor written in JavaScript with full support of Expr language.

Expr Pro

Expr Pro is a set of extensions for Expr for advanced use cases. It includes expressions explanation, performance profiling, and more.

Commits


Updates github.com/microsoft/go-mssqldb from 1.7.0 to 1.7.1

Release notes

Sourced from github.com/microsoft/go-mssqldb's releases.

v1.7.1

What's Changed

New Contributors

Full Changelog: https://github.com/microsoft/go-mssqldb/compare/v1.5.0...v1.7.1

Changelog

Sourced from github.com/microsoft/go-mssqldb's changelog.

Changelog

Commits


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

Commits
  • d0e617c google: add Credentials.UniverseDomainProvider
  • 3c9c1f6 oauth2/google: fix the logic of sts 0 value of expires_in
  • 5a05c65 oauth2/google: fix remove content-type header from idms get requests
  • 3a6776a appengine: drop obsolete code for AppEngine envs <=Go 1.11
  • See full diff in compare view


Updates google.golang.org/api from 0.170.0 to 0.175.0

Release notes

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

v0.175.0

0.175.0 (2024-04-19)

Features

Bug Fixes

v0.174.0

0.174.0 (2024-04-17)

Features

Bug Fixes

v0.173.0

0.173.0 (2024-04-16)

Features

... (truncated)

Changelog

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

0.175.0 (2024-04-19)

Features

Bug Fixes

0.174.0 (2024-04-17)

Features

Bug Fixes

0.173.0 (2024-04-16)

Features

0.172.0 (2024-03-26)

... (truncated)

Commits


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions