Skip to content

Commit

Permalink
Merge branch 'fix/limit-karafka' into 'master'
Browse files Browse the repository at this point in the history
DEX-240508 fix: Limit the Karafka version to less than

See merge request nstmrt/rubygems/sbmt-kafka_consumer!48
  • Loading branch information
bibendi committed May 8, 2024
2 parents 396ee8c + c090587 commit 5a8f752
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ AllCops:
SuggestExtensions: false
TargetRubyVersion: 2.7
TargetRailsVersion: 5.2
Exclude:
- spec/internal/pkg/**/*

RSpec/FilePath:
Enabled: false
Expand Down
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
38 changes: 30 additions & 8 deletions spec/internal/pkg/client/sso/events/shopper_registration_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5a8f752

Please sign in to comment.