Skip to content

Commit

Permalink
Merge branch 'feat/DEX-241031/fix-readme' into 'master'
Browse files Browse the repository at this point in the history
[DEX-241031] feat:  update READNE

Closes DEX-241031

See merge request nstmrt/rubygems/sbmt-kafka_producer!37
  • Loading branch information
Arlantir committed Oct 31, 2024
2 parents d416096 + 87127ce commit 7e3e59f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ tests:
matrix:
- RUBY_VERSION: ['3.0', '3.1', '3.2', '3.3']
before_script:
- gem sources --remove https://rubygems.org/
- gem sources --add ${NEXUS_PUBLIC_SOURCE_URL}
- bin/setup
script:
- bundle exec appraisal rspec --format RspecJunitFormatter --out test-results/rspec_$RUBY_VERSION.xml --format documentation
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

## [3.1.1] - 2024-10-31

### Changed

- Update README

## [3.1.0] - 2024-09-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

source "https://rubygems.org"
source ENV.fetch("NEXUS_PUBLIC_SOURCE_URL", "https://rubygems.org")

gemspec
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ default: &default
# see more options at https://github.com/karafka/waterdrop/blob/master/lib/waterdrop/config.rb
wait_on_queue_full: true
max_payload_size: 1000012
max_wait_timeout_ms: 60000
max_wait_timeout: 60000
auth:
kind: plaintext
kafka:
Expand All @@ -77,9 +77,9 @@ default: &default
retry_backoff: 1000 # in milliseconds, optional, default: 1000
connect_timeout: 2000 # in milliseconds, optional, default: 2000
message_timeout: 55000 # in milliseconds, optional, default: 55000
kafka_config: # low-level custom Kafka options
queue.buffering.max.messages: 1
queue.buffering.max.ms: 10000
# kafka_config: # optional, low-level custom Kafka options (see https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md)
# queue.buffering.max.messages: 100000
# queue.buffering.max.ms: 5

development:
<<: *default
Expand Down
2 changes: 1 addition & 1 deletion lib/sbmt/kafka_producer/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Sbmt
module KafkaProducer
VERSION = "3.1.0"
VERSION = "3.1.1"
end
end

0 comments on commit 7e3e59f

Please sign in to comment.