conversejs 4.3.0 → 4.4.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 +8 -10
- data/.github/workflows/test.yml +8 -10
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE +1 -1
- data/lib/conversejs/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00cb2bf0e0fc5cd6afd7647ab6bb24a6844c377c84693b964eaf418a698c06a9
|
|
4
|
+
data.tar.gz: 5bcbc35a8cb8800865b83fa8d5a833ecf9f0f5bdd053040f7093fb9605698a84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 245b0a730cd7f810094fb47c63f71b37f4923b0cf6c4431ed86d232fcd4478f2285be07a773a1d291a4d562548898530f97c932f97034de0022777fe96f1f6d1
|
|
7
|
+
data.tar.gz: b412250c380a1a0f484dd2452be7f3a804e057f7e82173d94a23abf048b1f858fe8f54cc90c5e25511de8b2de7c1be21ee20e4051a8062a2f45ea4db758a4fde
|
|
@@ -15,10 +15,16 @@ concurrency:
|
|
|
15
15
|
jobs:
|
|
16
16
|
docs:
|
|
17
17
|
name: Release the gem
|
|
18
|
-
runs-on: ubuntu-
|
|
18
|
+
runs-on: ubuntu-24.04
|
|
19
19
|
timeout-minutes: 10
|
|
20
20
|
steps:
|
|
21
|
-
-
|
|
21
|
+
- name: Prepare the environment
|
|
22
|
+
uses: hausgold/actions/ci@v2
|
|
23
|
+
with:
|
|
24
|
+
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
25
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
26
|
+
settings: '${{ github.repository }}'
|
|
27
|
+
target: ci/gem-test
|
|
22
28
|
|
|
23
29
|
- name: Install Ruby 3.3
|
|
24
30
|
uses: ruby/setup-ruby@v1
|
|
@@ -27,14 +33,6 @@ jobs:
|
|
|
27
33
|
bundler-cache: true
|
|
28
34
|
rubygems: '3.6.9'
|
|
29
35
|
|
|
30
|
-
- name: Prepare the virtual environment
|
|
31
|
-
uses: hausgold/actions/ci@master
|
|
32
|
-
with:
|
|
33
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
34
|
-
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
35
|
-
settings: '${{ github.repository }}'
|
|
36
|
-
target: ci/gem-test
|
|
37
|
-
|
|
38
36
|
- name: Switch to SSH remotes for the Git repository
|
|
39
37
|
run: git-ssh-remotes
|
|
40
38
|
|
data/.github/workflows/test.yml
CHANGED
|
@@ -13,7 +13,7 @@ concurrency:
|
|
|
13
13
|
jobs:
|
|
14
14
|
test:
|
|
15
15
|
name: 'Test the gem (Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails }})'
|
|
16
|
-
runs-on: ubuntu-
|
|
16
|
+
runs-on: ubuntu-24.04
|
|
17
17
|
timeout-minutes: 5
|
|
18
18
|
strategy:
|
|
19
19
|
fail-fast: false
|
|
@@ -23,7 +23,13 @@ jobs:
|
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
|
26
|
-
-
|
|
26
|
+
- name: Prepare the environment
|
|
27
|
+
uses: hausgold/actions/ci@v2
|
|
28
|
+
with:
|
|
29
|
+
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
30
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
31
|
+
settings: '${{ github.repository }}'
|
|
32
|
+
target: ci/gem-test
|
|
27
33
|
|
|
28
34
|
- name: Install the correct Ruby version
|
|
29
35
|
uses: ruby/setup-ruby@v1
|
|
@@ -32,14 +38,6 @@ jobs:
|
|
|
32
38
|
bundler-cache: true
|
|
33
39
|
rubygems: '3.6.9'
|
|
34
40
|
|
|
35
|
-
- name: Prepare the virtual environment
|
|
36
|
-
uses: hausgold/actions/ci@master
|
|
37
|
-
with:
|
|
38
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
39
|
-
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
40
|
-
settings: '${{ github.repository }}'
|
|
41
|
-
target: ci/gem-test
|
|
42
|
-
|
|
43
41
|
- name: Run the gem tests
|
|
44
42
|
run: make test
|
|
45
43
|
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 4.4.0 (7 January 2026)
|
|
6
|
+
|
|
7
|
+
* Upgraded to Ubuntu 24.04 on Github Actions ([#22](https://github.com/hausgold/conversejs/pull/22))
|
|
8
|
+
* Migrated to hausgold/actions@v2 ([#21](https://github.com/hausgold/conversejs/pull/21))
|
|
9
|
+
|
|
5
10
|
### 4.3.0 (26 December 2025)
|
|
6
11
|
|
|
7
12
|
* Added Ruby 4.0 support ([#20](https://github.com/hausgold/conversejs/pull/20))
|
data/LICENSE
CHANGED
data/lib/conversejs/version.rb
CHANGED