conversejs 4.8.0 → 4.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/.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/Makefile +1 -1
- data/conversejs.gemspec +2 -2
- data/lib/conversejs/version.rb +1 -1
- metadata +5 -6
- data/gemfiles/rails_8.0.gemfile +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca084a970024ed4a9a3fd8aae1465e273df02ae97d319804d8a35b8dcb7f77c3
|
|
4
|
+
data.tar.gz: 6af5ac2a4c0d08f9afeb8377761a47d36efebfeeaf175a8f693575c93ac48fe8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6abb565f10b39dec91bcc593b1cda3c4f1cf644b146b8290cc9f3ebc63906a012366592110fd2d69842fda3fceac576f62fb7e845c0cbd2f3a1c9a04efc54f36
|
|
7
|
+
data.tar.gz: ffcdd6398f1e389ee39a5923d6743253dc61766654dd728ca49b7e2cb7263f9682083236d4a29847ce4394f27a0c8645349b7669e409f62326d9d19642bac2ab
|
|
@@ -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
|
+
### 4.9.0 (4 May 2026)
|
|
6
|
+
|
|
7
|
+
* Dropped Ruby 3.x and Rails <8.1 support ([#26](https://github.com/hausgold/conversejs/pull/26))
|
|
8
|
+
|
|
5
9
|
### 4.8.0 (18 February 2026)
|
|
6
10
|
|
|
7
11
|
* Added gemspec dependencies for all loaded gems ([#25](https://github.com/hausgold/conversejs/pull/25))
|
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/Makefile
CHANGED
|
@@ -124,7 +124,7 @@ test-style: \
|
|
|
124
124
|
test-style-ruby:
|
|
125
125
|
# Run the static code analyzer (rubocop)
|
|
126
126
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
127
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '
|
|
127
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '4.0' && true))
|
|
128
128
|
|
|
129
129
|
clean:
|
|
130
130
|
# Clean the dependencies
|
data/conversejs.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
36
|
spec.add_dependency 'logger', '~> 1.7'
|
|
37
|
-
spec.add_dependency 'railties', '>= 8.
|
|
37
|
+
spec.add_dependency 'railties', '>= 8.1'
|
|
38
38
|
spec.add_dependency 'zeitwerk', '~> 2.6'
|
|
39
39
|
end
|
data/lib/conversejs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conversejs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '8.
|
|
33
|
+
version: '8.1'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '8.
|
|
40
|
+
version: '8.1'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: zeitwerk
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,7 +86,6 @@ files:
|
|
|
86
86
|
- conversejs.gemspec
|
|
87
87
|
- doc/assets/project.svg
|
|
88
88
|
- docker-compose.yml
|
|
89
|
-
- gemfiles/rails_8.0.gemfile
|
|
90
89
|
- gemfiles/rails_8.1.gemfile
|
|
91
90
|
- lib/conversejs.rb
|
|
92
91
|
- lib/conversejs/engine.rb
|
|
@@ -109,14 +108,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
109
108
|
requirements:
|
|
110
109
|
- - ">="
|
|
111
110
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: '
|
|
111
|
+
version: '4.0'
|
|
113
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
113
|
requirements:
|
|
115
114
|
- - ">="
|
|
116
115
|
- !ruby/object:Gem::Version
|
|
117
116
|
version: '0'
|
|
118
117
|
requirements: []
|
|
119
|
-
rubygems_version:
|
|
118
|
+
rubygems_version: 4.0.11
|
|
120
119
|
specification_version: 4
|
|
121
120
|
summary: Converse.js for your Rails application
|
|
122
121
|
test_files: []
|
data/gemfiles/rails_8.0.gemfile
DELETED
|
@@ -1,22 +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 "rails", ">= 8.0"
|
|
10
|
-
gem "rake", "~> 13.0"
|
|
11
|
-
gem "rspec", "~> 3.12"
|
|
12
|
-
gem "rspec-rails", "~> 5.1"
|
|
13
|
-
gem "rubocop"
|
|
14
|
-
gem "rubocop-rails"
|
|
15
|
-
gem "rubocop-rspec"
|
|
16
|
-
gem "simplecov", ">= 0.22"
|
|
17
|
-
gem "sprockets-rails", "~> 3.5"
|
|
18
|
-
gem "yard", ">= 0.9.28"
|
|
19
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
20
|
-
gem "railties", "~> 8.0.0"
|
|
21
|
-
|
|
22
|
-
gemspec path: "../"
|