hidden_hooks 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e80baab48dbc8bc16a9dd82cbe6ba965d1b5076d0658404e7641e3c1e7818797
4
- data.tar.gz: 13b66da95b3dad6192d4ccab88b9f19f2c0cbb980b6e721b24df06e1cbea32ca
3
+ metadata.gz: 8c3de95afe7b03bb8fc886bb721ef7af2db8d5c8284c7aa7c0d331e33f5b5751
4
+ data.tar.gz: 02f901e311228c2db78c00c1d6f7cdc6e4ef4b6c56ca048c85c7976a2721170b
5
5
  SHA512:
6
- metadata.gz: 8b234e254887127321a42ff8ee96da7ba0f6a80179ca1bd1871a24d753143295746b1f99afcf57a01a4aa8f9fe987c3aefc791b655351e7f0aa6f69bdcbd0cd1
7
- data.tar.gz: 26eb29ecc3824a2628fafc7d21b687e37e66da4a3d2c16c439fcc9351b5c3324cb4aaf2a78b116b756e1324c1411bd21d00ddd780f89add7c0df9cf3a2bbe151
6
+ metadata.gz: 5d5c2d1346b269bd2f49a45c5cb419ad3cedd239d8f5c2c46fc6f5b95c7ccfe18d5c52f700c63e0a133f4ff81498afbca6917b1449a2e315fcef9dc1024a338f
7
+ data.tar.gz: f5020d12589ece606c447d45bef122fde445d4136cce36e2120cd9ed23d835615c3cab2f47de1b50d1a9b1fbe2326f97cd08e47f3a47704a3be6f37ee7706fcb
data/CHANGELOG.md CHANGED
@@ -8,6 +8,13 @@
8
8
  ### Bug fixes
9
9
  )-->
10
10
 
11
+ ## 1.1.1 2025-01-28
12
+
13
+ ### Bug fixes
14
+
15
+ - Removed `around_*` callbacks.
16
+ - The problem with `around_*` callbacks is that the callback needs to yield to the passed block otherwise the callback chain stops, so if there aren't hooks for a certain callback no one's yielding and the chain always stops.
17
+
11
18
  ## 1.1.0 2025-01-28
12
19
 
13
20
  ### New features
@@ -20,10 +20,6 @@ module HiddenHooks
20
20
  :after_update,
21
21
  :after_update_commit,
22
22
  :after_validation,
23
- :around_create,
24
- :around_destroy,
25
- :around_save,
26
- :around_update,
27
23
  :before_commit,
28
24
  :before_create,
29
25
  :before_destroy,
@@ -1,3 +1,3 @@
1
1
  module HiddenHooks
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hidden_hooks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moku S.r.l.