Skip to content

Commit 0e578a9

Browse files
chore: Sync flake.lock from upstream
1 parent e22904d commit 0e578a9

7 files changed

Lines changed: 66 additions & 15 deletions

File tree

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webhook/webhook-go/wit/deps/obelisk_webhook@5.1.0/obelisk_webhook@5.1.0.wit renamed to webhook/webhook-go/wit/deps/obelisk_webhook@5.2.0/obelisk_webhook@5.2.0.wit

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:webhook@5.1.0;
1+
package obelisk:webhook@5.2.0;
22

33
@since(version = 5.0.0)
44
interface webhook-support {
@@ -65,10 +65,17 @@ interface webhook-support {
6565
@since(version = 5.0.0)
6666
execution-id-generate: func() -> execution-id;
6767

68-
/// Get the execution ID of the current webhook handler invocation.
69-
/// Returns the ID assigned to this webhook execution by the engine.
68+
/// Use `execution-id-get`
7069
@since(version = 5.1.0)
70+
@deprecated(version = 5.2.0)
7171
current-execution-id: func() -> execution-id;
72+
73+
/// Get the execution ID of the current webhook handler invocation.
74+
/// Returns the ID assigned to this webhook execution by the engine.
75+
@since(version = 5.2.0)
76+
execution-id-current: func() -> execution-id;
77+
78+
7279
/// Call a function and wait for the result.
7380
/// Creates a child execution, waits for it to complete, and returns the result.
7481
/// Parameters are serialized as a JSON array.

webhook/webhook-js/wit/deps/obelisk_webhook@5.1.0/obelisk_webhook@5.1.0.wit renamed to webhook/webhook-js/wit/deps/obelisk_webhook@5.2.0/obelisk_webhook@5.2.0.wit

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:webhook@5.1.0;
1+
package obelisk:webhook@5.2.0;
22

33
@since(version = 5.0.0)
44
interface webhook-support {
@@ -65,10 +65,17 @@ interface webhook-support {
6565
@since(version = 5.0.0)
6666
execution-id-generate: func() -> execution-id;
6767

68-
/// Get the execution ID of the current webhook handler invocation.
69-
/// Returns the ID assigned to this webhook execution by the engine.
68+
/// Use `execution-id-get`
7069
@since(version = 5.1.0)
70+
@deprecated(version = 5.2.0)
7171
current-execution-id: func() -> execution-id;
72+
73+
/// Get the execution ID of the current webhook handler invocation.
74+
/// Returns the ID assigned to this webhook execution by the engine.
75+
@since(version = 5.2.0)
76+
execution-id-current: func() -> execution-id;
77+
78+
7279
/// Call a function and wait for the result.
7380
/// Creates a child execution, waits for it to complete, and returns the result.
7481
/// Parameters are serialized as a JSON array.

webhook/webhook-rs/wit/deps/obelisk_webhook@5.1.0/obelisk_webhook@5.1.0.wit renamed to webhook/webhook-rs/wit/deps/obelisk_webhook@5.2.0/obelisk_webhook@5.2.0.wit

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:webhook@5.1.0;
1+
package obelisk:webhook@5.2.0;
22

33
@since(version = 5.0.0)
44
interface webhook-support {
@@ -65,10 +65,17 @@ interface webhook-support {
6565
@since(version = 5.0.0)
6666
execution-id-generate: func() -> execution-id;
6767

68-
/// Get the execution ID of the current webhook handler invocation.
69-
/// Returns the ID assigned to this webhook execution by the engine.
68+
/// Use `execution-id-get`
7069
@since(version = 5.1.0)
70+
@deprecated(version = 5.2.0)
7171
current-execution-id: func() -> execution-id;
72+
73+
/// Get the execution ID of the current webhook handler invocation.
74+
/// Returns the ID assigned to this webhook execution by the engine.
75+
@since(version = 5.2.0)
76+
execution-id-current: func() -> execution-id;
77+
78+
7279
/// Call a function and wait for the result.
7380
/// Creates a child execution, waits for it to complete, and returns the result.
7481
/// Parameters are serialized as a JSON array.

workflow/stargazers/workflow-js/wit/deps/obelisk_workflow@5.0.0/obelisk_workflow@5.0.0.wit renamed to workflow/stargazers/workflow-go/wit/deps/obelisk_workflow@5.1.0/obelisk_workflow@5.1.0.wit

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:workflow@5.0.0;
1+
package obelisk:workflow@5.1.0;
22

33
@since(version = 4.0.0)
44
interface workflow-support {
@@ -62,6 +62,11 @@ interface workflow-support {
6262
conflict,
6363
}
6464

65+
/// Get the execution ID of the current webhook handler invocation.
66+
/// Returns the ID assigned to this workflow execution.
67+
@since(version = 5.1.0)
68+
execution-id-current: func() -> execution-id;
69+
6570
/// Returns a random u64 in the range [min, max).
6671
@since(version = 3.0.0)
6772
random-u64: func(min: u64, max-exclusive: u64) -> u64;
@@ -163,8 +168,13 @@ interface workflow-support {
163168

164169
/// Like `sleep` but records the call site backtrace.
165170
@since(version = 5.0.0)
171+
@deprecated(version = 5.0.0)
166172
sleep-bt: func(schedule-at: schedule-at, backtrace: option<wasm-backtrace>) -> result<datetime>;
167173

174+
/// Like `sleep` but records the call site backtrace and optionally names the one-off join set.
175+
@since(version = 5.1.0)
176+
sleep-named-bt: func(schedule-at: schedule-at, name: option<string>, backtrace: option<wasm-backtrace>) -> result<datetime>;
177+
168178
/// Like `join-set-create` but records the call site backtrace.
169179
@since(version = 5.0.0)
170180
join-set-create-bt: func(backtrace: option<wasm-backtrace>) -> join-set;

workflow/stargazers/workflow-rs/wit/deps/obelisk_workflow@5.0.0/obelisk_workflow@5.0.0.wit renamed to workflow/stargazers/workflow-js/wit/deps/obelisk_workflow@5.1.0/obelisk_workflow@5.1.0.wit

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:workflow@5.0.0;
1+
package obelisk:workflow@5.1.0;
22

33
@since(version = 4.0.0)
44
interface workflow-support {
@@ -62,6 +62,11 @@ interface workflow-support {
6262
conflict,
6363
}
6464

65+
/// Get the execution ID of the current webhook handler invocation.
66+
/// Returns the ID assigned to this workflow execution.
67+
@since(version = 5.1.0)
68+
execution-id-current: func() -> execution-id;
69+
6570
/// Returns a random u64 in the range [min, max).
6671
@since(version = 3.0.0)
6772
random-u64: func(min: u64, max-exclusive: u64) -> u64;
@@ -163,8 +168,13 @@ interface workflow-support {
163168

164169
/// Like `sleep` but records the call site backtrace.
165170
@since(version = 5.0.0)
171+
@deprecated(version = 5.0.0)
166172
sleep-bt: func(schedule-at: schedule-at, backtrace: option<wasm-backtrace>) -> result<datetime>;
167173

174+
/// Like `sleep` but records the call site backtrace and optionally names the one-off join set.
175+
@since(version = 5.1.0)
176+
sleep-named-bt: func(schedule-at: schedule-at, name: option<string>, backtrace: option<wasm-backtrace>) -> result<datetime>;
177+
168178
/// Like `join-set-create` but records the call site backtrace.
169179
@since(version = 5.0.0)
170180
join-set-create-bt: func(backtrace: option<wasm-backtrace>) -> join-set;

workflow/stargazers/workflow-go/wit/deps/obelisk_workflow@5.0.0/obelisk_workflow@5.0.0.wit renamed to workflow/stargazers/workflow-rs/wit/deps/obelisk_workflow@5.1.0/obelisk_workflow@5.1.0.wit

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:workflow@5.0.0;
1+
package obelisk:workflow@5.1.0;
22

33
@since(version = 4.0.0)
44
interface workflow-support {
@@ -62,6 +62,11 @@ interface workflow-support {
6262
conflict,
6363
}
6464

65+
/// Get the execution ID of the current webhook handler invocation.
66+
/// Returns the ID assigned to this workflow execution.
67+
@since(version = 5.1.0)
68+
execution-id-current: func() -> execution-id;
69+
6570
/// Returns a random u64 in the range [min, max).
6671
@since(version = 3.0.0)
6772
random-u64: func(min: u64, max-exclusive: u64) -> u64;
@@ -163,8 +168,13 @@ interface workflow-support {
163168

164169
/// Like `sleep` but records the call site backtrace.
165170
@since(version = 5.0.0)
171+
@deprecated(version = 5.0.0)
166172
sleep-bt: func(schedule-at: schedule-at, backtrace: option<wasm-backtrace>) -> result<datetime>;
167173

174+
/// Like `sleep` but records the call site backtrace and optionally names the one-off join set.
175+
@since(version = 5.1.0)
176+
sleep-named-bt: func(schedule-at: schedule-at, name: option<string>, backtrace: option<wasm-backtrace>) -> result<datetime>;
177+
168178
/// Like `join-set-create` but records the call site backtrace.
169179
@since(version = 5.0.0)
170180
join-set-create-bt: func(backtrace: option<wasm-backtrace>) -> join-set;

0 commit comments

Comments
 (0)