@stellar/stellar-base 10.0.2 → 11.0.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 +11 -0
- package/dist/stellar-base.js +3354 -3234
- package/dist/stellar-base.min.js +1 -1
- package/lib/account.js +1 -1
- package/lib/index.js +0 -4
- package/lib/memo.js +1 -1
- package/lib/operation.js +1 -1
- package/lib/operations/bump_sequence.js +1 -1
- package/lib/operations/change_trust.js +1 -1
- package/lib/transaction_builder.js +1 -1
- package/lib/util/bignumber.js +11 -0
- package/lib/util/continued_fraction.js +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## [`v11.0.0`](https://github.com/stellar/js-stellar-base/compare/v10.0.2...v11.0.0)
|
|
7
|
+
|
|
8
|
+
**Note:** This version is (still) compatible with Protocol 20. Most people should be unaffected by the technically-breaking changes below and can treat this more like a v10.0.3 patch release.
|
|
9
|
+
|
|
10
|
+
### Breaking Changes
|
|
11
|
+
* Starting from **v10.0.0-beta.0**, we set [`BigNumber.DEBUG`](https://mikemcl.github.io/bignumber.js/#debug) in `bignumber.js` to `true` internally, which affects all code using `BigNumber`. This behavior has been fixed and only affects this library: globally, `BigNumber.DEBUG` now remains at its default setting (i.e. disabled). This is technically a breaking behavior change and is released as such ([#729](https://github.com/stellar/js-stellar-base/pull/729)).
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
* Dependencies have been updated to their latest compatible versions ([#726](https://github.com/stellar/js-stellar-base/pull/729), [#730](https://github.com/stellar/js-stellar-base/pull/730)).
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [`v10.0.2`](https://github.com/stellar/js-stellar-base/compare/v10.0.1...v10.0.2)
|
|
7
18
|
|
|
8
19
|
### Fixed
|