Skip to content

Commit

Permalink
Merge branch 'feat/DEX-2733/fix-initialize-yabeda-metrics' into 'master'
Browse files Browse the repository at this point in the history
[DEX-2733] fix: initialize yabeda metrics

Closes DEX-2733

See merge request nstmrt/rubygems/sbmt-kafka_producer!41
  • Loading branch information
Arlantir committed Dec 27, 2024
2 parents 31b7546 + 5dc3456 commit 616cd8c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tests:
- 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}
- gem sources --add ${RUBYGEMS_PUBLIC_SOURCE}
- bin/setup
script:
- bundle exec appraisal rspec --format RspecJunitFormatter --out test-results/rspec_$RUBY_VERSION.xml --format documentation
Expand Down
3 changes: 2 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ versions_map = {
"6.1" => %w[2.7 3.0],
"7.0" => %w[3.1],
"7.1" => %w[3.2],
"7.2" => %w[3.3]
"7.2" => %w[3.3],
"8.0" => %w[3.3]
}

current_ruby_version = RUBY_VERSION.split(".").first(2).join(".")
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.2.1] - 2024-12-26

### Fixed

- Fix initialize yabeda metrics

## [3.2.0] - 2024-11-22

### Changed
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 ENV.fetch("NEXUS_PUBLIC_SOURCE_URL", "https://rubygems.org")
source ENV.fetch("RUBYGEMS_PUBLIC_SOURCE", "https://rubygems.org")

gemspec
2 changes: 1 addition & 1 deletion lib/sbmt/kafka_producer/railtie.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Sbmt
module KafkaProducer
class Railtie < Rails::Railtie
initializer "sbmt_kafka_producer_yabeda.configure_rails_initialization" do
config.before_initialize do
YabedaConfigurer.configure
end

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.2.0"
VERSION = "3.2.1"
end
end

0 comments on commit 616cd8c

Please sign in to comment.