rimless 3.4.0 → 3.5.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/CHANGELOG.md +4 -0
- data/doc/kafka-playground/Dockerfile +2 -2
- data/lib/rimless/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b411634701bb1272091076f6fa9bdea4065f4cc4b9af31f3466e748014637b74
|
|
4
|
+
data.tar.gz: e6941968ab01ae0f4c4e6a37b2c4bfd8171b915c73715193f3ee40c8c2f1c88f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da4f6bfc4cc93476984d8e1443f3ef93c6430d697a4dd6078a9631811d955c7a69e8787386502f1c7a7c67f97279c9ef92eb1ad7ac5cc808a6cb20704eac464a
|
|
7
|
+
data.tar.gz: b75fbf23d4b408752109ea072844ec7bb0592fae1e0b28d7caa4319d9b4288e721d019bccdc252d691897c57b34abd285d32a5eb77185d8636be81d06de5f545
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 3.5.0 (15 May 2026)
|
|
6
|
+
|
|
7
|
+
* Updated the kafka-playground ([#78](https://github.com/hausgold/rimless/pull/78))
|
|
8
|
+
|
|
5
9
|
### 3.4.0 (4 May 2026)
|
|
6
10
|
|
|
7
11
|
* Dropped Ruby 3.x and Rails <8.1 support ([#77](https://github.com/hausgold/rimless/pull/77))
|
|
@@ -4,8 +4,8 @@ LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
|
|
4
4
|
# Update system gem
|
|
5
5
|
RUN gem update --system '4.0.11'
|
|
6
6
|
|
|
7
|
-
# Install nodejs
|
|
8
|
-
RUN curl -sL https://deb.nodesource.com/
|
|
7
|
+
# Install nodejs 26
|
|
8
|
+
RUN curl -sL https://deb.nodesource.com/setup_26.x | bash -
|
|
9
9
|
|
|
10
10
|
# Install system packages and the ruby bundless
|
|
11
11
|
RUN apt-get update -yqqq && \
|
data/lib/rimless/version.rb
CHANGED