Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
bb49112
Add Container Hosting Stage 1 runtime and publishing foundation
cloutiertyler Sep 8, 2026
2f8b79c
Merge declared environment and V10 prerequisites into container hosting
cloutiertyler Sep 9, 2026
b45c76c
Bind managed environment publications to committed operation cursors
cloutiertyler Sep 9, 2026
3223e92
Merge reviewed ENV and ABI updates into Stage1
cloutiertyler Sep 9, 2026
df781e1
Merge reviewed ENV and V10 ABI updates into container hosting
cloutiertyler Sep 9, 2026
d35d05c
Join native client SDK connection tasks on driver shutdown
cloutiertyler Sep 9, 2026
f1a4746
Define bounded container exec WebSocket messages
cloutiertyler Sep 9, 2026
34d7dc7
Add container exec CLI with retained terminal I/O
cloutiertyler Sep 9, 2026
cadac71
Support container exec on Windows with owned terminal I/O
cloutiertyler Sep 9, 2026
c9fc518
Merge C# formatting correction from V10 ABI prerequisite
cloutiertyler Sep 9, 2026
3611259
Merge generated ABI CLI documentation correction
cloutiertyler Sep 9, 2026
1ac388c
Fix ConPTY test child standard handle setup
cloutiertyler Sep 9, 2026
b0f3e1a
Merge canonical environment ancestry into Stage 1
cloutiertyler Sep 9, 2026
56d5545
Merge ABI regression fixture corrections into Stage 1
cloutiertyler Sep 9, 2026
e8835ac
Merge V10 procedure fixture corrections into container hosting
cloutiertyler Sep 9, 2026
d51106a
Add bounded container log pages and CLI reading
cloutiertyler Sep 9, 2026
2f30e48
Regenerate CLI reference for container logs
cloutiertyler Sep 9, 2026
52cd942
Expose container image limits and reported resource usage
cloutiertyler Sep 10, 2026
90ff41d
Merge reviewed ENV and ABI prerequisites into Stage1
cloutiertyler Sep 10, 2026
1185be0
Add container credential discovery and managed Rust SDK sessions
cloutiertyler Sep 10, 2026
0fe5d1c
Add managed Node container credential sessions
cloutiertyler Sep 10, 2026
69c7630
Protect publication preparation and fix Stage 1 CI failures
cloutiertyler Sep 10, 2026
a9b6241
Preserve subscription error contexts when container sessions close
cloutiertyler Sep 10, 2026
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
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,20 @@ jobs:
mkdir -p "${openssl_cache_dir}"
cp -R "${openssl_installs[0]}/." "${openssl_cache_dir}/"

- name: Test Windows container exec
if: runner.os == 'Windows'
shell: pwsh
run: ./tools/ci/windows-exec-tests.ps1

- name: Upload Windows container exec test results
if: always() && runner.os == 'Windows' && env.WINDOWS_EXEC_RESULTS != ''
uses: actions/upload-artifact@v4
with:
name: windows-container-exec-results
path: ${{ env.WINDOWS_EXEC_RESULTS }}
if-no-files-found: error
retention-days: 14

- name: Package build artifacts
shell: bash
run: |
Expand Down
37 changes: 37 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ members = [
"crates/fs-utils",
"crates/index-scan-gate",
"crates/lib",
"crates/oci",
"crates/metrics",
"crates/paths",
"crates/pg",
Expand All @@ -46,6 +47,7 @@ members = [
"modules/keynote-benchmarks",
"modules/perf-test",
"modules/module-test",
"modules/hosted-auth-test",
"modules/environment-test",
"modules/invocation-flags-test",
"templates/basic-rs/spacetimedb",
Expand Down
Loading
Loading