Skip to content

Commit 7eec44a

Browse files
Merge branch 'develop' into ci/deapp
2 parents 149cfab + e67c49c commit 7eec44a

File tree

16 files changed

+1047
-716
lines changed

16 files changed

+1047
-716
lines changed

.drone.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,8 @@ trigger:
12151215
event:
12161216
- promote
12171217
target:
1218+
# publish the package @iexec/dataprotector on npm with the tag nightly
1219+
- sdk-publish-nightly
12181220
# publish the package @iexec/dataprotector on npm with the tag beta (require sdk version to be [version]-beta.[b])
12191221
- sdk-publish-beta
12201222
# publish the package @iexec/dataprotector on npm with the tag latest
@@ -1251,6 +1253,34 @@ steps:
12511253
- main
12521254
target:
12531255
- sdk-publish-beta
1256+
1257+
- name: set-version-nightly
1258+
image: node:18.19
1259+
commands:
1260+
- cd packages/sdk
1261+
- eval npm pkg set version="$(npm pkg get version)-nightly-$DRONE_COMMIT"
1262+
when:
1263+
target:
1264+
- sdk-publish-nightly
1265+
depends_on:
1266+
- install
1267+
1268+
- name: npm publish nightly
1269+
image: plugins/npm
1270+
settings:
1271+
username:
1272+
from_secret: npm_username
1273+
token:
1274+
from_secret: npm_token
1275+
tag: nightly
1276+
access: public
1277+
folder: packages/sdk
1278+
depends_on:
1279+
- build
1280+
- set-version-nightly
1281+
when:
1282+
target:
1283+
- sdk-publish-nightly
12541284

12551285
- name: npm-publish-beta
12561286
image: plugins/npm

packages/sdk/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.0.0-beta.15] (2025-04-04)
6+
7+
### Changed
8+
9+
- Rename `voucherAddress` to `voucherOwner`
10+
- Fix internal bug
11+
12+
## [2.0.0-beta.14] (2025-04-01)
13+
14+
### Added
15+
16+
- support for iExec voucher in `processProtectedData()` via `useVoucher` option
17+
- added `voucherAddress` option for using a non-owned voucher contract in `processProtectedData()`
18+
19+
## [2.0.0-beta.13] (2025-03-13)
20+
21+
### Changed
22+
23+
- Upgraded the iexec dependency to ^8.13.1, which includes:
24+
- Migrated default SMS URL to <https://sms.iex.ec>.
25+
- Migrated from the deprecated SMS apps secrets endpoint.
26+
527
## [2.0.0-beta.12] (2025-02-04)
628

729
### Added

0 commit comments

Comments
 (0)