rimless 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +2 -2
- data/.rubocop.yml +1 -1
- data/Appraisals +0 -5
- data/CHANGELOG.md +5 -0
- data/Dockerfile +2 -2
- data/Gemfile +1 -1
- data/doc/kafka-playground/Dockerfile +8 -10
- data/doc/kafka-playground/Gemfile +2 -2
- data/doc/kafka-playground/Gemfile.lock +17 -14
- data/lib/rimless/version.rb +1 -1
- data/rimless.gemspec +1 -1
- metadata +4 -5
- data/gemfiles/rails_7.2.gemfile +0 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 621a0919d660a4861a0e210afd5e52cbfbcfd41d3670f78cc630b7bfcc726154
|
|
4
|
+
data.tar.gz: d876f7cdb6f950de67b883f9ad5867fdf0abe0c765d98d10cf0743b2bd030fa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70815b8dfb24cdc5ae04eb08b0ef041e9968eca1403ba77568cf71f644e7cb1bc757eacbed7f18ea7ab82511580f2d813ece264cb5a95a457cc5ff7e72180e48
|
|
7
|
+
data.tar.gz: 0afbde6340aaef2209ebe60c214bb4a494f83c8204c597819bbc05e74d8626addac278b4b2600a04abada49620dcff0367ff229d2f9ecab79001fb96c33449fa
|
data/.github/workflows/test.yml
CHANGED
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
21
|
ruby: ['3.3', '3.4', '4.0']
|
|
22
|
-
rails: ['
|
|
22
|
+
rails: ['8.0', '8.1']
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
with:
|
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
|
38
38
|
bundler-cache: true
|
|
39
|
-
rubygems: '3.
|
|
39
|
+
rubygems: '3.7.2'
|
|
40
40
|
|
|
41
41
|
- name: Run the gem tests
|
|
42
42
|
run: make test
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 2.7.0 (28 January 2026)
|
|
6
|
+
|
|
7
|
+
* Dropped Rails 7.1 support ([#70](https://github.com/hausgold/rimless/pull/70))
|
|
8
|
+
* Updated the doc/kafka-playground to latest Rimless/Ruby 3.4 ([#69](https://github.com/hausgold/rimless/pull/69))
|
|
9
|
+
|
|
5
10
|
### 2.6.0 (19 January 2026)
|
|
6
11
|
|
|
7
12
|
* Added the `ostruct` gem ([#68](https://github.com/hausgold/rimless/pull/68))
|
data/Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ FROM hausgold/ruby:3.3
|
|
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
|
3
3
|
|
|
4
4
|
# Update system gem
|
|
5
|
-
RUN gem update --system '3.
|
|
5
|
+
RUN gem update --system '3.7.2'
|
|
6
6
|
|
|
7
7
|
# Install system packages and the latest bundler
|
|
8
8
|
RUN apt-get update -yqqq && \
|
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
|
11
11
|
ca-certificates \
|
|
12
12
|
bash-completion inotify-tools && \
|
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
|
14
|
-
gem install bundler -v '~> 2.
|
|
14
|
+
gem install bundler -v '~> 2.7.2' --no-document --no-prerelease
|
|
15
15
|
|
|
16
16
|
# Add new web user
|
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
FROM hausgold/ruby:
|
|
1
|
+
FROM hausgold/ruby:3.4
|
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
|
3
3
|
|
|
4
4
|
# Update system gem
|
|
5
|
-
RUN gem update --system '3.
|
|
6
|
-
|
|
7
|
-
# Add backports repository
|
|
8
|
-
RUN echo 'deb http://archive.debian.org/debian buster-backports main' \
|
|
9
|
-
>> /etc/apt/sources.list
|
|
5
|
+
RUN gem update --system '3.6.9'
|
|
10
6
|
|
|
11
7
|
# Install nodejs 24
|
|
12
8
|
RUN curl -sL https://deb.nodesource.com/setup_24.x | bash -
|
|
@@ -18,12 +14,14 @@ RUN apt-get update -yqqq && \
|
|
|
18
14
|
ca-certificates jq curl cmake \
|
|
19
15
|
bash-completion inotify-tools && \
|
|
20
16
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
|
21
|
-
gem install bundler -v '~> 2.
|
|
17
|
+
gem install bundler -v '~> 2.6.9' --no-document --no-prerelease
|
|
22
18
|
|
|
23
19
|
# Install kcat (formerly known as kafkacat)
|
|
24
|
-
RUN curl -sL
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
RUN curl -sL -o - \
|
|
21
|
+
'https://packages.hausgold.de/debian-13-kcat_1.8.0-1_amd64.deb' \
|
|
22
|
+
> /tmp/kcat.deb && \
|
|
23
|
+
apt install -y /tmp/kcat.deb && \
|
|
24
|
+
rm -rf /tmp/kcat.deb
|
|
27
25
|
|
|
28
26
|
# Add new app user
|
|
29
27
|
RUN mkdir /app && \
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
source 'https://rubygems.org'
|
|
4
4
|
|
|
5
5
|
# A bundle of opinionated Apache Kafka / Confluent Schema Registry helpers.
|
|
6
|
-
gem 'rimless', '~>
|
|
6
|
+
gem 'rimless', '~> 2.6'
|
|
7
7
|
# Thor is a toolkit for building powerful command-line interfaces.
|
|
8
|
-
gem 'thor', '~> 1.
|
|
8
|
+
gem 'thor', '~> 1.5'
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
activesupport (
|
|
4
|
+
activesupport (8.1.2)
|
|
5
5
|
base64
|
|
6
|
-
benchmark (>= 0.3)
|
|
7
6
|
bigdecimal
|
|
8
|
-
concurrent-ruby (~> 1.0, >= 1.
|
|
7
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
9
8
|
connection_pool (>= 2.2.5)
|
|
10
9
|
drb
|
|
11
10
|
i18n (>= 1.6, < 2)
|
|
11
|
+
json
|
|
12
12
|
logger (>= 1.4.2)
|
|
13
13
|
minitest (>= 5.1)
|
|
14
|
-
mutex_m
|
|
15
14
|
securerandom (>= 0.3)
|
|
16
|
-
tzinfo (~> 2.0)
|
|
15
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
16
|
+
uri (>= 0.13.1)
|
|
17
17
|
addressable (2.8.7)
|
|
18
18
|
public_suffix (>= 2.0.2, < 7.0)
|
|
19
19
|
avro (1.9.2)
|
|
@@ -22,7 +22,6 @@ GEM
|
|
|
22
22
|
avro (>= 1.7.7, < 1.10)
|
|
23
23
|
excon (~> 0.45)
|
|
24
24
|
base64 (0.2.0)
|
|
25
|
-
benchmark (0.4.0)
|
|
26
25
|
bigdecimal (3.1.9)
|
|
27
26
|
concurrent-ruby (1.3.5)
|
|
28
27
|
connection_pool (2.5.0)
|
|
@@ -84,6 +83,7 @@ GEM
|
|
|
84
83
|
hashdiff (1.1.2)
|
|
85
84
|
i18n (1.14.7)
|
|
86
85
|
concurrent-ruby (~> 1.0)
|
|
86
|
+
json (2.18.0)
|
|
87
87
|
karafka (1.4.14)
|
|
88
88
|
concurrent-ruby
|
|
89
89
|
dry-configurable (~> 0.16)
|
|
@@ -107,6 +107,7 @@ GEM
|
|
|
107
107
|
mustermann (2.0.2)
|
|
108
108
|
ruby2_keywords (~> 0.0.1)
|
|
109
109
|
mutex_m (0.3.0)
|
|
110
|
+
ostruct (0.6.3)
|
|
110
111
|
public_suffix (5.1.1)
|
|
111
112
|
rack (2.2.11)
|
|
112
113
|
rack-protection (2.2.4)
|
|
@@ -116,15 +117,16 @@ GEM
|
|
|
116
117
|
connection_pool
|
|
117
118
|
retries (0.0.5)
|
|
118
119
|
rexml (3.4.1)
|
|
119
|
-
rimless (
|
|
120
|
-
activesupport (>=
|
|
120
|
+
rimless (2.6.0)
|
|
121
|
+
activesupport (>= 7.2)
|
|
121
122
|
avro_turf (~> 0.11.0)
|
|
122
123
|
karafka (~> 1.4, < 1.4.15)
|
|
123
124
|
karafka-sidekiq-backend (~> 1.4)
|
|
124
125
|
karafka-testing (~> 1.4)
|
|
125
|
-
mutex_m (
|
|
126
|
+
mutex_m (>= 0.3)
|
|
127
|
+
ostruct (>= 0.6)
|
|
126
128
|
retries (>= 0.0.5)
|
|
127
|
-
sinatra (
|
|
129
|
+
sinatra (>= 2.2)
|
|
128
130
|
sparsify (~> 1.1)
|
|
129
131
|
waterdrop (~> 1.4)
|
|
130
132
|
webmock (~> 3.18)
|
|
@@ -145,10 +147,11 @@ GEM
|
|
|
145
147
|
rack-protection (= 2.2.4)
|
|
146
148
|
tilt (~> 2.0)
|
|
147
149
|
sparsify (1.1.0)
|
|
148
|
-
thor (1.
|
|
150
|
+
thor (1.5.0)
|
|
149
151
|
tilt (2.6.0)
|
|
150
152
|
tzinfo (2.0.6)
|
|
151
153
|
concurrent-ruby (~> 1.0)
|
|
154
|
+
uri (1.1.1)
|
|
152
155
|
waterdrop (1.4.4)
|
|
153
156
|
delivery_boy (>= 0.2, < 2.x)
|
|
154
157
|
dry-configurable (~> 0.13)
|
|
@@ -166,8 +169,8 @@ PLATFORMS
|
|
|
166
169
|
x86_64-linux
|
|
167
170
|
|
|
168
171
|
DEPENDENCIES
|
|
169
|
-
rimless (~>
|
|
170
|
-
thor (~> 1.
|
|
172
|
+
rimless (~> 2.6)
|
|
173
|
+
thor (~> 1.5)
|
|
171
174
|
|
|
172
175
|
BUNDLED WITH
|
|
173
|
-
2.
|
|
176
|
+
2.6.9
|
data/lib/rimless/version.rb
CHANGED
data/rimless.gemspec
CHANGED
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
|
35
35
|
|
|
36
36
|
spec.required_ruby_version = '>= 3.3'
|
|
37
37
|
|
|
38
|
-
spec.add_dependency 'activesupport', '>=
|
|
38
|
+
spec.add_dependency 'activesupport', '>= 8.0'
|
|
39
39
|
spec.add_dependency 'avro_turf', '~> 0.11.0'
|
|
40
40
|
spec.add_dependency 'karafka', '~> 1.4', '< 1.4.15'
|
|
41
41
|
spec.add_dependency 'karafka-sidekiq-backend', '~> 1.4'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rimless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '
|
|
18
|
+
version: '8.0'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '
|
|
25
|
+
version: '8.0'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: avro_turf
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -255,7 +255,6 @@ files:
|
|
|
255
255
|
- doc/kafka-playground/docker-compose.yml
|
|
256
256
|
- doc/kafka-playground/examples/rimless-produce
|
|
257
257
|
- docker-compose.yml
|
|
258
|
-
- gemfiles/rails_7.2.gemfile
|
|
259
258
|
- gemfiles/rails_8.0.gemfile
|
|
260
259
|
- gemfiles/rails_8.1.gemfile
|
|
261
260
|
- lib/rimless.rb
|
|
@@ -308,7 +307,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
308
307
|
- !ruby/object:Gem::Version
|
|
309
308
|
version: '0'
|
|
310
309
|
requirements: []
|
|
311
|
-
rubygems_version: 3.
|
|
310
|
+
rubygems_version: 3.7.2
|
|
312
311
|
specification_version: 4
|
|
313
312
|
summary: A bundle of opinionated Apache Kafka / Confluent Schema Registry helpers.
|
|
314
313
|
test_files: []
|
data/gemfiles/rails_7.2.gemfile
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "bundler", ">= 2.6", "< 5"
|
|
7
|
-
gem "countless", "~> 2.2"
|
|
8
|
-
gem "factory_bot", "~> 6.2"
|
|
9
|
-
gem "guard-rspec", "~> 4.7"
|
|
10
|
-
gem "railties", "~> 7.2.0"
|
|
11
|
-
gem "rake", "~> 13.0"
|
|
12
|
-
gem "redcarpet", "~> 3.5"
|
|
13
|
-
gem "rspec", "~> 3.12"
|
|
14
|
-
gem "rubocop"
|
|
15
|
-
gem "rubocop-rails"
|
|
16
|
-
gem "rubocop-rspec"
|
|
17
|
-
gem "simplecov", ">= 0.22"
|
|
18
|
-
gem "timecop", ">= 0.9.6"
|
|
19
|
-
gem "vcr", "~> 6.0"
|
|
20
|
-
gem "yard", ">= 0.9.28"
|
|
21
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
22
|
-
gem "activesupport", "~> 7.2.0"
|
|
23
|
-
|
|
24
|
-
gemspec path: "../"
|