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
13 changes: 10 additions & 3 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:
SUPPORT_DOCKERFILE_PATH: crates/support/Dockerfile
CIPHERNODE_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/ciphernode
SUPPORT_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/e3-support
NOIR_TOOLCHAIN: v1.0.0-beta.16
MNEMONIC: 'test test test test test test test test test test test junk'
INFURA_API_KEY: 'zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz'
ETHERSCAN_API_KEY: 'zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz'
Expand Down Expand Up @@ -148,7 +149,6 @@ jobs:
with:
extra_nix_config: |
experimental-features = nix-command flakes
- uses: cachix/install-nix-action@v4
- uses: cachix/cachix-action@v15
with:
name: enclave
Expand Down Expand Up @@ -292,6 +292,14 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4

# `pnpm build:ts` builds the SDK, whose prebuild compiles the threshold
# circuits via `nargo` (packages/enclave-sdk/scripts/compile-circuits.sh).
# Without nargo on PATH the build fails with "nargo is not installed".
- name: Install Nargo
uses: noir-lang/noirup@v0.1.4
with:
toolchain: ${{ env.NOIR_TOOLCHAIN }}

- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down Expand Up @@ -396,8 +404,7 @@ jobs:
build-nix-flake,
]
if:
always() && needs.validate-and-prepare.result == 'success' && needs.build-binaries.result == 'success' && needs.build-nix-flake.result
== 'success'
always() && needs.validate-and-prepare.result == 'success' && needs.build-binaries.result == 'success'
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,56 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.1.15](https://github.com/gnosisguild/enclave/compare/v0.1.13...v0.1.15)

> 19 February 2026

- chore: upgrade checkout action [`#1348`](https://github.com/gnosisguild/enclave/pull/1348)
- feat: add parity matrix to config circuit [skip-line-limit]
[`#1342`](https://github.com/gnosisguild/enclave/pull/1342)
- fix: silent error path causes integration test to hang
[`#1346`](https://github.com/gnosisguild/enclave/pull/1346)
- chore: update contract addresses and operator guide
[`#1341`](https://github.com/gnosisguild/enclave/pull/1341)
- fix(crisp): account for remainder in multi-option segment boundaries
[`#1345`](https://github.com/gnosisguild/enclave/pull/1345)
- fix: update q_mod_t references to centered [skip-line-limit]
[`#1340`](https://github.com/gnosisguild/enclave/pull/1340)
- fix: prevent SyncEnded dedup that blocks live EVM events after restart
[`#1343`](https://github.com/gnosisguild/enclave/pull/1343)
- fix: libp2p usage patterns in e3-net crate
[`#1339`](https://github.com/gnosisguild/enclave/pull/1339)
- feat: add chunked historical log fetching with RPC block range
[`#1331`](https://github.com/gnosisguild/enclave/pull/1331)
- feat: integrate pk_generation proof in ciphernode [skip-line-limit]
[`#1311`](https://github.com/gnosisguild/enclave/pull/1311)
- feat: config verification circuit [skip-line-limit]
[`#1306`](https://github.com/gnosisguild/enclave/pull/1306)
- chore(release): bump version to 0.1.14 [`#1324`](https://github.com/gnosisguild/enclave/pull/1324)
- feat: allow custom bb implementation [`#1322`](https://github.com/gnosisguild/enclave/pull/1322)
- feat: event sync [skip-line-limit] [`#1239`](https://github.com/gnosisguild/enclave/pull/1239)
- chore: add oracleHash build option to circuit release
[`#1320`](https://github.com/gnosisguild/enclave/pull/1320)
- chore: update versions.json [`#1318`](https://github.com/gnosisguild/enclave/pull/1318)
- refactor: missing circuits in zk-prover [skip-line-limit]
[`#1317`](https://github.com/gnosisguild/enclave/pull/1317)
- refactor: improve c7 circuit computation [skip-line-limit]
[`#1315`](https://github.com/gnosisguild/enclave/pull/1315)
- chore(release): bump version to 0.1.13 [`#1316`](https://github.com/gnosisguild/enclave/pull/1316)
- chore(release): bump version to 0.1.15
[`207fdc5`](https://github.com/gnosisguild/enclave/commit/207fdc5369009ecb14efd40c28b82221d2781507)

#### [v0.1.13](https://github.com/gnosisguild/enclave/compare/v0.1.12...v0.1.13)

> 13 February 2026

- chore: update changelog tooling [skip-line-limit]
[`#1314`](https://github.com/gnosisguild/enclave/pull/1314)
- chore(release): bump version to 0.1.12 [skip-line-limit]
[`#1312`](https://github.com/gnosisguild/enclave/pull/1312)
- chore(release): bump version to 0.1.13
[`7bd838c`](https://github.com/gnosisguild/enclave/commit/7bd838c6f86cf0b6630e3a3abaa6a549cfee82d4)

#### [v0.1.12](https://github.com/gnosisguild/enclave/compare/v0.1.10...v0.1.12)

> 12 February 2026
Expand Down
Loading
Loading