Skip to content
Open
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 external/oasis-core
Submodule oasis-core updated 82 files
+4 −1 .buildkite/code.pipeline.yml
+1 −1 .buildkite/rust/build_runtime.sh
+4 −0 .changelog/6208.internal.md
+5 −0 .changelog/6427.feature.md
+1 −0 .changelog/6444.bugfix.md
+4 −0 .changelog/6445.bugfix.md
+5 −0 .changelog/6446.bugfix.md
+5 −0 .changelog/6447.internal.md
+1 −0 .changelog/6448.internal.md
+0 −0 .changelog/6449.trivial.md
+0 −0 .changelog/6450.trivial.md
+1 −0 .changelog/6453.feature.md
+1 −0 .changelog/6455.internal.md
+1 −0 .changelog/6456.internal.0.md
+1 −0 .changelog/6456.internal.1.md
+1 −0 .changelog/6460.internal.md
+0 −0 .changelog/6460.trivial.md
+0 −0 .changelog/6462.trivial.md
+0 −0 .changelog/6463.trivial.md
+1 −0 .changelog/6464.internal.md
+1 −0 .changelog/6465.internal.md
+1 −0 .changelog/6468.bugfix.md
+1 −0 .changelog/6469.bugfix.md
+4 −3 .github/workflows/ci-lint.yml
+2 −2 .github/workflows/ci-reproducibility.yml
+3 −3 .github/workflows/release-dev.yml
+3 −3 .github/workflows/release.yml
+828 −646 Cargo.lock
+3 −2 Makefile
+5 −5 docker/aesmd/Dockerfile
+13 −8 docker/oasis-core-dev/Dockerfile
+6 −6 docs/development-setup/prerequisites.md
+32 −0 docs/oasis-node/cli.md
+1 −0 go/.nancy-ignore
+2 −2 go/common/crypto/mrae/api/api.go
+1 −1 go/common/grpc/errors_test.go
+6 −4 go/common/node/sgx.go
+10 −0 go/common/node/sgx_test.go
+2 −2 go/common/sgx/pcs/tcb.go
+95 −0 go/common/sgx/pcs/tcb_test.go
+9 −6 go/common/version/version.go
+5 −0 go/common/version/version_test.go
+0 −12 go/consensus/api/api.go
+0 −37 go/consensus/api/grpc.go
+9 −2 go/consensus/cometbft/apps/scheduler/shuffle.go
+1 −1 go/consensus/cometbft/config/config.go
+0 −5 go/consensus/cometbft/full/archive.go
+0 −13 go/consensus/cometbft/full/common.go
+0 −6 go/consensus/cometbft/stateless/core.go
+0 −19 go/consensus/cometbft/stateless/provider.go
+0 −5 go/consensus/cometbft/stateless/provider_test.go
+0 −10 go/consensus/tests/tester.go
+2 −3 go/extra/extract-metrics/main.go
+7 −6 go/go.mod
+12 −10 go/go.sum
+1 −1 go/oasis-net-runner/fixtures/file.go
+95 −0 go/oasis-node/cmd/storage/dbs.go
+198 −0 go/oasis-node/cmd/storage/inspect.go
+12 −57 go/oasis-node/cmd/storage/storage.go
+0 −6 go/oasis-test-runner/scenario/e2e/runtime/archive_api.go
+3 −3 go/oasis-test-runner/scenario/e2e/runtime/runtime_upgrade.go
+11 −1 go/registry/api/api.go
+58 −4 go/registry/api/api_test.go
+1 −1 go/runtime/bundle/manager.go
+6 −1 go/runtime/config/config.go
+2 −2 go/runtime/log/log.go
+6 −6 go/staking/api/api.go
+37 −0 go/staking/api/prettyprint.go
+125 −0 go/staking/api/prettyprint_test.go
+1 −0 go/upgrade/migrations/consensus_242.go
+3 −0 go/worker/storage/committee/prune.go
+23 −14 go/worker/storage/committee/worker.go
+4 −1 go/worker/storage/worker.go
+1 −1 runtime-loader/src/sgxs.rs
+1 −1 runtime/Cargo.toml
+113 −1 runtime/src/common/sgx/pcs/tcb.rs
+6 −8 runtime/src/common/sgx/pcs/utils.rs
+1 −1 runtime/src/init.rs
+3 −3 runtime/src/storage/mkvs/tree/mod.rs
+1 −1 rust-toolchain.toml
+1 −1 tests/runtimes/simple-rofl/Cargo.toml
+1 −1 tests/upgrade/post/go.mod