Skip to content

Bump kafka_ex from 0.15.0 to 1.0.0#266

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/kafka_ex-1.0.0
Open

Bump kafka_ex from 0.15.0 to 1.0.0#266
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/kafka_ex-1.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 2, 2026

Bumps kafka_ex from 0.15.0 to 1.0.0.

Release notes

Sourced from kafka_ex's releases.

v1.0.0

What's Changed

Full Changelog: kafkaex/kafka_ex@v0.15.0...v1.0.0

Changelog

Sourced from kafka_ex's changelog.

1.0.0

Single release entry accumulates all post-rc.2 work. RC tags along the way (rc.3, rc.4, …) share this entry — individual rc entries are not maintained.

Breaking Changes

  • Produce headers API — the headers: option on KafkaEx.API.produce/4,5, produce_one/4,5, and produce_sync/4,5 now requires [%KafkaEx.Messages.Header{}] structs instead of [{binary, binary}] tuples. Brings the produce path in line with the fetch path, which already returned %Header{} structs.

    Before:

    KafkaEx.API.produce(client, "t", 0, [
      %{value: "v", headers: [{"key", "val"}]}
    ])

    After:

    alias KafkaEx.Messages.Header
    KafkaEx.API.produce(client, "t", 0, [
      %{value: "v", headers: [Header.new("key", "val")]}
    ])

    Silent-at-compile, fails-at-runtime with FunctionClauseError — see UPGRADING.md for the migration pattern.

Fixed

  • Consumer group no longer silently consumes on stale generation after a non-retryable OffsetCommit error. Previously :illegal_generation (and siblings) were logged and swallowed; the consumer kept running on a stale generation until the next heartbeat happened to also fail, potentially many seconds of zombie operation. Now classified across three paths matching Java ConsumerCoordinator, librdkafka rdkafka_cgrp, brod brod_group_coordinator, and kafka-python:

    • Terminal:fenced_instance_id (KIP-345), :group_authorization_failed, :topic_authorization_failed, :offset_metadata_too_large, :invalid_commit_offset_size. Consumer stops without rejoining.
    • Fatal:illegal_generation, :unknown_member_id. GenConsumer casts {:rejoin_required, reason, stale_gen} to the group manager (with mailbox coalescing for multi-partition

... (truncated)

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 [kafka_ex](https://github.com/kafkaex/kafka_ex) from 0.15.0 to 1.0.0.
- [Release notes](https://github.com/kafkaex/kafka_ex/releases)
- [Changelog](https://github.com/kafkaex/kafka_ex/blob/master/CHANGELOG.md)
- [Commits](kafkaex/kafka_ex@v0.15.0...v1.0.0)

---
updated-dependencies:
- dependency-name: kafka_ex
  dependency-version: 1.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file elixir Pull requests that update elixir code labels Jun 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file elixir Pull requests that update elixir code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants