rimless 1.10.1 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d000449f6e058356a1826d319f3223dd0d87f0cb6cd0852e31540ebb31bf169
4
- data.tar.gz: 65983b9773597313a88a07e252d8542bcc8624cf739229f1b84138b75e5d8d33
3
+ metadata.gz: 0e608233c625a3ffa26d1bd8b738c966a61f7644c87ab8a7432f73b0bb9d8481
4
+ data.tar.gz: dbc42d61cc9a82da7ba000c0657cb30a9ba28746bc28280c176694e34d0657a0
5
5
  SHA512:
6
- metadata.gz: cbb36e7b25d7dd458c86340dbbaede6840fd3553c918d0e8adfc39ef4e91603ed2f45bd957d94f0166a2e5b50fa9e1aca7d8c8c2bf7465a697af8ccc420e9856
7
- data.tar.gz: 9c4563ce880bcf05cae68c85d6db6b00b07b12674f552e861c823f8feec5b9ae2cb04ecae898c3cbe6c997b0e4905b50817beeaa5f064d32280582dd072f9093
6
+ metadata.gz: fdc6d8bba640f43c4b870dc8c74c703099a3cc21de95b2072d17259057cb4855f1789f92a6755428d80508a28b25eb6cc375ae8b60c8a7b6b6c4861f2edc9603
7
+ data.tar.gz: fef9d5f121807ec2d077da8e264885f04196d10d76bab213e6c110858f017a685d2ad122364915f50366cc89f09552c10f79e02bd51410f355ad066faaac4e52
@@ -18,7 +18,7 @@ jobs:
18
18
  strategy:
19
19
  fail-fast: false
20
20
  matrix:
21
- ruby: ['2.7', '3.0']
21
+ ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
22
22
  rails: ['6.1', '7.1']
23
23
  env:
24
24
  BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
