File tree Expand file tree Collapse file tree 5 files changed +16
-10
lines changed
spec/foobara/command_connectors_http Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1+ ## [ 0.0.7] - 2024-12-09
2+
3+ - Upgrade to newer foobara gem with detached entity concept
4+
15## [ 0.0.6] - 2024-12-01
26
37- Fix default serializers bug
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- foobara-http-command-connector (0.0.6 )
4+ foobara-http-command-connector (0.0.7 )
55 foobara
66
77GEM
5353 foobara-type-generator
5454 foobara-typescript-react-command-form-generator
5555 foobara-typescript-remote-command-generator
56- foobara (0.0.19 )
56+ foobara (0.0.31 )
5757 foobara-util
5858 foobara-autocrud-generator (0.0.1 )
5959 foobara
116116 foobara-typescript-remote-command-generator (0.0.6 )
117117 foobara
118118 foobara-files-generator
119- foobara-util (0.0.7 )
119+ foobara-util (0.0.8 )
120120 formatador (1.1.0 )
121121 guard (2.19.0 )
122122 formatador (>= 0.2.4 )
133133 guard-compat (~> 1.1 )
134134 rspec (>= 2.99.0 , < 4.0 )
135135 hashdiff (1.1.2 )
136- json (2.8.2 )
136+ json (2.9.0 )
137137 language_server-protocol (3.17.0.3 )
138138 listen (3.9.0 )
139139 rb-fsevent (~> 0.10 , >= 0.10.3 )
@@ -178,15 +178,15 @@ GEM
178178 rspec-mocks (3.13.2 )
179179 diff-lcs (>= 1.2.0 , < 2.0 )
180180 rspec-support (~> 3.13.0 )
181- rspec-support (3.13.1 )
182- rubocop (1.69.0 )
181+ rspec-support (3.13.2 )
182+ rubocop (1.69.1 )
183183 json (~> 2.3 )
184184 language_server-protocol (>= 3.17.0 )
185185 parallel (~> 1.10 )
186186 parser (>= 3.3.0.2 )
187187 rainbow (>= 2.2.2 , < 4.0 )
188- regexp_parser (>= 2.4 , < 3.0 )
189- rubocop-ast (>= 1.36.1 , < 2.0 )
188+ regexp_parser (>= 2.9.3 , < 3.0 )
189+ rubocop-ast (>= 1.36.2 , < 2.0 )
190190 ruby-progressbar (~> 1.7 )
191191 unicode-display_width (>= 2.4.0 , < 4.0 )
192192 rubocop-ast (1.36.2 )
Original file line number Diff line number Diff line change @@ -1241,6 +1241,7 @@ def transform(result)
12411241 associative_array
12421242 atomic_duck
12431243 attributes
1244+ detached_entity
12441245 duck
12451246 duckture
12461247 entity
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ def for(manifest)
2222 Presenter ::Root
2323 when Manifest ::Command
2424 Presenter ::Command
25- when Manifest ::Entity
25+ # TODO: do we need a dedicated presenter for this??
26+ when Manifest ::Entity , Manifest ::DetachedEntity
2627 Presenter ::Entity
2728 when Manifest ::Model
2829 Presenter ::Model
Original file line number Diff line number Diff line change 11module Foobara
22 module HttpCommandConnector
3- VERSION = "0.0.6 " . freeze
3+ VERSION = "0.0.7 " . freeze
44 end
55end
You can’t perform that action at this time.
0 commit comments