conversejs 4.9.0 → 4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca084a970024ed4a9a3fd8aae1465e273df02ae97d319804d8a35b8dcb7f77c3
4
- data.tar.gz: 6af5ac2a4c0d08f9afeb8377761a47d36efebfeeaf175a8f693575c93ac48fe8
3
+ metadata.gz: b228a5158ec68f304079a448188b554bb457383d81ca9ab15670bbfb5450c712
4
+ data.tar.gz: 73888db8065456d17f55d09c904cbe35d149a264cc77851f7c1ef765b0bcdfde
5
5
  SHA512:
6
- metadata.gz: 6abb565f10b39dec91bcc593b1cda3c4f1cf644b146b8290cc9f3ebc63906a012366592110fd2d69842fda3fceac576f62fb7e845c0cbd2f3a1c9a04efc54f36
7
- data.tar.gz: ffcdd6398f1e389ee39a5923d6743253dc61766654dd728ca49b7e2cb7263f9682083236d4a29847ce4394f27a0c8645349b7669e409f62326d9d19642bac2ab
6
+ metadata.gz: 334a4bba924afc38b874797accf162aac732c9649038166bee13ad252847bd5de9e06334843e2e421a8af304e2dff2800f804681866911618d860334424212b0
7
+ data.tar.gz: 3d9cb84b71c93ae81d5c69b4a509e1aadeed604b298684eada38e66a14508f4964613ccb7844273141255b831dcce9110c8a345ca5a60cc10281d715b4146f84
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.10.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#27](https://github.com/hausgold/conversejs/pull/27))
8
+
5
9
  ### 4.9.0 (4 May 2026)
6
10
 
7
11
  * 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.0'
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.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer