Bump github.com/twmb/franz-go from 1.2.3 to 1.2.4 #19

Merged
dependabot[bot] merged 1 commits from dependabot/go_modules/github.com/twmb/franz-go-1.2.4 into master 2021-11-24 14:49:02 +03:00
dependabot[bot] commented 2021-11-12 14:18:51 +03:00 (Migrated from github.com)

Bumps github.com/twmb/franz-go from 1.2.3 to 1.2.4.

Changelog

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

v1.2.4

This patch release fixes handling forgotten topics in fetch sessions, and allows disabling fetch sessions. Previously, if a topic or partition was paused with fetch sessions active, the partition would continually be fetched and skipped behind the scenes. As well, the client now allows disabling fetch sessions entirely if they are not desired.

This also fixes one bug in the RecordReader: using an empty layout would mean that any io.Reader would result in infinite messages.

Lastly, some log messages have been improved.

  • db90100 consuming: improve error messages
  • 101d6bd consuming: log added/skipped when consuming by regex
  • b6759bc improvement consumer: allow disabling fetch sessions with a config opt
  • 7cd959c bugfix source: use forgotten topics for sessions
  • cfb4a7f bugfix kgo: error if RecordReader layout is empty
Commits
  • 94b6b36 CHANGELOG: note incoming v1.2.4
  • db90100 consuming: improve error messages
  • 101d6bd consuming: log added/skipped when consuming by regex
  • b6759bc consumer: allow disabling fetch sessions with a config opt
  • 7cd959c source: use forgotten topics for sessions
  • 9a07b59 kmsg: add Key type
  • 9a9ce6a kadm: patch prior commit
  • f826552 kadm: make Offsets/OffsetResponses more similar
  • 7d44671 kadm: add Coordinator to ListedGroup
  • b87d64e kadm: add Lookup to all two level map types
  • 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.2.3 to 1.2.4. <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.2.4</h1> <p>This patch release fixes handling forgotten topics in fetch sessions, and allows disabling fetch sessions. Previously, if a topic or partition was paused with fetch sessions active, the partition would continually be fetched and skipped behind the scenes. As well, the client now allows disabling fetch sessions entirely if they are not desired.</p> <p>This also fixes one bug in the <code>RecordReader</code>: using an empty layout would mean that any <code>io.Reader</code> would result in infinite messages.</p> <p>Lastly, some log messages have been improved.</p> <ul> <li><a href="https://github.com/twmb/franz-go/commit/db90100"><code>db90100</code></a> consuming: improve error messages</li> <li><a href="https://github.com/twmb/franz-go/commit/101d6bd"><code>101d6bd</code></a> consuming: log added/skipped when consuming by regex</li> <li><a href="https://github.com/twmb/franz-go/commit/b6759bc"><code>b6759bc</code></a> <strong>improvement</strong> consumer: allow disabling fetch sessions with a config opt</li> <li><a href="https://github.com/twmb/franz-go/commit/7cd959c"><code>7cd959c</code></a> <strong>bugfix</strong> source: use forgotten topics for sessions</li> <li><a href="https://github.com/twmb/franz-go/commit/cfb4a7f"><code>cfb4a7f</code></a> <strong>bugfix</strong> kgo: error if RecordReader layout is empty</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/twmb/franz-go/commit/94b6b3690a997687eae7abd484429622911f7a5c"><code>94b6b36</code></a> CHANGELOG: note incoming v1.2.4</li> <li><a href="https://github.com/twmb/franz-go/commit/db901000d175393ce0acc0b32c198ec9dc01f93e"><code>db90100</code></a> consuming: improve error messages</li> <li><a href="https://github.com/twmb/franz-go/commit/101d6bd9024f7b0d6e197d8bc342e21069b94577"><code>101d6bd</code></a> consuming: log added/skipped when consuming by regex</li> <li><a href="https://github.com/twmb/franz-go/commit/b6759bc75398c51912ccbfd3f573a97c8a68f904"><code>b6759bc</code></a> consumer: allow disabling fetch sessions with a config opt</li> <li><a href="https://github.com/twmb/franz-go/commit/7cd959c47b31722f250f7c0210c39f74db0e1f13"><code>7cd959c</code></a> source: use forgotten topics for sessions</li> <li><a href="https://github.com/twmb/franz-go/commit/9a07b598f8fa6148589841450558194ad26c6f22"><code>9a07b59</code></a> kmsg: add Key type</li> <li><a href="https://github.com/twmb/franz-go/commit/9a9ce6a8d31a58bfb42408a8f466bab37f857772"><code>9a9ce6a</code></a> kadm: patch prior commit</li> <li><a href="https://github.com/twmb/franz-go/commit/f826552516f9aea1be2e58ed3a0b8746c08ee9cb"><code>f826552</code></a> kadm: make Offsets/OffsetResponses more similar</li> <li><a href="https://github.com/twmb/franz-go/commit/7d44671c032e9cc6318516c4c99449f1cd3e18af"><code>7d44671</code></a> kadm: add Coordinator to ListedGroup</li> <li><a href="https://github.com/twmb/franz-go/commit/b87d64e0034beebe1211efdacdf694ac1a733fcc"><code>b87d64e</code></a> kadm: add Lookup to all two level map types</li> <li>Additional commits viewable in <a href="https://github.com/twmb/franz-go/compare/v1.2.3...v1.2.4">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.2.3&new-version=1.2.4)](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>
vtolstov (Migrated from github.com) reviewed 2021-11-12 14:19:08 +03:00
vtolstov (Migrated from github.com) reviewed 2021-11-19 14:24:31 +03:00
vtolstov (Migrated from github.com) approved these changes 2021-11-24 14:25:53 +03:00
Sign in to join this conversation.
No reviewers
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#19
No description provided.