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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b4a8df5af083fda5068d648fc2893dac9c64a457299a45a4682ce85daee4ffe
4
- data.tar.gz: 02c7a30b85727466454363dd1020f99f2037d2f34d11cf1b37a24252d925b20e
3
+ metadata.gz: 621a0919d660a4861a0e210afd5e52cbfbcfd41d3670f78cc630b7bfcc726154
4
+ data.tar.gz: d876f7cdb6f950de67b883f9ad5867fdf0abe0c765d98d10cf0743b2bd030fa6
5
5
  SHA512:
6
- metadata.gz: 91d07cd58e3ce211a212c15c283e42836b11a50af7fc8429f1d56e31178b85f15c03257313ab372eac272449b1c224ee03966a9aff05165b1f5f2a866cec324e
7
- data.tar.gz: a28bf57252f325585308e066efd06771ee8b29497a5d9a693e4d31d1d3f9dad3eda658d7919212e22ed4076f6610e8214182f6a4bd4da8ceb2e03c7f6d20fc68
6
+ metadata.gz: 70815b8dfb24cdc5ae04eb08b0ef041e9968eca1403ba77568cf71f644e7cb1bc757eacbed7f18ea7ab82511580f2d813ece264cb5a95a457cc5ff7e72180e48
7
+ data.tar.gz: 0afbde6340aaef2209ebe60c214bb4a494f83c8204c597819bbc05e74d8626addac278b4b2600a04abada49620dcff0367ff229d2f9ecab79001fb96c33449fa
@@ -31,7 +31,7 @@ jobs:
31
31
  with:
32
32
  ruby-version: 3.3
33
33
  bundler-cache: true
34
- rubygems: '3.6.9'
34
+ rubygems: '3.7.2'
35
35
 
36
36
  - name: Switch to SSH remotes for the Git repository
37
37
  run: git-ssh-remotes
@@ -19,7 +19,7 @@ jobs:
19
19
  fail-fast: false
20
20
  matrix:
21
21
  ruby: ['3.3', '3.4', '4.0']
22
- rails: ['7.2', '8.0', '8.1']
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.6.9'
39
+ rubygems: '3.7.2'
40
40
 
41
41
  - name: Run the gem tests
42
42
  run: make test
data/.rubocop.yml CHANGED
@@ -18,7 +18,7 @@ AllCops:
18
18
  SuggestExtensions: false
19
19
  DisplayCopNames: true
20
20
  TargetRubyVersion: 3.3
21
- TargetRailsVersion: 7.2
21
+ TargetRailsVersion: 8.0
22
22
  Exclude:
23
23
  - bin/**/*
24
24
  - vendor/**/*
data/Appraisals CHANGED
@@ -1,10 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'rails-7.2' do
4
- gem 'activesupport', '~> 7.2.0'
5
- gem 'railties', '~> 7.2.0'
6
- end
7
-
8
3
  appraise 'rails-8.0' do
9
4
  gem 'activesupport', '~> 8.0.0'
10
5
  gem 'railties', '~> 8.0.0'
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.6.9'
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.6.9' --no-document --no-prerelease
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
@@ -13,7 +13,7 @@ gem 'bundler', '>= 2.6', '< 5'
13
13
  gem 'countless', '~> 2.2'
14
14
  gem 'factory_bot', '~> 6.2'
15
15
  gem 'guard-rspec', '~> 4.7'
16
- gem 'railties', '>= 7.2'
16
+ gem 'railties', '>= 8.0'
17
17
  gem 'rake', '~> 13.0'
18
18
  gem 'redcarpet', '~> 3.5'
19
19
  gem 'rspec', '~> 3.12'
@@ -1,12 +1,8 @@
1
- FROM hausgold/ruby:2.7
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.4.22'
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.4.22' --no-document --no-prerelease
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 https://github.com/edenhill/kcat/archive/refs/tags/1.7.0.tar.gz \
25
- | tar xfvz - -C /tmp && cd /tmp/kcat-* && ./bootstrap.sh && \
26
- mv kcat /usr/local/bin && cd / && rm -rf /tmp/kcat-*
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', '~> 1.11'
6
+ gem 'rimless', '~> 2.6'
7
7
  # Thor is a toolkit for building powerful command-line interfaces.
8
- gem 'thor', '~> 1.1'
8
+ gem 'thor', '~> 1.5'
@@ -1,19 +1,19 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- activesupport (7.1.5.1)
4
+ activesupport (8.1.2)
5
5
  base64
6
- benchmark (>= 0.3)
7
6
  bigdecimal
8
- concurrent-ruby (~> 1.0, >= 1.0.2)
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 (1.11.0)
120
- activesupport (>= 6.1)
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 (~> 0.3.0)
126
+ mutex_m (>= 0.3)
127
+ ostruct (>= 0.6)
126
128
  retries (>= 0.0.5)
127
- sinatra (~> 2.2)
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.3.2)
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 (~> 1.11)
170
- thor (~> 1.1)
172
+ rimless (~> 2.6)
173
+ thor (~> 1.5)
171
174
 
172
175
  BUNDLED WITH
173
- 2.4.22
176
+ 2.6.9
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Rimless
5
5
  # The version of the +rimless+ gem
6
- VERSION = '2.6.0'
6
+ VERSION = '2.7.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
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', '>= 7.2'
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.6.0
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: '7.2'
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: '7.2'
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.6.9
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: []
@@ -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: "../"