data/CHANGELOG.md CHANGED
@@ -2,34 +2,42 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.11.0 (30 January 2025)
6
+
7
+ * Added all versions up to Ruby 3.4 to the CI matrix ([#49](https://github.com/hausgold/rimless/pull/49))
8
+
9
+ ### 1.10.2 (17 January 2025)
10
+
11
+ * Added the logger dependency ([#48](https://github.com/hausgold/rimless/pull/48))
12
+
5
13
  ### 1.10.1 (13 January 2025)
6
14
 
7
- * Do not eager load the configuration (#47)
15
+ * Do not eager load the configuration ([#47](https://github.com/hausgold/rimless/pull/47))
8
16
 
9
17
  ### 1.10.0 (11 January 2025)
10
18
 
11
- * Switched to Zeitwerk as autoloader (#46)
19
+ * Switched to Zeitwerk as autoloader ([#46](https://github.com/hausgold/rimless/pull/46))
12
20
 
13
21
  ### 1.9.0 (3 January 2025)
14
22
 
15
- * Raised minimum supported Ruby/Rails version to 2.7/6.1 (#45)
23
+ * Raised minimum supported Ruby/Rails version to 2.7/6.1 ([#45](https://github.com/hausgold/rimless/pull/45))
16
24
 
17
25
  ### 1.8.0 (14 November 2024)
18
26
 
19
27
  * Added support for custom topic names via the `full_name:` keyword argument on
20
- the consumer routing table (#44)
28
+ the consumer routing table ([#44](https://github.com/hausgold/rimless/pull/44))
21
29
  * Added support to pass a block to the routing table
22
- (`Rimless.consumer.topics`) to add custom topic configurations (#44)
30
+ (`Rimless.consumer.topics`) to add custom topic configurations ([#44](https://github.com/hausgold/rimless/pull/44))
23
31
 
24
32
  ### 1.7.7 (19 September 2024)
25
33
 
26
34
  * Corrected the Sidekiq interchanger decoding, which is caused by an upstream
27
- update of the karafka-sidekiq-backend gem (#43)
35
+ update of the karafka-sidekiq-backend gem ([#43](https://github.com/hausgold/rimless/pull/43))
28
36
 
29
37
  ### 1.7.6 (19 September 2024)
30
38
 
31
39
  * Added a monkey-patch for the constellation Karafka 1.4 and Thor 1.3,
32
- on Ruby >=2.7 (#42)
40
+ on Ruby >=2.7 ([#42](https://github.com/hausgold/rimless/pull/42))
33
41
 
34
42
  ### 1.7.5 (15 August 2024)
35
43
 
@@ -49,42 +57,42 @@
49
57
 
50
58
  ### 1.7.1 (9 August 2024)
51
59
 
52
- * Added API docs building to continuous integration (#41)
60
+ * Added API docs building to continuous integration ([#41](https://github.com/hausgold/rimless/pull/41))
53
61
 
54
62
  ### 1.7.0 (8 July 2024)
55
63
 
56
- * Added CI tests for Rails 6.1 and 7.1 (#39)
64
+ * Added CI tests for Rails 6.1 and 7.1 ([#39](https://github.com/hausgold/rimless/pull/39))
57
65
 
58
66
  ### 1.6.0 (3 July 2024)
59
67
 
60
- * Dropped support for Ruby <2.7 (#38)
68
+ * Dropped support for Ruby <2.7 ([#38](https://github.com/hausgold/rimless/pull/38))
61
69
  * Moved the schema file validation into the retry block for parallel execution
62
- (#37)
70
+ ([#37](https://github.com/hausgold/rimless/pull/37))
63
71
  * Updated the [Kafka Playground](./doc/kafka-playground) to the latest
64
- Apache Kafka (3.7) and Schema Registry (7.6) versions (#35)
72
+ Apache Kafka (3.7) and Schema Registry (7.6) versions ([#35](https://github.com/hausgold/rimless/pull/35))
65
73
 
66
74
  ### 1.5.1 (26 April 2024)
67
75
 
68
76
  * Added a retry to write compiled schema files as this may fail on parallel
69
- execution (#33)
77
+ execution ([#33](https://github.com/hausgold/rimless/pull/33))
70
78
 
71
79
  ### 1.5.0 (4 December 2023)
72
80
 
73
81
  * Do not extend the `Rimless.logger` to write to stdout by default when running
74
82
  in the `development` environment - this generates duplicated messages when
75
83
  the configured logger already writes to stdout. A new configuration was added
76
- `Rimless.configuration.extend_dev_logger = false` was added (#32)
84
+ `Rimless.configuration.extend_dev_logger = false` was added ([#32](https://github.com/hausgold/rimless/pull/32))
77
85
 
78
86
  ### 1.4.2 (12 July 2023)
79
87
 
80
88
  * Reverted to use `yield_self` instead of `then` in order to support Ruby 2.5
81
- as advertised (broken since #19, 1.3.0) (#31)
89
+ as advertised (broken since #19, 1.3.0) ([#31](https://github.com/hausgold/rimless/pull/31))
82
90
 
83
91
  ### 1.4.1 (5 July 2023)
84
92
 
85
- * Moved the development dependencies from the gemspec to the Gemfile (#29)
93
+ * Moved the development dependencies from the gemspec to the Gemfile ([#29](https://github.com/hausgold/rimless/pull/29))
86
94
  * Pinned Karafka gem <1.4.15 in order to suppress the
87
- `I_ACCEPT_CRITICAL_ERRORS_IN_KARAFKA_1_4=true` agony (#30)
95
+ `I_ACCEPT_CRITICAL_ERRORS_IN_KARAFKA_1_4=true` agony ([#30](https://github.com/hausgold/rimless/pull/30))
88
96
 
89
97
  ### 1.4.0 (24 February 2023)
90
98
 
@@ -92,15 +100,15 @@
92
100
 
93
101
  ### 1.3.0 (18 January 2023)
94
102
 
95
- * Bundler >= 2.3 is from now on required as minimal version (#19)
96
- * Dropped support for Ruby < 2.5 (#19)
97
- * Dropped support for Rails < 5.2 (#19)
103
+ * Bundler >= 2.3 is from now on required as minimal version ([#19](https://github.com/hausgold/rimless/pull/19))
104
+ * Dropped support for Ruby < 2.5 ([#19](https://github.com/hausgold/rimless/pull/19))
105
+ * Dropped support for Rails < 5.2 ([#19](https://github.com/hausgold/rimless/pull/19))
98
106
  * Updated all development/runtime gems to their latest
99
- Ruby 2.5 compatible version (#19)
107
+ Ruby 2.5 compatible version ([#19](https://github.com/hausgold/rimless/pull/19))
100
108
 
101
109
  ### 1.2.0 (4 October 2021)
102
110
 
103
- * Added a `capture_kafka_messages` helper for RSpec (#12)
111
+ * Added a `capture_kafka_messages` helper for RSpec ([#12](https://github.com/hausgold/rimless/pull/12))
104
112
 
105
113
  ### 1.1.1 (12 May 2021)
106
114
 
@@ -109,16 +117,16 @@
109
117
  ### 1.1.0 (23 October 2020)
110
118
 
111
119
  * Added support for Karafka `~> 1.4.0` and set is as minimum dependency version
112
- (#10)
120
+ ([#10](https://github.com/hausgold/rimless/pull/10))
113
121
 
114
122
  ### 1.0.4 (14 August 2020)
115
123
 
116
124
  * Mocked WaterDrop producers in the rimless rspec helper so that tests
117
- won't actually talk to Kafka (#9)
125
+ won't actually talk to Kafka ([#9](https://github.com/hausgold/rimless/pull/9))
118
126
 
119
127
  ### 1.0.3 (14 May 2020)
120
128
 
121
- * Corrected broken stats when no consumer is yet defined (#8)
129
+ * Corrected broken stats when no consumer is yet defined ([#8](https://github.com/hausgold/rimless/pull/8))
122
130
 
123
131
  ### 1.0.2 (11 March 2020)
124
132
 
@@ -133,12 +141,12 @@
133
141
 
134
142
  ### 1.0.0 (11 March 2020)
135
143
 
136
- * Dropped support for Ruby 2.3/2.4 and added support for Rails 6.0 (#6)
137
- * Implemented a simple opinionated Kafka consumer setup (#7)
144
+ * Dropped support for Ruby 2.3/2.4 and added support for Rails 6.0 ([#6](https://github.com/hausgold/rimless/pull/6))
145
+ * Implemented a simple opinionated Kafka consumer setup ([#7](https://github.com/hausgold/rimless/pull/7))
138
146
 
139
147
  ### 0.3.0 (8 November 2019)
140
148
 
141
- * Upgraded the avro_turf gem (`~> 0.11.0`) (#5)
149
+ * Upgraded the avro_turf gem (`~> 0.11.0`) ([#5](https://github.com/hausgold/rimless/pull/5))
142
150
 
143
151
  ### 0.2.1 (13 August 2019)
144
152
 
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Rimless
5
5
  # The version of the +rimless+ gem
6
- VERSION = '1.10.1'
6
+ VERSION = '1.11.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/lib/rimless.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'zeitwerk'
4
+ require 'logger'
4
5
  require 'active_support'
5
6
  require 'active_support/concern'
6
7
  require 'active_support/configurable'
data/rimless.gemspec CHANGED
@@ -40,6 +40,7 @@ Gem::Specification.new do |spec|
40
40
  spec.add_dependency 'karafka', '~> 1.4', '< 1.4.15'
41
41
  spec.add_dependency 'karafka-sidekiq-backend', '~> 1.4'
42
42
  spec.add_dependency 'karafka-testing', '~> 1.4'
43
+ spec.add_dependency 'mutex_m', '~> 0.3.0'
43
44
  spec.add_dependency 'retries', '>= 0.0.5'
44
45
  spec.add_dependency 'sinatra', '~> 2.2'
45
46
  spec.add_dependency 'sparsify', '~> 1.1'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rimless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.1
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-13 00:00:00.000000000 Z
11
+ date: 2025-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -86,6 +86,20 @@ dependencies:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
88
  version: '1.4'
89
+ - !ruby/object:Gem::Dependency
90
+ name: mutex_m
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: 0.3.0
96
+ type: :runtime
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: 0.3.0
89
103
  - !ruby/object:Gem::Dependency
90
104
  name: retries
91
105
  requirement: !ruby/object:Gem::Requirement
@@ -282,7 +296,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
282
296
  - !ruby/object:Gem::Version
283
297
  version: '0'
284
298
  requirements: []
285
- rubygems_version: 3.3.26
299
+ rubygems_version: 3.4.22
286
300
  signing_key:
287
301
  specification_version: 4
288
302
  summary: A bundle of opinionated Apache Kafka / Confluent Schema Registry helpers.