Skip to content

Commit ca27152

Browse files
authored
Release v13.0.0 (#782)
1 parent 14a59f2 commit ca27152

File tree

3 files changed

+796
-658
lines changed

3 files changed

+796
-658
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
## Unreleased
44

55

6+
## [`v13.0.0`](https://github.com/stellar/js-stellar-base/compare/v12.1.1...v13.0.0)
7+
8+
**This release supports Protocol 22.** While the network has not upgraded yet, you can start integrating the new features into your codebase if you want a head start. Keep in mind that while the binary XDR is backwards-compatible, the naming and layout of structures is not. In other words, this build will continue to work on Protocol 21, but you may have to update code that references XDR directly.
9+
10+
This version is unchanged from [`beta.1`](#v13.0.0-beta.1).
11+
12+
613
## [`v13.0.0-beta.1`](https://github.com/stellar/js-stellar-base/compare/v12.1.1...v13.0.0-beta.1)
714

815
**This is the first release that supports Protocol 22.** While the network has not upgraded yet, you can start integrating the new features into your codebase if you want a head start. Keep in mind that while the binary XDR is backwards-compatible, the naming and layout of structures is not. In other words, this build will continue to work on Protocol 21, but you may have to update code that references XDR directly.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-base",
3-
"version": "13.0.0-beta.1",
3+
"version": "13.0.0",
44
"description": "Low-level support library for the Stellar network.",
55
"main": "./lib/index.js",
66
"browser": {
@@ -70,32 +70,32 @@
7070
},
7171
"homepage": "https://github.com/stellar/js-stellar-base",
7272
"devDependencies": {
73-
"@babel/cli": "^7.25.6",
74-
"@babel/core": "^7.25.2",
75-
"@babel/eslint-parser": "^7.25.1",
76-
"@babel/eslint-plugin": "^7.25.1",
77-
"@babel/preset-env": "^7.25.4",
78-
"@babel/register": "^7.24.6",
73+
"@babel/cli": "^7.25.9",
74+
"@babel/core": "^7.26.0",
75+
"@babel/eslint-parser": "^7.25.9",
76+
"@babel/eslint-plugin": "^7.25.9",
77+
"@babel/preset-env": "^7.26.0",
78+
"@babel/register": "^7.25.9",
7979
"@definitelytyped/dtslint": "^0.0.182",
8080
"@istanbuljs/nyc-config-babel": "3.0.0",
8181
"@types/node": "^20.14.11",
8282
"@typescript-eslint/parser": "^6.20.0",
83-
"babel-loader": "^9.1.3",
83+
"babel-loader": "^9.2.1",
8484
"babel-plugin-istanbul": "^6.1.1",
8585
"chai": "^4.3.10",
8686
"chai-as-promised": "^7.1.2",
8787
"cross-env": "^7.0.3",
8888
"eslint": "^8.57.0",
8989
"eslint-config-airbnb-base": "^15.0.0",
9090
"eslint-config-prettier": "^9.1.0",
91-
"eslint-plugin-import": "^2.30.0",
91+
"eslint-plugin-import": "^2.31.0",
9292
"eslint-plugin-node": "^11.1.0",
9393
"eslint-plugin-prefer-import": "^0.0.1",
9494
"eslint-plugin-prettier": "^5.2.1",
9595
"eslint-webpack-plugin": "^4.2.0",
9696
"ghooks": "^2.0.4",
9797
"husky": "^8.0.3",
98-
"jsdoc": "^4.0.3",
98+
"jsdoc": "^4.0.4",
9999
"karma": "^6.4.4",
100100
"karma-chrome-launcher": "^3.1.0",
101101
"karma-coverage": "^2.2.1",
@@ -105,7 +105,7 @@
105105
"karma-webpack": "^5.0.1",
106106
"lint-staged": "^15.2.10",
107107
"minami": "^1.1.1",
108-
"mocha": "^10.7.3",
108+
"mocha": "^10.8.2",
109109
"node-polyfill-webpack-plugin": "^3.0.0",
110110
"nyc": "^15.1.0",
111111
"prettier": "^3.3.3",
@@ -115,8 +115,8 @@
115115
"taffydb": "^2.7.3",
116116
"terser-webpack-plugin": "^5.3.10",
117117
"ts-node": "^10.9.2",
118-
"typescript": "^5.6.2",
119-
"webpack": "^5.93.0",
118+
"typescript": "^5.6.3",
119+
"webpack": "^5.96.1",
120120
"webpack-cli": "^5.1.1"
121121
},
122122
"dependencies": {
@@ -128,6 +128,6 @@
128128
"tweetnacl": "^1.0.3"
129129
},
130130
"optionalDependencies": {
131-
"sodium-native": "^4.1.1"
131+
"sodium-native": "^4.3.0"
132132
}
133133
}

0 commit comments

Comments
 (0)