v0.1.9
Fixed
Sanitizerno longer collapses ActiveJob record references ({"_aj_globalid" => "gid://app/Model/id"}) to"[Object]"at the depth-3 cap. These one-key wrapper hashes pass through verbatim so the server can display which record a job ran on (e.g. ActionMailer'sRecord 1field now readsUser #42instead of[Object]).
The carve-out is narrow: only the exact {"_aj_globalid" => "gid://..."} shape is exempt. Multi-key hashes, non-GID values, and any other nested structure still hit the existing graph-protection rules (depth cap, array truncation, non-primitive collapse) unchanged. No wire-format change.