lib/paper_trail/serializers/yaml.rb in paper_trail-11.1.0 vs lib/paper_trail/serializers/yaml.rb in paper_trail-12.0.0
- old
+ new
@@ -36,8 +36,16 @@
than you wanted. This feature was deprecated in 8.1.0 and removed in
9.0.0. The json and jsonb datatypes are still supported. See
discussion at https://github.com/paper-trail-gem/paper_trail/pull/997
STR
end
+
+ # Raises an exception as this operation is not allowed with YAML.
+ def where_object_changes_from_condition(*)
+ raise <<-STR.squish.freeze
+ where_object_changes_from does not support reading YAML from a text
+ column. The json and jsonb datatypes are supported.
+ STR
+ end
end
end
end