File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1+ ## [ 0.0.13] - 2025-01-30
2+
3+ - Make sure manifest is ran in detached context
4+
15## [ 0.0.12] - 2025-01-28
26
37- Fix potential issue with default serializer inheritance/overriding
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- foobara-http-command-connector (0.0.12 )
4+ foobara-http-command-connector (0.0.13 )
55 foobara
66
77GEM
5454 foobara-type-generator
5555 foobara-typescript-react-command-form-generator
5656 foobara-typescript-remote-command-generator
57- foobara (0.0.51 )
57+ foobara (0.0.53 )
5858 bigdecimal
5959 foobara-util
6060 foobara-autocrud-generator (0.0.1 )
@@ -260,4 +260,4 @@ RUBY VERSION
260260 ruby 3.4.1p0
261261
262262BUNDLED WITH
263- 2.6.2
263+ 2.6.3
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ class Describe < Foobara::CommandConnector::Commands::Describe
66 def stamp_request_metadata
77 manifest [ :metadata ] = super . merge ( url : request . url )
88 end
9+
10+ def build_manifest
11+ Thread . foobara_with_var ( "foobara_manifest_context" , detached : true ) do
12+ super
13+ end
14+ end
915 end
1016 end
1117 end
Original file line number Diff line number Diff line change 11module Foobara
22 module HttpCommandConnector
3- VERSION = "0.0.12 " . freeze
3+ VERSION = "0.0.13 " . freeze
44
55 local_ruby_version = File . read ( "#{ __dir__ } /.ruby-version" ) . chomp
66 local_ruby_version_minor = local_ruby_version [ /\A (\d +\. \d +)\. \d +\z / , 1 ]
You can’t perform that action at this time.
0 commit comments