Skip to content

Commit f1a22b7

Browse files
authored
Release v14.1.1 (#1207)
* One more field that isn't present
1 parent fcd3c0b commit f1a22b7

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33

44
A breaking change will get clearly marked in this log.
55

6+
7+
## Unreleased
8+
9+
10+
## [v14.1.1](https://github.com/stellar/js-stellar-sdk/compare/v14.1.0...v14.1.1)
11+
12+
### Fixed
13+
* Added missing `transactionIndex` and `operationIndex` to `getEvents` return schema ([#1206](https://github.com/stellar/js-stellar-sdk/pull/1206)).
14+
* Remove previously-deprecated and now-removed `pagingToken` from `getEvents` (use `id` instead or the top-level `cursor`, depending on pagination needs) ([#1207](https://github.com/stellar/js-stellar-sdk/pull/1207)).
15+
16+
617
## [v14.1.0](https://github.com/stellar/js-stellar-sdk/compare/v14.0.0...v14.1.0)
718

819
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-sdk",
3-
"version": "14.1.0",
3+
"version": "14.1.1",
44
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
55
"keywords": [
66
"stellar"

src/rpc/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,6 @@ export namespace Api {
235235
type: EventType;
236236
ledger: number;
237237
ledgerClosedAt: string;
238-
pagingToken: string;
239238
transactionIndex: number;
240239
operationIndex: number;
241240
inSuccessfulContractCall: boolean;

0 commit comments

Comments
 (0)