alarmable 2.12.0 → 2.13.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 -4
- data/lib/alarmable/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: 2a91376f599b996c0afe3b48280f3ce822757c9715426a804e58af82294cb3e0
|
|
4
|
+
data.tar.gz: e9f1d11a9700fbc5dd186d72c9ac7344a0ff8177d14f89b163e630e141847bb7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aa27b1e19307f83ceef25121cf9be2a1f1c92b11b2eaa257dc7f085079b6265361859d82142df10e8634b5c1abda42cfd68c22aeec41b3f4c7782a7ca8b207b
|
|
7
|
+
data.tar.gz: 8b073cc26ee38de752716c39e1ad0bd61345d7376401a4f485153894f4d929695ad889fa7f0a6005e688a96bb382d2915c26b15562a2cf7a34ce7d3a98243dd6
|
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
|
+
### 2.13.0 (20 May 2026)
|
|
6
|
+
|
|
7
|
+
* Corrected some RuboCop glitches ([#41](https://github.com/hausgold/alarmable/pull/41))
|
|
8
|
+
|
|
5
9
|
### 2.12.0 (15 May 2026)
|
|
6
10
|
|
|
7
11
|
* Upgraded PostgreSQL to 18.4 ([#40](https://github.com/hausgold/alarmable/pull/40))
|
data/Makefile
CHANGED
|
@@ -139,11 +139,12 @@ endif
|
|
|
139
139
|
|
|
140
140
|
clean-images:
|
|
141
141
|
# Clean build images
|
|
142
|
-
|
|
143
142
|
ifeq ($(MAKE_ENV),docker)
|
|
144
|
-
|
|
145
|
-
| $(
|
|
146
|
-
| $(
|
|
143
|
+
@$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
|
|
144
|
+
| $(GREP) $(shell basename "`pwd`") \
|
|
145
|
+
| $(AWK) '{ print $$0 }' \
|
|
146
|
+
| $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
|
|
147
|
+
| $(GREP) -vP 'cannot be forced|invalid reference' || true
|
|
147
148
|
endif
|
|
148
149
|
|
|
149
150
|
distclean: clean clean-containers clean-images
|
data/lib/alarmable/version.rb
CHANGED