jabber_admin 2.8.0 → 2.10.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: b5d70016fbded8c9138c773121cf64a0af9ad0649f977880b12349b6c5955227
4
+ data.tar.gz: 2630cf4d854e8eb3050ede0be81f3969a9489edece017b236ee8654779862393
5
5
  SHA512:
6
- metadata.gz: 712adecd97899898cd14fb9db2f5bb13dc1688e0bbd2f50bfb22b6064f1a13024a25d387656d216149119b63c316cf8977a8a0097603fbcfb71df20d5cdeb6b1
7
- data.tar.gz: dfe6b8556e159c8b05b3437bafc4733236e256835b01ffb1f424ceb2c26fb9c175a528cb945ade2be9d398219a72368b185391669f4f1150d287def45a10dc48
6
+ metadata.gz: aaf70494a4f596e1dcb3d25635850ea5c8445e3952f57f85de229c594920ba16a4f6b226c9fb82111d72508e0cb7d0aaf4a85ee020339f82a3e86a6c7ecbef1f
7
+ data.tar.gz: db0859c08662419dd597d9034024874a3d5cc6026c31818f7233610b37c94f8e46b252e05ef786a05e5197e83374d0d8d4e974813e77b7c19ad125d0a5f4641b
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 2.10.0 (27 August 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#33](https://github.com/hausgold/jabber_admin/pull/33))
8
+
9
+ ### 2.9.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#32](https://github.com/hausgold/jabber_admin/pull/32))
12
+
5
13
  ### 2.8.0 (4 May 2026)
6
14
 
7
15
  * 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
@@ -15,7 +15,7 @@ module JabberAdmin
15
15
  # @param status [String] the user status (eg. +I'm online+)
16
16
  # @param priority [String] presence priority (eg. +7+)
17
17
  #
18
- # rubocop:disable Metrics/ParameterLists -- because of the mapping
18
+ # rubocop:disable-next Metrics/ParameterLists -- because of the mapping
19
19
  def self.call(callable, user:, type: 'available', show: 'chat',
20
20
  status: '', priority: '7')
21
21
  uid, host = user.split('@')
@@ -30,7 +30,6 @@ module JabberAdmin
30
30
  status: status,
31
31
  priority: priority)
32
32
  end
33
- # rubocop:enable Metrics/ParameterLists
34
33
  end
35
34
  end
36
35
  end
@@ -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.10.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.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  - !ruby/object:Gem::Version
151
151
  version: '0'
152
152
  requirements: []
153
- rubygems_version: 4.0.11
153
+ rubygems_version: 4.0.16
154
154
  specification_version: 4
155
155
  summary: Library for the ejabberd RESTful admin API
156
156
  test_files: []