Skip to content

Commit 3cc9d12

Browse files
committed
Upgrade to newer foobara gem with detached entities
1 parent 156e978 commit 3cc9d12

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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

Gemfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
foobara-http-command-connector (0.0.6)
4+
foobara-http-command-connector (0.0.7)
55
foobara
66

77
GEM
@@ -53,7 +53,7 @@ GEM
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
@@ -116,7 +116,7 @@ GEM
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)
@@ -133,7 +133,7 @@ GEM
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)

spec/foobara/command_connectors_http/http_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/http/commands/help/presenter.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Foobara
22
module HttpCommandConnector
3-
VERSION = "0.0.6".freeze
3+
VERSION = "0.0.7".freeze
44
end
55
end

0 commit comments

Comments
 (0)