Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:

- name: Verify configs
run: |
nix develop --command just verify --ignore-missing-env-vars --skip-db
nix develop --command just verify --allow-unavailable-runtime-config --skip-db
6 changes: 3 additions & 3 deletions dev-deps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ cargo-edit-upgrade 0.13.11
cargo-expand 1.0.123
cargo generate 0.23.9
cargo-insta 1.47.2
cargo-nextest 0.9.138
cargo-nextest 0.9.140
just 1.55.1
obelisk 0.39.5
obelisk 0.40.0
pkg-config 0.29.2
rustc 1.96.0 (ac68faa20 2026-05-25)
wasm-tools 1.252.0
wasm-tools 1.253.0
ldd (GNU libc) 2.42
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion obelisk-healthcheck-oci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# time.
[[webhook_endpoint_wasm]]
name = "webhook_healthcheck"
location = "oci://docker.io/getobelisk/components_flyio_webhook_healthcheck:2026-04-08@sha256:c5533b9650a5ef90638a718fd46c68e1dfd3349140ef111b1aab10233d881db6"
location = "oci://docker.io/getobelisk/components_flyio_webhook_healthcheck:2026-07-13@sha256:646cee6b52fcd54827da25d3473a1c354f15d34349e854d99818092c857e8fcd"
routes = ["/obeliskhealthcheck"]
2 changes: 1 addition & 1 deletion obelisk-oci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ methods = ["GET", "POST"]

[[workflow_wasm]]
name = "obelisk_deployer_flyio"
location = "oci://docker.io/getobelisk/components_flyio_obelisk_deployer_flyio:2026-04-08@sha256:6b815b79b255231609cb80a848646e78cf58ff9de3c7f7326c6a1b4759c61981"
location = "oci://docker.io/getobelisk/components_flyio_obelisk_deployer_flyio:2026-07-13@sha256:742628270f41ebb77ceb93d757593f6cb9480a272ee21b3eb49a1647b4da09e9"
1 change: 1 addition & 0 deletions scripts/check-wit-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
set -exuo pipefail
cd "$(dirname "$0")/.."

rm -rf wit/deps/obelisk_*
obelisk generate wit-deps --deployment obelisk-external.toml wit/deps --force
2 changes: 2 additions & 0 deletions scripts/push-components.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env bash

# Pushes all WASM components to the Docker Hub and updates obelisk-oci.toml
# Usage: push-components.sh <tag>
# Example: push-components.sh "$(date +%Y-%m-%d)"

set -exuo pipefail
cd "$(dirname "$0")/.."
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
// Generated by Obelisk 0.37.4
// Generated by Obelisk 0.40.0
package obelisk-client:api-http-obelisk-ext@1.0.0-beta;

interface executions {
use obelisk:types/execution@4.2.0.{execution-id};
use obelisk:types/execution@5.0.0.{execution-id};
use obelisk-client:api-http/executions@1.0.0-beta.{execution-with-state};
use obelisk:types/join-set@4.2.0.{join-set};
use obelisk:types/execution@4.2.0.{await-next-extension-error, get-extension-error};
use obelisk:types/join-set@5.0.0.{join-set};
use obelisk:types/execution@5.0.0.{await-next-extension-error, get-extension-error};

generate-submit: func(join-set: borrow<join-set>) -> execution-id;

generate-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<execution-id>>, await-next-extension-error>;
generate-await-next: func(join-set: borrow<join-set>) -> result<result<execution-id>, await-next-extension-error>;

generate-get: func(execution-id: execution-id) -> result<result<execution-id>, get-extension-error>;

list-submit: func(join-set: borrow<join-set>, endpoint-url: string) -> execution-id;

list-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<list<execution-with-state>, string>>, await-next-extension-error>;
list-await-next: func(join-set: borrow<join-set>) -> result<result<list<execution-with-state>, string>, await-next-extension-error>;

list-get: func(execution-id: execution-id) -> result<result<list<execution-with-state>, string>, get-extension-error>;

submit-submit: func(join-set: borrow<join-set>, endpoint-url: string, execution-id: execution-id, ffqn: string, params: string) -> execution-id;

submit-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<_, string>>, await-next-extension-error>;
submit-await-next: func(join-set: borrow<join-set>) -> result<result<_, string>, await-next-extension-error>;

submit-get: func(execution-id: execution-id) -> result<result<_, string>, get-extension-error>;
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Generated by Obelisk 0.37.4
// Generated by Obelisk 0.40.0
package obelisk-client:api-http-obelisk-schedule@1.0.0-beta;

interface executions {
use obelisk:types/execution@4.2.0.{execution-id};
use obelisk:types/execution@5.0.0.{execution-id};
use obelisk-client:api-http/executions@1.0.0-beta.{execution-with-state};
use obelisk:types/time@4.2.0.{schedule-at};
use obelisk:types/time@5.0.0.{schedule-at};

generate-schedule: func(schedule-at: schedule-at) -> execution-id;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Generated by Obelisk 0.37.4
// Generated by Obelisk 0.40.0
package obelisk-components:generic-http-obelisk-ext@0.1.0;

interface http {
use obelisk-components:generic-http/http@0.1.0.{method, headers, request-body, response-body, response, request-error};
use obelisk:types/execution@4.2.0.{execution-id};
use obelisk:types/join-set@4.2.0.{join-set};
use obelisk:types/execution@4.2.0.{await-next-extension-error, get-extension-error};
use obelisk:types/execution@5.0.0.{execution-id};
use obelisk:types/join-set@5.0.0.{join-set};
use obelisk:types/execution@5.0.0.{await-next-extension-error, get-extension-error};

request-submit: func(join-set: borrow<join-set>, method: method, url: string, headers: headers, body: option<request-body>) -> execution-id;

request-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<response, request-error>>, await-next-extension-error>;
request-await-next: func(join-set: borrow<join-set>) -> result<result<response, request-error>, await-next-extension-error>;

request-get: func(execution-id: execution-id) -> result<result<response, request-error>, get-extension-error>;
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Generated by Obelisk 0.37.4
// Generated by Obelisk 0.40.0
package obelisk-components:generic-http-obelisk-schedule@0.1.0;

interface http {
use obelisk-components:generic-http/http@0.1.0.{method, headers, request-body, response-body, response, request-error};
use obelisk:types/execution@4.2.0.{execution-id};
use obelisk:types/time@4.2.0.{schedule-at};
use obelisk:types/execution@5.0.0.{execution-id};
use obelisk:types/time@5.0.0.{schedule-at};

request-schedule: func(schedule-at: schedule-at, method: method, url: string, headers: headers, body: option<request-body>) -> execution-id;
}
Loading