jsonapi_compliable 0.11.12 → 0.11.13

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
  SHA1:
3
- metadata.gz: d33c0d838c08ea3a6103db126481104d984aa56f
4
- data.tar.gz: a0e5fe1ab207f0d443e4060c4e1670f7b1f23569
3
+ metadata.gz: e51276044c4062270de44eda40b761e68de042a6
4
+ data.tar.gz: eaf59452eafd80b98c3ab1364ad765e9e6d1aae8
5
5
  SHA512:
6
- metadata.gz: d2ffa161e3b63d1372c652046c10ccedc488d1c541cfa11a12ae0da5d0d00f55c907d5c4c6565529fa6aeb394604a68ccf194f9fef3d9baeb1a0dcacaf154762
7
- data.tar.gz: c055b652a012e653a719d33f44ce23f37e2c1a6a45a4323c4ad72176054f58ebfe853196fd2f8cfd046e0679dcf4777c73b4ceb586ee0057ed7c5da06d56f0dc
6
+ metadata.gz: 4cb12821a1359842eb6c96c617676c1c6f2ba130b7086b3db022f4378fa661bf354b9e5bc7d11f001954d7e5b1812d851cfad6756089c7c72ad77b2f13badb2d
7
+ data.tar.gz: 230c1750efd1c49d8ea71644bf52de3631bd819e1eb76c7473b27f8da147ab6009cfec2298626b7e810b89117e9398c2d52d2c8c8e243936248af7128127a0fd
@@ -58,7 +58,13 @@ module JsonapiCompliable
58
58
  parent.association(association_name).loaded!
59
59
  relevant_child = children.find { |c| c.send(foreign_key) == parent.send(primary_key) }
60
60
  next unless relevant_child
61
- parent.association(association_name).replace(relevant_child, false)
61
+
62
+ # Use private methods because of Rails bug
63
+ # https://github.com/rails/rails/issues/32886
64
+ association = parent.association(association_name)
65
+ association.send(:set_owner_attributes, relevant_child)
66
+ association.send(:set_inverse_instance, relevant_child)
67
+ association.send(:target=, relevant_child)
62
68
  end
63
69
  end
64
70
 
@@ -1,3 +1,3 @@
1
1
  module JsonapiCompliable
2
- VERSION = "0.11.12"
2
+ VERSION = "0.11.13"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonapi_compliable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.12
4
+ version: 0.11.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Richmond