@cardano-sdk/e2e 0.12.1 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/docker-compose.yml +2 -2
- package/package.json +20 -33
- package/test/blockfrost/StakePoolCompare.test.ts +6 -12
- package/test/local-network/register-pool.test.ts +2 -2
- package/test/providers/StakePoolProvider.test.ts +2 -2
- package/test/wallet/PersonalWallet/delegationDistribution.test.ts +242 -0
- package/test/wallet/PersonalWallet/multiAddress.test.ts +12 -16
- package/test/web-extension/extension/manifest.json +1 -1
- package/test/web-extension/webpack.config.base.js +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.13.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.12.1...@cardano-sdk/e2e@0.13.0) (2023-06-05)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* **wallet:** Added new properties to DelegationTrackerProps
|
|
11
|
+
* make stake pool metrics an optional property to handle activating pools
|
|
12
|
+
* - rename `rewardsHistoryLimit` stake pool search arg to `apyEpochsBackLimit`
|
|
13
|
+
* - remove `epochRewards` and type `StakePoolEpochRewards`
|
|
14
|
+
- remove `transactions` and type `StakePoolTransactions`
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **wallet:** delegation.portfolio$ tracker ([7488d14](https://github.com/input-output-hk/cardano-js-sdk/commit/7488d14008f7aa3d91d7513cfffaeb81e160eb18))
|
|
19
|
+
|
|
20
|
+
### Code Refactoring
|
|
21
|
+
|
|
22
|
+
* make stake pool metrics an optional property to handle activating pools ([d33bd07](https://github.com/input-output-hk/cardano-js-sdk/commit/d33bd07ddb873ba40498a95caa860820f38ee687))
|
|
23
|
+
* remove unusable fields from StakePool core type ([a7aa17f](https://github.com/input-output-hk/cardano-js-sdk/commit/a7aa17fdd5224437555840d21f56c4660142c351))
|
|
24
|
+
* rename rewardsHistoryLimit ([05ccdc6](https://github.com/input-output-hk/cardano-js-sdk/commit/05ccdc6b448f98ddd09894b633521e79fbb6d9c1))
|
|
25
|
+
|
|
6
26
|
## [0.12.1](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.12.0...@cardano-sdk/e2e@0.12.1) (2023-06-01)
|
|
7
27
|
|
|
8
28
|
### Features
|