Skip to content

Commit f8861b9

Browse files
Merge branch 'main' into release-please--branches--main--components--iapp
2 parents dd93295 + 024a6c1 commit f8861b9

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"api":"0.3.0","cli":"1.0.0-beta.5"}
1+
{"api":"0.3.2","cli":"1.0.0-beta.5"}

api/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.3.2](https://github.com/iExecBlockchainComputing/iapp/compare/iapp-api-v0.3.1...iapp-api-v0.3.2) (2025-08-21)
4+
5+
6+
### Changed
7+
8+
* stop running `ensure-signing-key` in start script ([9631373](https://github.com/iExecBlockchainComputing/iapp/commit/9631373a2c3232885727b3478abf66d0f1db459a))
9+
10+
## [0.3.1](https://github.com/iExecBlockchainComputing/iapp/compare/iapp-api-v0.3.0...iapp-api-v0.3.1) (2025-08-21)
11+
12+
13+
### Changed
14+
15+
* fix enclave key volume binding from host ([2736bfc](https://github.com/iExecBlockchainComputing/iapp/commit/2736bfca822cce4d295b52eb17cb3752cc1cb9d9))
16+
317
## [0.3.0](https://github.com/iExecBlockchainComputing/iapp/compare/iapp-api-v0.2.0...iapp-api-v0.3.0) (2025-08-20)
418

519

api/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,7 @@ npm run dev:pretty
7373
- websocket API request `SCONIFY` is deprecated, websocket API request
7474
`SCONIFY_BUILD` should be used instead.
7575
- template `Python` is deprecated, template `Python3.13` should be used instead.
76-
- sconeVersion `v5` is deprecated, sconeVersion `v5.9` should be used instead.
76+
- sconeVersion `v5` or `undefined` is deprecated, sconeVersion `v5.9` should be
77+
used instead.
78+
- sconeProd `false` or `undefined` is deprecated, sconeProd `true` should be
79+
used instead.

api/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "iapp-api",
3-
"version": "0.3.0",
3+
"version": "0.3.2",
44
"main": "index.js",
55
"type": "module",
66
"scripts": {
77
"ensure-signing-key": "[ -e 'sig/enclave-key.pem' ] && echo 'using existing signing key' || (mkdir -p sig && openssl genrsa -3 -out sig/enclave-key.pem 3072 && echo 'generated new signing key')",
8-
"start": "npm run ensure-signing-key && tsx --env-file=.env ./src/index.js",
9-
"dev": "npm run ensure-signing-key && tsx --env-file=.env --watch ./src/index.js",
10-
"dev:pretty": "npm run ensure-signing-key && tsx --env-file=.env --watch ./src/index.js | pino-pretty -tc",
8+
"start": "tsx --env-file=.env ./src/index.js",
9+
"dev": "tsx --env-file=.env --watch ./src/index.js",
10+
"dev:pretty": "tsx --env-file=.env --watch ./src/index.js | pino-pretty -tc",
1111
"check-format": "prettier --check .",
1212
"check-types": "tsc --project tsconfig.json",
1313
"format": "prettier --write .",

0 commit comments

Comments
 (0)