Skip to content

Commit

Permalink
fix: Limit the Karafka version to less than
Browse files Browse the repository at this point in the history
  • Loading branch information
bibendi committed May 8, 2024
1 parent 396ee8c commit 103ea1c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

## [2.0.1] - 2024-05-08

### Fixed

- Limit the Karafka version to less than `2.4` because they dropped the consumer group mapping

## [2.0.0] - 2024-01-30

### Changed
Expand Down
2 changes: 1 addition & 1 deletion lib/sbmt/kafka_consumer/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Sbmt
module KafkaConsumer
VERSION = "2.0.0"
VERSION = "2.0.1"
end
end
2 changes: 1 addition & 1 deletion sbmt-kafka_consumer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Gem::Specification.new do |spec|

spec.add_dependency "rails", ">= 5.2"
spec.add_dependency "zeitwerk", "~> 2.3"
spec.add_dependency "karafka", "~> 2.2"
spec.add_dependency "karafka", "~> 2.2", "< 2.4" # [Breaking] Drop the concept of consumer group mapping.
spec.add_dependency "yabeda", ">= 0.11"
spec.add_dependency "anyway_config", ">= 2.4.0"
spec.add_dependency "thor"
Expand Down

0 comments on commit 103ea1c

Please sign in to comment.