Bump github.com/twmb/franz-go from 1.7.1 to 1.8.0 #78

Merged
dependabot[bot] merged 1 commits from dependabot/go_modules/github.com/twmb/franz-go-1.8.0 into v3 2022-10-11 11:52:50 +03:00
dependabot[bot] commented 2022-10-07 14:20:16 +03:00 (Migrated from github.com)

Bumps github.com/twmb/franz-go from 1.7.1 to 1.8.0.

Changelog

Sourced from github.com/twmb/franz-go's changelog.

v1.8.0

This feature release adds one new API in kgo, one new field on kgo.Record, and stabilizes kversion.V3_3_0(). There is also one minor bug fix: Record.TimestampType() previously did not correctly return 1 to indicate broker generated timestamp types.

This release improves the behavior of the client if the entire cluster becomes unreachable. Previously, the client may not have been able to reload metadata to discover new endpoints; now, the client periodically tries a seed broker to issue randomly-routable requests to. This release also makes a few more internal errors retryable, which can help reduce some request failures.

A few docs have been improved. Notably, the UniformBytesPartitioner contains a new line describing that it may have poor interaction with lingering. See the doc comment for more details as well as the linked Kafka issue. This library does not use lingering by default.

  • f35ef66 make errUnknown{Controller,Coordinator} retryable, improve error wording
  • 750bf54 kversion: stabilize v3.3
  • 3e02574 kgo: occasionally use seed brokers when choosing "random" brokers
  • 3ebd775 UniformBytesPartitioner: note sub-optimal batches with lingering
  • [PR #206](twmb/franz-go#206) bugfix Record.TimestampType function to correctly return 1 for broker-set timestamps (thanks @​JacobSMoller)
  • [PR #201](twmb/franz-go#201) feature add Context field to Record to enable more end-user instrumentation (thanks @​yianni)
  • [PR #197](twmb/franz-go#197) feature add ValidateOpts to validate options before client initialization (thanks @​dwagin)
Commits
  • 5a38292 CHANGELOG: note incoming v1.8.0
  • b697022 kgo: expand docs on supportsOffsetForLeaderEpoch, add supportsKeyVersion
  • f35ef66 make errUnknown{Controller,Coordinator} retryable, improve error wording
  • ebdbe77 kgo.Record: clarify some field documentation
  • 750bf54 kversion: stabilize v3.3
  • 3e02574 kgo: occasionally use seed brokers when choosing "random" brokers
  • 3ebd775 UniformBytesPartitioner: note sub-optimal batches with lingering
  • 7ffb6e1 kgo: add ValidateOpts to validate options before client initialization
  • 1a13af8 kgo: add Context field to Record and set while producing
  • d3e35a4 Merge pull request #206 from JacobSMoller/timestamp-type-bit
  • 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 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)
Bumps [github.com/twmb/franz-go](https://github.com/twmb/franz-go) from 1.7.1 to 1.8.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/twmb/franz-go/blob/master/CHANGELOG.md">github.com/twmb/franz-go's changelog</a>.</em></p> <blockquote> <h1>v1.8.0</h1> <p>This feature release adds one new API in kgo, one new field on <code>kgo.Record</code>, and stabilizes <code>kversion.V3_3_0()</code>. There is also one minor bug fix: <code>Record.TimestampType()</code> previously did not correctly return 1 to indicate broker generated timestamp types.</p> <p>This release improves the behavior of the client if the entire cluster becomes unreachable. Previously, the client may not have been able to reload metadata to discover new endpoints; now, the client periodically tries a seed broker to issue randomly-routable requests to. This release also makes a few more internal errors retryable, which can help reduce some request failures.</p> <p>A few docs have been improved. Notably, the UniformBytesPartitioner contains a new line describing that it may have poor interaction with lingering. See the doc comment for more details as well as the linked Kafka issue. This library does not use lingering by default.</p> <ul> <li><a href="https://github.com/twmb/franz-go/commit/f35ef66"><code>f35ef66</code></a> make <code>errUnknown{Controller,Coordinator}</code> retryable, improve error wording</li> <li><a href="https://github.com/twmb/franz-go/commit/750bf54"><code>750bf54</code></a> kversion: stabilize v3.3</li> <li><a href="https://github.com/twmb/franz-go/commit/3e02574"><code>3e02574</code></a> kgo: occasionally use seed brokers when choosing &quot;random&quot; brokers</li> <li><a href="https://github.com/twmb/franz-go/commit/3ebd775"><code>3ebd775</code></a> UniformBytesPartitioner: note sub-optimal batches with lingering</li> <li>[PR <a href="https://github-redirect.dependabot.com/twmb/franz-go/issues/206">#206</a>](<a href="https://github-redirect.dependabot.com/twmb/franz-go/pull/206">twmb/franz-go#206</a>) <strong>bugfix</strong> Record.TimestampType function to correctly return 1 for broker-set timestamps (thanks <a href="https://github.com/JacobSMoller"><code>@​JacobSMoller</code></a>)</li> <li>[PR <a href="https://github-redirect.dependabot.com/twmb/franz-go/issues/201">#201</a>](<a href="https://github-redirect.dependabot.com/twmb/franz-go/pull/201">twmb/franz-go#201</a>) <strong>feature</strong> add Context field to Record to enable more end-user instrumentation (thanks <a href="https://github.com/yianni"><code>@​yianni</code></a>)</li> <li>[PR <a href="https://github-redirect.dependabot.com/twmb/franz-go/issues/197">#197</a>](<a href="https://github-redirect.dependabot.com/twmb/franz-go/pull/197">twmb/franz-go#197</a>) <strong>feature</strong> add ValidateOpts to validate options before client initialization (thanks <a href="https://github.com/dwagin"><code>@​dwagin</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/twmb/franz-go/commit/5a38292a7c00f0d199c8ecbab05375dafae9f5c3"><code>5a38292</code></a> CHANGELOG: note incoming v1.8.0</li> <li><a href="https://github.com/twmb/franz-go/commit/b69702275f09c8e1284133771d493f5859affa87"><code>b697022</code></a> kgo: expand docs on supportsOffsetForLeaderEpoch, add supportsKeyVersion</li> <li><a href="https://github.com/twmb/franz-go/commit/f35ef66a290c3e5169aa08d27b60508212ba56f3"><code>f35ef66</code></a> make errUnknown{Controller,Coordinator} retryable, improve error wording</li> <li><a href="https://github.com/twmb/franz-go/commit/ebdbe7733aaf71db06efa5e278d803fe6f642f7c"><code>ebdbe77</code></a> kgo.Record: clarify some field documentation</li> <li><a href="https://github.com/twmb/franz-go/commit/750bf54bb3b036d8621de1c28907392b297590fc"><code>750bf54</code></a> kversion: stabilize v3.3</li> <li><a href="https://github.com/twmb/franz-go/commit/3e025741012402ebd95e5d38d6daaace51733cea"><code>3e02574</code></a> kgo: occasionally use seed brokers when choosing &quot;random&quot; brokers</li> <li><a href="https://github.com/twmb/franz-go/commit/3ebd775774f907617146165d6d5a72ff787e5c4f"><code>3ebd775</code></a> UniformBytesPartitioner: note sub-optimal batches with lingering</li> <li><a href="https://github.com/twmb/franz-go/commit/7ffb6e1174296e8fdc6cdc039cd03e66ea3cf989"><code>7ffb6e1</code></a> kgo: add ValidateOpts to validate options before client initialization</li> <li><a href="https://github.com/twmb/franz-go/commit/1a13af898979981e52668c8ba83cf2fc9394c5a8"><code>1a13af8</code></a> kgo: add Context field to Record and set while producing</li> <li><a href="https://github.com/twmb/franz-go/commit/d3e35a4c4a27b70a2248da721db07db2a8d7b03f"><code>d3e35a4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/twmb/franz-go/issues/206">#206</a> from JacobSMoller/timestamp-type-bit</li> <li>Additional commits viewable in <a href="https://github.com/twmb/franz-go/compare/v1.7.1...v1.8.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/twmb/franz-go&package-manager=go_modules&previous-version=1.7.1&new-version=1.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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) </details>
github-actions[bot] (Migrated from github.com) approved these changes 2022-10-07 14:20:27 +03:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: unistack-org/micro-broker-kgo#78
No description provided.