Skip to content

Commit 0f63c66

Browse files
authored
Merge pull request #122 from obeli-sk/sync-flake-lock-20260529-131047
Sync `flake.lock` from upstream
2 parents c7922c7 + 8bf9219 commit 0f63c66

6 files changed

Lines changed: 25 additions & 15 deletions

File tree

dev-deps.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ cargo generate 0.23.9
44
cargo-insta 1.47.2
55
cargo-nextest 0.9.136
66
just 1.51.0
7-
obelisk 0.38.0-rc.2
7+
obelisk 0.38.0-rc.5
88
pkg-config 0.29.2
9-
rustc 1.95.0 (59807616e 2026-04-14)
9+
rustc 1.96.0 (ac68faa20 2026-05-25)
1010
wasm-tools 1.249.0
1111
ldd (GNU libc) 2.42

flake.lock

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

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.95.0"
2+
channel = "1.96.0"
33
targets = ["wasm32-unknown-unknown", "wasm32-wasip2"]
44
components = ["rustfmt", "clippy", "rust-src", "rust-analyzer", "cargo"]

scripts/check-wit-deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
set -exuo pipefail
44
cd "$(dirname "$0")/.."
55

6-
obelisk generate wit-deps --deployment obelisk-external.toml wit/deps --overwrite
6+
obelisk generate wit-deps --deployment obelisk-external.toml wit/deps --force

workflow/deployer-workflow/wit/deps/obelisk_workflow@5.0.0/obelisk_workflow@5.0.0.wit renamed to workflow/deployer-workflow/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/deployer-workflow/wit/impl.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ world any {
1717

1818
import obelisk-components:generic-http/http@0.1.0;
1919

20-
import obelisk:workflow/workflow-support@5.0.0;
20+
import obelisk:workflow/workflow-support@5.1.0;
2121
import obelisk:log/log@1.0.0;
2222
}

0 commit comments

Comments
 (0)