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

chore(deps): Update go deps #1680

Merged
merged 5 commits into from Jul 10, 2023
Merged

chore(deps): Update go deps #1680

merged 5 commits into from Jul 10, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 10, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/aws/aws-sdk-go require patch v1.44.295 -> v1.44.298
github.com/go-cmd/cmd require patch v1.4.1 -> v1.4.2
github.com/goreleaser/goreleaser require patch v1.19.1 -> v1.19.2
github.com/twmb/franz-go require minor v1.13.6 -> v1.14.0
github.com/vektra/mockery/v2 require minor v2.30.16 -> v2.31.1
golang.org/x/crypto require minor v0.10.0 -> v0.11.0
golang.org/x/net require minor v0.11.0 -> v0.12.0
golang.org/x/tools require minor v0.10.0 -> v0.11.0
google.golang.org/genproto/googleapis/api require digest 9506855 -> ccb25ca
google.golang.org/grpc require patch v1.56.1 -> v1.56.2
gotest.tools/gotestsum require patch v1.10.0 -> v1.10.1

Release Notes

aws/aws-sdk-go (github.com/aws/aws-sdk-go)

v1.44.298

Compare Source

===

Service Client Updates
  • service/dms: Updates service API, documentation, and paginators
    • Releasing DMS Serverless. Adding support for PostgreSQL 15.x as source and target endpoint. Adding support for DocDB Elastic Clusters with sharded collections, PostgreSQL datatype mapping customization and disabling hostname validation of the certificate authority in Kafka endpoint settings
  • service/glue: Updates service API and documentation
    • This release enables customers to create new Apache Iceberg tables and associated metadata in Amazon S3 by using native AWS Glue CreateTable operation.
  • service/logs: Updates service API and documentation
    • Add CMK encryption support for CloudWatch Logs Insights query result data
  • service/medialive: Updates service API and documentation
    • This release enables the use of Thumbnails in AWS Elemental MediaLive.
  • service/mediatailor: Updates service API and documentation
SDK Bugs
  • aws/credentials/ssocreds: Implement SSO token provider support for sso-session in AWS shared config.

v1.44.297

Compare Source

===

Service Client Updates
  • service/ec2: Updates service API and documentation
    • Add Nitro Enclaves support on DescribeInstanceTypes
  • service/location: Updates service API and documentation
  • service/outposts: Updates service API, documentation, and paginators
  • service/quicksight: Updates service API and documentation
    • This release includes below three changes: small multiples axes improvement, field based coloring, removed required trait from Aggregation function for TopBottomFilter.
  • service/rds: Updates service API, documentation, waiters, paginators, and examples
    • Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.

v1.44.296

Compare Source

===

Service Client Updates
  • service/comprehendmedical: Updates service documentation
  • service/connect: Updates service documentation
  • service/kms: Updates service API and documentation
    • Added Dry Run Feature to cryptographic and cross-account mutating KMS APIs (14 in all). This feature allows users to test their permissions and parameters before making the actual API call.
  • service/mgn: Updates service API, documentation, and paginators
  • service/securityhub: Updates service documentation
go-cmd/cmd (github.com/go-cmd/cmd)

v1.4.2

Compare Source

google/cel-go (github.com/google/cel-go)

v0.16.0

Compare Source

