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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d1ee217d559b13000ce764070f0e7983565ccefab7903bd213602ba9bfcc48b
4
- data.tar.gz: 6a7d3340c72b325b6ad2571b9b4314ff8a058110f94b6ac0cb348998d1fb292f
3
+ metadata.gz: 2a91376f599b996c0afe3b48280f3ce822757c9715426a804e58af82294cb3e0
4
+ data.tar.gz: e9f1d11a9700fbc5dd186d72c9ac7344a0ff8177d14f89b163e630e141847bb7
5
5
  SHA512:
6
- metadata.gz: 1f4a5ad2c1667d5dcd20d484332b1f923918d936f7e76f3578192437f4ff73bcfcd82f76fefa661424e1d875cd7f9bd0fe747e524ba48e593005bfd7c5fe825e
7
- data.tar.gz: 68e02f0e8ae91df2113dd7774aa9a6e6c0ac04288eddf639c204c32a94d478bb4d6b6cb228111114fa6cfe64470c2380bfa58360125177ae8119040a0ac6197c
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
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
145
- | $(AWK) '{ print $$3 }' \
146
- | $(XARGS) -rn1 $(DOCKER) rmi -f
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
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Alarmable
5
5
  # The version of the +alarmable+ gem
6
- VERSION = '2.12.0'
6
+ VERSION = '2.13.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: alarmable
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.12.0
4
+ version: 2.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer