Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v10.0.0-soroban.5 for release. #661

Merged
merged 4 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stellar-base",
"version": "10.0.0-beta.0",
"version": "10.0.0-soroban.5",
"description": "Low-level support library for the Stellar network.",
"main": "./lib/index.js",
"browser": {
Expand Down Expand Up @@ -76,21 +76,21 @@
"@babel/eslint-plugin": "^7.19.1",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.21.0",
"@definitelytyped/dtslint": "^0.0.163",
"@definitelytyped/dtslint": "^0.0.165",
"@istanbuljs/nyc-config-babel": "3.0.0",
"@types/node": "^20.4.2",
"@typescript-eslint/parser": "^5.61.0",
"@types/node": "^20.4.7",
"@typescript-eslint/parser": "^6.2.1",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-import": "^0.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-webpack-plugin": "^4.0.0",
"ghooks": "^2.0.4",
"husky": "^8.0.3",
Expand All @@ -107,7 +107,7 @@
"mocha": "^10.2.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"prettier": "^3.0.1",
"randombytes": "^2.1.0",
"sinon": "^15.0.3",
"sinon-chai": "^3.7.0",
Expand Down
4 changes: 1 addition & 3 deletions src/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,11 @@
* into the signature (see {@link Networks} for options)
* @param {number} validUntil the (exclusive) future ledger sequence number
* until which this authorization entry should be valid (if
* `currentLedgerSeq==validUntil`, this is expired))
* `currentLedgerSeq==validUntil`, this is expired)
* @param {xdr.SorobanAuthorizedInvocation} invocation the invocation tree that
* we're authorizing (likely, this comes from transaction simulation)
*
* @param {xdr.SorobanAuthorizedInvocation} invocation
*
* @returns {Promise<xdr.SorobanAuthorizationEntry>}

Check warning on line 72 in src/auth.js

View workflow job for this annotation

GitHub Actions / build

Missing JSDoc parameter description for 'invocation'

Check warning on line 72 in src/auth.js

View workflow job for this annotation

GitHub Actions / build

Duplicate JSDoc parameter 'invocation'

Check warning on line 72 in src/auth.js

View workflow job for this annotation

GitHub Actions / build

Missing JSDoc parameter description for 'invocation'

Check warning on line 72 in src/auth.js

View workflow job for this annotation

GitHub Actions / build

Duplicate JSDoc parameter 'invocation'
* @see authorizeInvocation
*/
export async function authorizeInvocationCallback(
Expand Down
Loading
Loading