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 +4 -4
- data/CHANGELOG.md +8 -0
- data/Makefile +5 -3
- data/lib/jabber_admin/commands/set_presence.rb +1 -2
- data/lib/jabber_admin/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5d70016fbded8c9138c773121cf64a0af9ad0649f977880b12349b6c5955227
|
|
4
|
+
data.tar.gz: 2630cf4d854e8eb3050ede0be81f3969a9489edece017b236ee8654779862393
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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
|
|
@@ -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
|
data/lib/jabber_admin/version.rb
CHANGED
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.
|
|
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.
|
|
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: []
|