Features

  • Expose ExpressionSizeCodePointLimit as env option. [#​720]
  • Presence test cost tracking options [#​721]
  • Support for optMap() optional value macro [#​717]

Fixes

  • Bump socket.io-parser from 4.2.2 to 4.2.3 in /repl/appengine/web [#​713]
  • Fix for macro call tracking with optional list elements by [#​712]
  • Bump google.golang.org/genproto [#​714]
  • Add vendor integrity check [#​716]
  • Fix overload collision checks by ignoring type param names [#​718]

New Contributors

Full Changelog: google/cel-go@v0.15.3...v0.16.0

v0.15.3

Compare Source

Fixes

  • Fix state tracking through optional field selections [#​708]
  • Support for pruning macro call nodes with limited optional support [#​705]
  • Update presence test state tracking and pruning [#​711]

PR #​711 also fixes an issue where optional values would not work
correctly with partial state tracking in some cases.

Full Changelog: google/cel-go@v0.15.2...v0.15.3

goreleaser/goreleaser (github.com/goreleaser/goreleaser)

v1.19.2

Compare Source

Changelog
Bug fixes
Build process updates
Other work

Full Changelog: goreleaser/goreleaser@v1.19.1...v1.19.2

Helping out

This release is only possible thanks to all the support of some awesome people!

Want to be one of them?
You can sponsor, get a Pro License or contribute with code.

Where to go next?

GoReleaser logo

twmb/franz-go (github.com/twmb/franz-go)

v1.14.0

Compare Source

===

This release contains a few new APIs, one behavior change, and one minor bugfix.

Bugfixes

Previously, HookBrokerRead and HookBrokerE2E could not be used at the same
time. This has been fixed.

Behavior changes

PauseFetch{Topics,Partitions} now causes the client to drop all buffered
fetches and kill all in-flight fetch requests. Importantly, this also means
that once you pause, it is no longer possible for what you paused to be
returned while polling. Previously, the client made no attempt to clear
internal buffers / in flight requests, meaning you could receive paused data
for a while.

Seed brokers now show up in logs as seed_### rather than seed ### (an
underscore has been added).

Features

  • kgo.Offset now has an EpochOffset getter function that allows access
    to the actual epoch and offset that are inside the opaque Offset type.
  • AddConsumePartitions allows adding individual partitions to consume, and
    the new counterpart RemoveConsumePartitions allows removing individual
    partitions from being consumed. Removing is different from purging, please
    see the docs.
  • KeepRetryableFetchErrors bubbles up retryable errors to the end user that
    are encountered while fetching. By default, these errors are stripped.
  • kversion now supports Kafka 3.5
  • kversion now supports version guessing against KRaft by default
  • kgo.DialTLS now exists to even more easily opt into TLS.
  • kgo.Client.Opts now exists to return the original options that were used
    to configure the client, making initializing new clients easier.
  • kgo.NodeName returns a string form of a broker node name. Internally, seed
    brokers use math.MinInt32 for node IDs, which shows up as massively negative
    numbers in logs sometimes. NodeName can help convert that to seed_<#>.

Relevant commits

  • c3b083b improvement kgo: do not returned paused topics/partitions after pausing
  • e224e90 bugfix kgo: allow HookBrokerRead and HookBrokerE2E to both be called
  • 875761a feature kgo Offset: add EpochOffset getter field
  • c5d0fc5 kgo: add a debug log for stripping retryable errors from fetches
  • b45d663 kgo: add more context to opportunistic metadata loads while fetching
  • 9dae366 kgo: allow retries on dial timeouts
  • 00e4e76 kgo: tolerate buggy v1 group member metadata
  • 34c8b3d feature kgo: add AddConsumePartitions and RemoveConsumePartitions
  • b5cafba sasl: validate non-empty user/pass/token
  • 76d2e71 feature kgo: add KeepRetryableFetchErrors
  • 0df3ec0 kgo: fix new niche CI problem against Kafka 3.5
  • 8ff1d0d feature pkg/kversion: attempt to guess KRaft by default as well
  • e92f5d9 feature pkg/kversion: detect v3.5
  • f1b923e feature kgo: add DialTLS option
  • 9667967 feature kgo.Client: add Opts to return the original opts, to allow seeding new clients
  • 8e14928 feature kgo: add NodeName for easy user formatting of internal seed node IDs
vektra/mockery (github.com/vektra/mockery/v2)

v2.31.1

Compare Source

Changelog

v2.31.0

Compare Source

Changelog

  • a43101b Add deprecation notice for old config style
  • 7696d20 Merge pull request #​668 from LandonTClipp/deprecation

v2.30.18

Compare Source

Changelog

  • 0d3aeea Fix goreleaser config deprecation
  • 7a91185 Merge pull request #​667 from LandonTClipp/goreleaser

v2.30.17

Compare Source

grpc/grpc-go (google.golang.org/grpc)

v1.56.2: Release 1.56.2

Compare Source

  • status: To fix a panic, status.FromError now returns an error with codes.Unknown when the error implements the GRPCStatus() method, and calling GRPCStatus() returns nil. (#​6374)
gotestyourself/gotestsum (gotest.tools/gotestsum)

v1.10.1

Compare Source

What's Changed

New Contributors

Full Changelog: gotestyourself/gotestsum@v1.10.0...v1.10.1


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot added area/dependencies Pull requests that update a dependency file bots kind/chore labels Jul 10, 2023
@codecov
Copy link

codecov bot commented Jul 10, 2023

Codecov Report

Merging #1680 (29f1f9a) into main (ad00877) will increase coverage by 0.18%.
The diff coverage is n/a.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1680      +/-   ##
==========================================
+ Coverage   53.08%   53.26%   +0.18%     
==========================================
  Files         132      132              
  Lines       15409    15409              
==========================================
+ Hits         8180     8208      +28     
+ Misses       6516     6487      -29     
- Partials      713      714       +1     

see 3 files with indirect coverage changes

Signed-off-by: Oğuzhan Durgun <oguzhandurgun95@gmail.com>
Signed-off-by: Oğuzhan Durgun <oguzhandurgun95@gmail.com>
Signed-off-by: Oğuzhan Durgun <oguzhandurgun95@gmail.com>
Signed-off-by: Oğuzhan Durgun <oguzhandurgun95@gmail.com>
@renovate
Copy link
Contributor Author

renovate bot commented Jul 10, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@oguzhand95 oguzhand95 changed the title chore(deps): update go deps chore(deps): Update go deps Jul 10, 2023
@oguzhand95 oguzhand95 self-requested a review July 10, 2023 07:44
@oguzhand95 oguzhand95 merged commit 0c5fb88 into main Jul 10, 2023
19 of 20 checks passed
@oguzhand95 oguzhand95 deleted the renovate/go-deps branch July 10, 2023 07:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/dependencies Pull requests that update a dependency file bots kind/chore
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant