Skip to content

Commit 77d7de6

Browse files
authored
Prepare v11.2.0 for release (#908)
* Upgrade all dependencies besides chai * Add changelog entries
1 parent 547b360 commit 77d7de6

File tree

4 files changed

+253
-406
lines changed

4 files changed

+253
-406
lines changed

.github/workflows/npm_publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
run: |
3636
V=$(cat package.json | jq '.version' | sed -e 's/\"//g')
3737
echo "Deprecating stellar-sdk@$V"
38-
npm deprecate stellar-sdk@"<= $V"⚠️ This package has moved to @stellar/stellar-sdk! 🚚"
38+
npm deprecate stellar-sdk@"<= $V" "⚠️ This package has moved to @stellar/stellar-sdk! 🚚"
3939
env:
4040
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1+
12
# Changelog
23

34
A breaking change will get clearly marked in this log.
45

56

67
## Unreleased
78

9+
10+
## [v11.2.0](https://github.com/stellar/js-stellar-sdk/compare/v11.1.0...v11.2.0)
11+
812
### Added
9-
* Support for the new, optional `diagnosticEventsXdr` field on the `SorobanRpc.Server.sendTransaction` method. The raw field will be present when using the `_sendTransaction` method, while the normal method will have an already-parsed `diagnosticEvents: xdr.DiagnosticEvent[]` field, instead ([]()).
13+
* Support for the new, optional `diagnosticEventsXdr` field on the `SorobanRpc.Server.sendTransaction` method. The raw field will be present when using the `_sendTransaction` method, while the normal method will have an already-parsed `diagnosticEvents: xdr.DiagnosticEvent[]` field, instead ([#905](https://github.com/stellar/js-stellar-sdk/pull/905)).
1014
* A new exported interface `SorobanRpc.Api.EventResponse` so that developers can type-check individual events ([#904](https://github.com/stellar/js-stellar-sdk/pull/904)).
1115

16+
### Updated
17+
* Dependencies have been updated to their latest versions ([#906](https://github.com/stellar/js-stellar-sdk/pull/906), [#908](https://github.com/stellar/js-stellar-sdk/pull/908)).
18+
1219

1320
## [v11.1.0](https://github.com/stellar/js-stellar-sdk/compare/v11.0.1...v11.1.0)
1421

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-sdk",
3-
"version": "11.1.0",
3+
"version": "11.2.0",
44
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
55
"keywords": [
66
"stellar"
@@ -77,13 +77,13 @@
7777
},
7878
"devDependencies": {
7979
"@babel/cli": "^7.23.0",
80-
"@babel/core": "^7.23.6",
80+
"@babel/core": "^7.23.7",
8181
"@babel/eslint-parser": "^7.22.15",
8282
"@babel/eslint-plugin": "^7.22.10",
83-
"@babel/preset-env": "^7.23.6",
83+
"@babel/preset-env": "^7.23.8",
8484
"@babel/preset-typescript": "^7.23.0",
85-
"@babel/register": "^7.22.15",
86-
"@definitelytyped/dtslint": "^0.1.1",
85+
"@babel/register": "^7.23.7",
86+
"@definitelytyped/dtslint": "^0.1.2",
8787
"@istanbuljs/nyc-config-babel": "3.0.0",
8888
"@stellar/tsconfig": "^1.0.2",
8989
"@types/chai": "^4.3.6",
@@ -92,11 +92,11 @@
9292
"@types/json-schema": "^7.0.15",
9393
"@types/lodash": "^4.14.199",
9494
"@types/mocha": "^10.0.2",
95-
"@types/node": "^20.8.10",
95+
"@types/node": "^20.10.8",
9696
"@types/randombytes": "^2.0.1",
9797
"@types/sinon": "^17.0.2",
9898
"@types/urijs": "^1.19.20",
99-
"@typescript-eslint/parser": "^6.14.0",
99+
"@typescript-eslint/parser": "^6.18.1",
100100
"axios-mock-adapter": "^1.22.0",
101101
"babel-loader": "^9.1.3",
102102
"babel-plugin-istanbul": "^6.1.1",
@@ -105,13 +105,13 @@
105105
"chai-as-promised": "^7.1.1",
106106
"chai-http": "^4.3.0",
107107
"cross-env": "^7.0.3",
108-
"eslint": "^8.50.0",
108+
"eslint": "^8.56.0",
109109
"eslint-config-airbnb-base": "^15.0.0",
110110
"eslint-config-prettier": "^9.0.0",
111111
"eslint-plugin-import": "^2.29.1",
112112
"eslint-plugin-node": "^11.1.0",
113113
"eslint-plugin-prefer-import": "^0.0.1",
114-
"eslint-plugin-prettier": "^5.0.0",
114+
"eslint-plugin-prettier": "^5.1.2",
115115
"eslint-webpack-plugin": "^4.0.1",
116116
"ghooks": "^2.0.4",
117117
"husky": "^8.0.3",
@@ -136,7 +136,7 @@
136136
"sinon": "^17.0.1",
137137
"sinon-chai": "^3.7.0",
138138
"taffydb": "^2.7.3",
139-
"terser-webpack-plugin": "^5.3.9",
139+
"terser-webpack-plugin": "^5.3.10",
140140
"ts-node": "^10.9.2",
141141
"typescript": "^5.3.3",
142142
"utility-types": "^3.7.0",
@@ -145,7 +145,7 @@
145145
},
146146
"dependencies": {
147147
"@stellar/stellar-base": "10.0.1",
148-
"axios": "^1.6.0",
148+
"axios": "^1.6.5",
149149
"bignumber.js": "^9.1.2",
150150
"eventsource": "^2.0.2",
151151
"randombytes": "^2.1.0",

0 commit comments

Comments
 (0)