jabber_admin 2.8.0 → 2.9.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/Makefile +5 -3
- data/lib/jabber_admin/version.rb +1 -1
- 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: b096a7963b71ee54212bab03dc6e6753600153622d2b178347aad1ba3463829f
|
|
4
|
+
data.tar.gz: 58afee7cf12d539b0f66a3b09da3c47b2230c77ec3e618922378fc39d306024a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eed3e45461da242e0e0275067e123028d58993e4832b67182de6124dda0cdfd10c537d26a1d8d925ebccfb2f0145e5d426e3f17bf964cbc800e5ebee6cb41e61
|
|
7
|
+
data.tar.gz: 81796cdd46e2d9f7cf41e3e3bef36bbcb493f3413b65955d4a7d7792be6f70f55bb2de613c165d69b6cc0df9cf12554d4f3af702c8c423fb7348091132b3e094
|
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
|
+
### 2.9.0 (20 May 2026)
|
|
6
|
+
|
|
7
|
+
* Corrected some RuboCop glitches ([#32](https://github.com/hausgold/jabber_admin/pull/32))
|
|
8
|
+
|
|
5
9
|
### 2.8.0 (4 May 2026)
|
|
6
10
|
|
|
7
11
|
* Dropped Ruby 3.x and Rails <8.1 support ([#31](https://github.com/hausgold/jabber_admin/pull/31))
|
data/Makefile
CHANGED
|
@@ -141,9 +141,11 @@ endif
|
|
|
141
141
|
clean-images:
|
|
142
142
|
# Clean build images
|
|
143
143
|
ifeq ($(MAKE_ENV),docker)
|
|
144
|
-
|
|
145
|
-
| $(
|
|
146
|
-
| $(
|
|
144
|
+
@$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
|
|
145
|
+
| $(GREP) $(shell basename "`pwd`") \
|
|
146
|
+
| $(AWK) '{ print $$0 }' \
|
|
147
|
+
| $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
|
|
148
|
+
| $(GREP) -vP 'cannot be forced|invalid reference' || true
|
|
147
149
|
endif
|
|
148
150
|
|
|
149
151
|
distclean: clean clean-containers clean-images
|
data/lib/jabber_admin/version.rb
CHANGED