conversejs 4.9.0 → 4.10.1

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: ca084a970024ed4a9a3fd8aae1465e273df02ae97d319804d8a35b8dcb7f77c3
4
- data.tar.gz: 6af5ac2a4c0d08f9afeb8377761a47d36efebfeeaf175a8f693575c93ac48fe8
3
+ metadata.gz: 92afb904b1c9a43d50da74bccfb88b4e9dbe9f4032c3677f21faa54ef5d611c7
4
+ data.tar.gz: 0bb8d2a4cad72664a3fd0455a84af8f05fd05bd2360f58f17cac180fbee1f88a
5
5
  SHA512:
6
- metadata.gz: 6abb565f10b39dec91bcc593b1cda3c4f1cf644b146b8290cc9f3ebc63906a012366592110fd2d69842fda3fceac576f62fb7e845c0cbd2f3a1c9a04efc54f36
7
- data.tar.gz: ffcdd6398f1e389ee39a5923d6743253dc61766654dd728ca49b7e2cb7263f9682083236d4a29847ce4394f27a0c8645349b7669e409f62326d9d19642bac2ab
6
+ metadata.gz: 521977884d0c54924cf3236812a0a3a78e7dc84cefe26623c9015ef5f3ac6a23fbbdc19008a4784dab6739177ba147f4a50e9b8afd2d8cec5169bb6b0cabf4e1
7
+ data.tar.gz: 5eada8975715874a07fd3927c3fb2b7ceed83152a3a71dc33dc044deea89c3046788109967beb4157ce2dbe56e2d2e5466f44544af3e4d637648e1f55a17bd1e
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
+ ### 4.10.1 (14 July 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#28](https://github.com/hausgold/conversejs/pull/28))
8
+
9
+ ### 4.10.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#27](https://github.com/hausgold/conversejs/pull/27))
12
+
5
13
  ### 4.9.0 (4 May 2026)
6
14
 
7
15
  * Dropped Ruby 3.x and Rails <8.1 support ([#26](https://github.com/hausgold/conversejs/pull/26))
data/Makefile CHANGED
@@ -143,9 +143,11 @@ endif
143
143
  clean-images:
144
144
  # Clean build images
145
145
  ifeq ($(MAKE_ENV),docker)
146
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
147
- | $(AWK) '{ print $$3 }' \
148
- | $(XARGS) -rn1 $(DOCKER) rmi -f
146
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
147
+ | $(GREP) $(shell basename "`pwd`") \
148
+ | $(AWK) '{ print $$0 }' \
149
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
150
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
149
151
  endif
150
152
 
151
153
  distclean: clean clean-containers clean-images
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Conversejs
5
5
  # The version of the +conversejs+ gem
6
- VERSION = '4.9.0'
6
+ VERSION = '4.10.1'
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: conversejs
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.9.0
4
+ version: 4.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  requirements: []
118
- rubygems_version: 4.0.11
118
+ rubygems_version: 4.0.16
119
119
  specification_version: 4
120
120
  summary: Converse.js for your Rails application
121
121
  test_files: []