jabber_admin 2.7.0 → 2.8.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/.github/workflows/release.yml +3 -3
- data/.github/workflows/test.yml +3 -3
- data/.rubocop.yml +2 -2
- data/Appraisals +0 -4
- data/CHANGELOG.md +4 -0
- data/Dockerfile +3 -3
- data/Gemfile +1 -1
- data/Makefile +1 -1
- data/gemfiles/rails_8.1.gemfile +1 -1
- data/jabber_admin.gemspec +2 -2
- data/lib/jabber_admin/version.rb +1 -1
- data/lib/jabber_admin.rb +0 -1
- metadata +5 -6
- data/gemfiles/rails_8.0.gemfile +0 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8198deacf34af28800b073fdfc499141ecefccaae6a3aba6f0e21664e903d193
|
|
4
|
+
data.tar.gz: 29ecc6661c83307c2949cdcec910898670c8ab172313c246f7064a63f79dfc98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 712adecd97899898cd14fb9db2f5bb13dc1688e0bbd2f50bfb22b6064f1a13024a25d387656d216149119b63c316cf8977a8a0097603fbcfb71df20d5cdeb6b1
|
|
7
|
+
data.tar.gz: dfe6b8556e159c8b05b3437bafc4733236e256835b01ffb1f424ceb2c26fb9c175a528cb945ade2be9d398219a72368b185391669f4f1150d287def45a10dc48
|
|
@@ -26,12 +26,12 @@ jobs:
|
|
|
26
26
|
settings: '${{ github.repository }}'
|
|
27
27
|
target: ci/gem-test
|
|
28
28
|
|
|
29
|
-
- name: Install Ruby
|
|
29
|
+
- name: Install Ruby 4.0
|
|
30
30
|
uses: ruby/setup-ruby@v1
|
|
31
31
|
with:
|
|
32
|
-
ruby-version:
|
|
32
|
+
ruby-version: 4.0
|
|
33
33
|
bundler-cache: true
|
|
34
|
-
rubygems: '
|
|
34
|
+
rubygems: '4.0.11'
|
|
35
35
|
|
|
36
36
|
- name: Switch to SSH remotes for the Git repository
|
|
37
37
|
run: git-ssh-remotes
|
data/.github/workflows/test.yml
CHANGED
|
@@ -18,8 +18,8 @@ jobs:
|
|
|
18
18
|
strategy:
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
|
-
ruby: ['
|
|
22
|
-
rails: ['8.
|
|
21
|
+
ruby: ['4.0']
|
|
22
|
+
rails: ['8.1']
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
with:
|
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
|
38
38
|
bundler-cache: true
|
|
39
|
-
rubygems: '
|
|
39
|
+
rubygems: '4.0.11'
|
|
40
40
|
|
|
41
41
|
- name: Run the gem tests
|
|
42
42
|
run: make test
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
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.8.0 (4 May 2026)
|
|
6
|
+
|
|
7
|
+
* Dropped Ruby 3.x and Rails <8.1 support ([#31](https://github.com/hausgold/jabber_admin/pull/31))
|
|
8
|
+
|
|
5
9
|
### 2.7.0 (18 February 2026)
|
|
6
10
|
|
|
7
11
|
* Dropped 3rd-level gem dependencies which are not directly used
|
data/Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
FROM hausgold/ruby:
|
|
1
|
+
FROM hausgold/ruby:4.0
|
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
|
3
3
|
|
|
4
4
|
# Update system gem
|
|
5
|
-
RUN gem update --system '
|
|
5
|
+
RUN gem update --system '4.0.11'
|
|
6
6
|
|
|
7
7
|
# Install system packages and the latest bundler
|
|
8
8
|
RUN apt-get update -yqqq && \
|
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
|
11
11
|
ca-certificates \
|
|
12
12
|
bash-completion inotify-tools && \
|
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
|
14
|
-
gem install bundler -v '~>
|
|
14
|
+
gem install bundler -v '~> 4.0.11' --no-document --no-prerelease
|
|
15
15
|
|
|
16
16
|
# Add new web user
|
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
data/Makefile
CHANGED
|
@@ -122,7 +122,7 @@ test-style: test-style-ruby
|
|
|
122
122
|
test-style-ruby:
|
|
123
123
|
# Run the static code analyzer (rubocop)
|
|
124
124
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
125
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '
|
|
125
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '4.0' && true))
|
|
126
126
|
|
|
127
127
|
clean:
|
|
128
128
|
# Clean the dependencies
|
data/gemfiles/rails_8.1.gemfile
CHANGED
data/jabber_admin.gemspec
CHANGED
|
@@ -31,9 +31,9 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
32
32
|
spec.require_paths = ['lib']
|
|
33
33
|
|
|
34
|
-
spec.required_ruby_version = '>=
|
|
34
|
+
spec.required_ruby_version = '>= 4.0'
|
|
35
35
|
|
|
36
|
-
spec.add_dependency 'activesupport', '>= 8.
|
|
36
|
+
spec.add_dependency 'activesupport', '>= 8.1'
|
|
37
37
|
spec.add_dependency 'logger', '~> 1.7'
|
|
38
38
|
spec.add_dependency 'rest-client', '~> 2.1'
|
|
39
39
|
spec.add_dependency 'zeitwerk', '~> 2.6'
|
data/lib/jabber_admin/version.rb
CHANGED
data/lib/jabber_admin.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.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '8.
|
|
19
|
+
version: '8.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '8.
|
|
26
|
+
version: '8.1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: logger
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -101,7 +101,6 @@ files:
|
|
|
101
101
|
- config/docker/.inputrc
|
|
102
102
|
- doc/assets/project.svg
|
|
103
103
|
- docker-compose.yml
|
|
104
|
-
- gemfiles/rails_8.0.gemfile
|
|
105
104
|
- gemfiles/rails_8.1.gemfile
|
|
106
105
|
- jabber_admin.gemspec
|
|
107
106
|
- lib/jabber_admin.rb
|
|
@@ -144,14 +143,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
144
143
|
requirements:
|
|
145
144
|
- - ">="
|
|
146
145
|
- !ruby/object:Gem::Version
|
|
147
|
-
version: '
|
|
146
|
+
version: '4.0'
|
|
148
147
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
148
|
requirements:
|
|
150
149
|
- - ">="
|
|
151
150
|
- !ruby/object:Gem::Version
|
|
152
151
|
version: '0'
|
|
153
152
|
requirements: []
|
|
154
|
-
rubygems_version:
|
|
153
|
+
rubygems_version: 4.0.11
|
|
155
154
|
specification_version: 4
|
|
156
155
|
summary: Library for the ejabberd RESTful admin API
|
|
157
156
|
test_files: []
|
data/gemfiles/rails_8.0.gemfile
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "bundler", ">= 2.6", "< 5"
|
|
7
|
-
gem "countless", "~> 2.0"
|
|
8
|
-
gem "guard-rspec", "~> 4.7"
|
|
9
|
-
gem "irb", "~> 1.2"
|
|
10
|
-
gem "railties", ">= 8.0"
|
|
11
|
-
gem "rake", "~> 13.0"
|
|
12
|
-
gem "rspec", "~> 3.12"
|
|
13
|
-
gem "rubocop"
|
|
14
|
-
gem "rubocop-rails"
|
|
15
|
-
gem "rubocop-rspec"
|
|
16
|
-
gem "simplecov", ">= 0.22"
|
|
17
|
-
gem "vcr", "~> 6.0"
|
|
18
|
-
gem "webmock", "~> 3.18"
|
|
19
|
-
gem "yard", ">= 0.9.28"
|
|
20
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
21
|
-
gem "activesupport", "~> 8.0.0"
|
|
22
|
-
|
|
23
|
-
gemspec path: "../"
|