julewire-rails 1.1.2 → 1.1.3

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: 780f4322501ba5ce3cc11eae2fd73f1b0da32255cae4a3ac03d2e41d1998211d
4
- data.tar.gz: 577636dbcc5d7ca8ea13ce95376678f2f0830f1d973cf1c69608f31cb7b91fd6
3
+ metadata.gz: 136f5154b76577b53e585c7eed30f1b98ad62241658418014b700df7a107cc94
4
+ data.tar.gz: f277e038bf9aa4b8133df286c9aa9e847dd290f58f89939a4b43a4229d385792
5
5
  SHA512:
6
- metadata.gz: 12cd5b54aa1262e495f0123c97215aea80cd764e9d2f588c80dda08eebb00f08c8d277ee28badfb26ce2c4d4572ba79f1907a95e0067e424cb65ebd510f1ea8d
7
- data.tar.gz: fdb81cd188deaf756f3cf780a8e86941f4e954c437fe43a96d0159c4ce8cb9120ca09b1e72e8bf8f38fd134089b89fbea4f6b802a76c100537adb881f03ec516
6
+ metadata.gz: f42e0904ef38c53f6e8d2048c2ff7f48c6c89fa48cc9defe2e9541fd5b6cc9c0437cb74264f29b224f87b76f94525661d025d763287251e98df4b194658ec0c1
7
+ data.tar.gz: 1675f80e9fda195311f4ddfcb8838ecc00ef66c905a24f0b2f4955d763abeac25354c539cbda7e3e7d1f0bd8a271136944b4aca73cf8733711f880c5db600e74
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Unreleased
2
2
 
3
+ ## 1.1.3 - 2026-08-09
4
+
5
+ - Refresh development tooling and compatibility locksets.
6
+
3
7
  ## 1.1.2 - 2026-08-02
4
8
 
5
9
  - Refresh development and compatibility dependency locksets.
data/docs/lifecycle.md CHANGED
@@ -11,6 +11,20 @@ It also registers a Rails `ActiveSupport::ForkTracker` after-fork hook that:
11
11
 
12
12
  This covers Rails process forks that go through Rails' fork tracker.
13
13
 
14
+ Rails' tracker exposes only the after-fork side. A preloading process manager
15
+ that uses `julewire-ractor` must also quiesce Ractors before it forks. For Puma:
16
+
17
+ ```ruby
18
+ before_fork { Julewire.before_fork! }
19
+ ```
20
+
21
+ Rails' fork tracker calls `Julewire.after_fork!` automatically in each child;
22
+ do not repeat it from Puma's `on_worker_boot` hook.
23
+
24
+ Stop application work before `before_fork`; do not create Ractors or emit from
25
+ other threads until the fork finishes. If the Puma master continues logging
26
+ between worker forks, call `Julewire.after_fork!` in its parent post-fork hook.
27
+
14
28
  Custom destinations still own queue, retry, delivery, and reopen behavior. The
15
29
  Rails hook only gives them lifecycle opportunities.
16
30
 
@@ -4,7 +4,7 @@ module Julewire
4
4
  module Rails
5
5
  module ExceptionSeverity
6
6
  HEADER = "action_dispatch.debug_exception_log_level"
7
- SEVERITY = ::Julewire::Core::Records::Severity
7
+ SEVERITY = Julewire::Core::Records::Severity
8
8
  private_constant :HEADER, :SEVERITY
9
9
 
10
10
  class << self
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Julewire
4
4
  module Rails
5
- VERSION = "1.1.2"
5
+ VERSION = "1.1.3"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: julewire-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Grebennik