Skip to content

Commit

Permalink
Prepare v10.0.0-beta.2 for release (#694)
Browse files Browse the repository at this point in the history
* Bump versions and add changelog entry
* Upgrade all dependencies to their latest versions
* Repoint XDR typedefs to curr.d.ts
  • Loading branch information
Shaptic committed Sep 22, 2023
1 parent f17ef33 commit e3d6fc3
Show file tree
Hide file tree
Showing 4 changed files with 220 additions and 207 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
## Unreleased


## [`v10.0.0-beta.2`](https://github.com/stellar/js-stellar-base/compare/v10.0.0-beta.1...v10.0.0-beta.2)

### Breaking Changes
* The wrappers around multi-party authorization have changed ([#678](https://github.com/stellar/js-stellar-base/pull/678)):
- `authorizeEntry` has been added to help sign auth entries in-place
- the signature for `authorizeInvocation` has changed: it now offers a callback approach by default and requires slightly different parameters
- `buildAuthEntry`, `buildAuthEnvelope`, and `authorizeInvocationCallback` have been removed

### Fixed
* The TypeScript definitions for XDR schemas now point to the current protocol rather than vNext ([#694](https://github.com/stellar/js-stellar-base/pull/694)).
* Misc. dependencies have been updated to their latest versions ([#694](https://github.com/stellar/js-stellar-base/pull/694)).


## [`v10.0.0-beta.1`](https://github.com/stellar/js-stellar-base/compare/v10.0.0-beta.0...v10.0.0-beta.1)

### Fixed
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "stellar-base",
"version": "10.0.0-beta.1",
"version": "10.0.0-beta.2",
"description": "Low-level support library for the Stellar network.",
"main": "./lib/index.js",
"browser": {
"main": "./dist/stellar-base.min.js",
"main": "./dist/stellar-base.js",
"sodium-native": false
},
"types": "./types/index.d.ts",
Expand Down Expand Up @@ -71,15 +71,15 @@
"homepage": "https://github.com/stellar/js-stellar-base",
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.17",
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@babel/preset-env": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/register": "^7.22.15",
"@definitelytyped/dtslint": "^0.0.177",
"@definitelytyped/dtslint": "^0.0.178",
"@istanbuljs/nyc-config-babel": "3.0.0",
"@types/node": "^20.6.0",
"@typescript-eslint/parser": "^6.7.0",
"@types/node": "^20.6.3",
"@typescript-eslint/parser": "^6.7.2",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.8",
Expand Down Expand Up @@ -110,7 +110,7 @@
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"randombytes": "^2.1.0",
"sinon": "^15.0.3",
"sinon": "^16.0.0",
"sinon-chai": "^3.7.0",
"taffydb": "^2.7.3",
"terser-webpack-plugin": "^5.3.8",
Expand Down
2 changes: 1 addition & 1 deletion types/xdr.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './next';
export * from './curr';
Loading

0 comments on commit e3d6fc3

Please sign in to comment.