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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8198deacf34af28800b073fdfc499141ecefccaae6a3aba6f0e21664e903d193
4
- data.tar.gz: 29ecc6661c83307c2949cdcec910898670c8ab172313c246f7064a63f79dfc98
3
+ metadata.gz: b096a7963b71ee54212bab03dc6e6753600153622d2b178347aad1ba3463829f
4
+ data.tar.gz: 58afee7cf12d539b0f66a3b09da3c47b2230c77ec3e618922378fc39d306024a
5
5
  SHA512:
6
- metadata.gz: 712adecd97899898cd14fb9db2f5bb13dc1688e0bbd2f50bfb22b6064f1a13024a25d387656d216149119b63c316cf8977a8a0097603fbcfb71df20d5cdeb6b1
7
- data.tar.gz: dfe6b8556e159c8b05b3437bafc4733236e256835b01ffb1f424ceb2c26fb9c175a528cb945ade2be9d398219a72368b185391669f4f1150d287def45a10dc48
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
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
145
- | $(AWK) '{ print $$3 }' \
146
- | $(XARGS) -rn1 $(DOCKER) rmi -f
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
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module JabberAdmin
5
5
  # The version of the +jabber_admin+ gem
6
- VERSION = '2.8.0'
6
+ VERSION = '2.9.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jabber_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.0
4
+ version: 2.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer