@stellar/stellar-sdk 11.2.0 → 11.2.2
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 +14 -0
- package/README.md +2 -0
- package/dist/stellar-sdk.js +1001 -846
- package/dist/stellar-sdk.min.js +1 -1
- package/lib/horizon/server_api.d.ts +0 -1
- package/package.json +16 -17
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ A breaking change will get clearly marked in this log.
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
## [v11.2.2](https://github.com/stellar/js-stellar-sdk/compare/v11.2.1...v11.2.2)
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
* Event streaming tests now pass on Node 20, which seems to have tighter conformance to the spec ([#917](https://github.com/stellar/js-stellar-sdk/pull/917)).
|
|
14
|
+
* `@stellar/stellar-base` has been upgraded to its latest major version ([#918](https://github.com/stellar/js-stellar-sdk/pull/918), see [v11.0.0](https://github.com/stellar/js-stellar-base/releases/tag/v11.0.0) for release notes).
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [v11.2.1](https://github.com/stellar/js-stellar-sdk/compare/v11.2.0...v11.2.1)
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
* An unnecessary dependency has been removed which was causing a TypeScript error in certain environments ([#912](https://github.com/stellar/js-stellar-sdk/pull/912)).
|
|
21
|
+
* Dependencies have been upgraded (see [`stellar-base@v10.0.2`](https://github.com/stellar/js-stellar-base/releases/tag/v10.0.2) for release notes, [#913](https://github.com/stellar/js-stellar-sdk/pull/913)).
|
|
22
|
+
|
|
23
|
+
|
|
10
24
|
## [v11.2.0](https://github.com/stellar/js-stellar-sdk/compare/v11.1.0...v11.2.0)
|
|
11
25
|
|
|
12
26
|
### Added
|
package/README.md
CHANGED
|
@@ -120,6 +120,8 @@ module.exports = {
|
|
|
120
120
|
|
|
121
121
|
There is also a [sample](https://github.com/fnando/rn-stellar-sdk-sample) that you can follow.
|
|
122
122
|
|
|
123
|
+
**Note**: Only the V8 compiler (on Android) and JSC (on iOS) have proper support for `Buffer` and `Uint8Array` as is needed by this library. Otherwise, you may see bizarre errors when doing XDR encoding/decoding such as `source not specified`.
|
|
124
|
+
|
|
123
125
|
#### Usage with Expo managed workflows
|
|
124
126
|
|
|
125
127
|
1. Install `yarn add --dev rn-nodeify`
|