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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Makefile +5 -3
- 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: b228a5158ec68f304079a448188b554bb457383d81ca9ab15670bbfb5450c712
|
|
4
|
+
data.tar.gz: 73888db8065456d17f55d09c904cbe35d149a264cc77851f7c1ef765b0bcdfde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
147
|
-
| $(
|
|
148
|
-
| $(
|
|
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
|
data/lib/conversejs/version.rb
CHANGED