Skip to content

Commit eaa3516

Browse files
authored
Merge branch 'develop' into ci/add-gha-contrats
2 parents 410e7c1 + e67c49c commit eaa3516

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
@@ -1167,6 +1167,8 @@ trigger:
11671167
event:
11681168
- promote
11691169
target:
1170+
# publish the package @iexec/dataprotector on npm with the tag nightly
1171+
- sdk-publish-nightly
11701172
# publish the package @iexec/dataprotector on npm with the tag beta (require sdk version to be [version]-beta.[b])
11711173
- sdk-publish-beta
11721174
# publish the package @iexec/dataprotector on npm with the tag latest
@@ -1203,6 +1205,34 @@ steps:
12031205
- main
12041206
target:
12051207
- sdk-publish-beta
1208+
1209+
- name: set-version-nightly
1210+
image: node:18.19
1211+
commands:
1212+
- cd packages/sdk
1213+
- eval npm pkg set version="$(npm pkg get version)-nightly-$DRONE_COMMIT"
1214+
when:
1215+
target:
1216+
- sdk-publish-nightly
1217+
depends_on:
1218+
- install
1219+
1220+
- name: npm publish nightly
1221+
image: plugins/npm
1222+
settings:
1223+
username:
1224+
from_secret: npm_username
1225+
token:
1226+
from_secret: npm_token
1227+
tag: nightly
1228+
access: public
1229+
folder: packages/sdk
1230+
depends_on:
1231+
- build
1232+
- set-version-nightly
1233+
when:
1234+
target:
1235+
- sdk-publish-nightly
12061236

12071237
- name: npm-publish-beta
12081238
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)