Skip to content

Commit

Permalink
allow rdkafka 0.17.0 and bump to min 0.16 (karafka#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld authored Jul 19, 2024
1 parent 009ca9c commit f94073e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Karafka core changelog

## 2.4.4 (Unreleased)
- [Change] Set minimum `karafka-rdkafka` on `0.16.0` to support new features and allow for `0.17.0`.

## 2.4.3 (2024-06-18)
- [Fix] Use `Object` instead of `BasicObject` for rule result comparison because of Time mismatch with BasicObject.

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
karafka-core (2.4.3)
karafka-rdkafka (>= 0.15.0, < 0.17.0)
karafka-core (2.4.4)
karafka-rdkafka (>= 0.15.0, < 0.18.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion karafka-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.description = 'A toolset of small support modules used throughout the Karafka ecosystem'
spec.licenses = %w[MIT]

spec.add_dependency 'karafka-rdkafka', '>= 0.15.0', '< 0.17.0'
spec.add_dependency 'karafka-rdkafka', '>= 0.15.0', '< 0.18.0'

spec.required_ruby_version = '>= 3.0.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/karafka/core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module Karafka
module Core
# Current Karafka::Core version
# We follow the versioning schema of given Karafka version
VERSION = '2.4.3'
VERSION = '2.4.4'
end
end

0 comments on commit f94073e

Please sign in to comment.