Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3ec7743
v8: add and use `log_traceback`
Centril Sep 8, 2025
5eae49d
V8: measure call-reducer timings & memory usage
Centril Sep 9, 2025
28dcb3a
wasm: refactor energy; v8: energy, timings, and timeout
Centril Sep 9, 2025
9da3c14
v8: expose in client-api & cli & standalone
Centril Sep 9, 2025
c75cb93
v8: document some functions
Centril Sep 9, 2025
e6d5650
v8: leave some todos
Centril Sep 10, 2025
17ec53c
wip
Centril Sep 10, 2025
c64d83f
extract InstanceEnv::console_timer_end
Centril Sep 11, 2025
1e5f400
wip
Centril Sep 12, 2025
7d529e9
wip
Centril Sep 12, 2025
6a05de2
v8: fix register_host_fun / adapt_fun
Centril Sep 12, 2025
b9fbbbd
wip
Centril Sep 23, 2025
d819ddd
fix rebase fallout
Centril Sep 24, 2025
55dc11b
cli/publish: use --js-path instead of --javascript
Centril Sep 26, 2025
fc2f709
v8 syscalls: ignore signatures; not rust code
Centril Sep 26, 2025
6d1c974
v8 -> 140.2, s/HandleScope/PinScope/g
Centril Sep 26, 2025
e3b6a7b
v8: use fast static strings for known strings
Centril Sep 26, 2025
2e2cc71
cargo fmt
Centril Oct 1, 2025
7101733
try to pin timezone_provider for v8
Centril Oct 1, 2025
8d9364c
Fix bindgen tests
coolreader18 Oct 1, 2025
da5cd01
Just pushing for Noa to look at
cloutiertyler Sep 9, 2025
af578d6
Run format
coolreader18 Sep 12, 2025
2cd6cbe
wip
coolreader18 Sep 12, 2025
7713ae4
Initial call_reducer
coolreader18 Sep 26, 2025
c075759
SpacetimeError
coolreader18 Sep 28, 2025
d5f07b5
unique indexes
coolreader18 Sep 30, 2025
75d9892
ranged indexes
coolreader18 Oct 1, 2025
ef93119
Add __describe_module__
coolreader18 Oct 1, 2025
90ff06c
Remove cruft
coolreader18 Oct 1, 2025
165bb60
Fix ModuleDef deserialization
coolreader18 Oct 1, 2025
ee350b8
Basic test module & final fixes
coolreader18 Oct 1, 2025
ec79ad5
Add console
coolreader18 Oct 1, 2025
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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ jobs:
- uses: dsherret/rust-toolchain-file@v1
- run: echo ::add-matcher::.github/workflows/rust_matcher.json

- name: Run bindgen tests
run: cargo test -p spacetimedb-codegen

# Make sure the `Cargo.lock` file reflects the latest available versions.
# This is what users would end up with on a fresh module, so we want to
# catch any compile errors arising from a different transitive closure
Expand All @@ -180,8 +183,6 @@ jobs:
- name: Build module-test
run: cargo run -p spacetimedb-cli -- build --project-path modules/module-test

- name: Run bindgen tests
run: cargo test -p spacetimedb-codegen

publish_checks:
name: Check that packages are publishable
Expand Down
Loading
Loading