foobara-active-record-type 0.0.11 → 0.0.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b3995dc82e49f192bd1e731ca761c4fde9e8e37562fb91af8efcd538e2d65af
|
4
|
+
data.tar.gz: d6b2af274086cfe92524adb7db48eedd6ea3dc3f156e92e63e9013e42597e579
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b0cb154b51b8d24cb0c1dd0ca0c555c61590c11631c682f292346e7d3b1a8503f7c6e395614dbd3a5faf50aed149202e804fc76f5ba458b90b9152421760a9c
|
7
|
+
data.tar.gz: 88721bfb2104fc9ef94d4dd1aa2a183cf98574af6b22ad4ce69bfc4ec19f145d467856750b747d2878394a868c8ef7627ba37c9cc7929ada814877f4ec641c47
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
|
-
## [0.0.
|
1
|
+
## [0.0.13] - 2025-01-31
|
2
|
+
|
3
|
+
- Make sure our type is a DetachedEntityType not a Type
|
4
|
+
|
5
|
+
## [0.0.12] - 2025-01-30
|
2
6
|
|
3
7
|
- Add some missing methods to ActiveRecord::Base
|
4
8
|
- Fix bug where primary key is a string instead of a symbol
|
9
|
+
- Add support for converting to a detached entity in detached manifest contexts
|
5
10
|
|
6
11
|
## [0.0.10] - 2025-01-29
|
7
12
|
|
@@ -32,6 +32,9 @@ module Foobara
|
|
32
32
|
Foobara::CommandConnectors::Serializers::JsonSerializer
|
33
33
|
]
|
34
34
|
end
|
35
|
+
|
36
|
+
DetachedEntityType.types_requiring_conversion << :active_record
|
37
|
+
DetachedEntityType.model_base_classes_requiring_conversion << "ActiveRecord::Base"
|
35
38
|
end
|
36
39
|
|
37
40
|
def reset_all
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foobara-active-record-type
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-01-
|
10
|
+
date: 2025-01-31 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: activerecord
|