Release xrpl.js 2.7.0 (#2240)

This commit is contained in:
Jackson Mills
2023-03-08 15:05:00 -08:00
committed by GitHub
parent 4ec8c99056
commit b3d3bc2f99
234 changed files with 2214 additions and 1767 deletions

View File

@@ -3,16 +3,19 @@
Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xrpl-announce) for release announcements. We recommend that xrpl.js (ripple-lib) users stay up-to-date with the latest stable release.
## Unreleased
## 2.7.0 (2023-03-08)
### Fixed
* Code splitting improvements for lodash
* Fixed missing reason code in websocket implemntation on websocket disconnect
* Fixed missing reason code in websocket implementation on websocket disconnect
* Fix timeout error in request manager
* Improved typescript typing
* Fixed empty value condition for NFTokenMinter field in AccountSet transaction
* Renamed `lsfDisallowIncomingNFTOffer` and `asfDisallowIncomingNFTOffer` to `lsfDisallowIncomingNFTokenOffer` and `asfDisallowIncomingNFTokenOffer`
### Added
- `getNFTokenID` lets you get the NFTokenID after minting an NFT
* `getNFTokenID` lets you get the NFTokenID after minting an NFT
* Support for `disallowIncoming` account set flags (e.g. `asfDisallowIncomingTrustline`)
### Changed
* All tests now use the Jest test runner and have been refactored for consistency across all packages
@@ -29,7 +32,6 @@ Wallet.fromMmnemonic()
### Added
* Optional custom amount field to `fundWallet`.
* Support for `disallowIncoming` account set flags (e.g. `asfDisallowIncomingTrustline`)
### Changed
* Add support for Transaction objects in `verifyTransaction`

View File

@@ -1,6 +1,6 @@
{
"name": "xrpl",
"version": "2.6.0",
"version": "2.7.0",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
"files": [
@@ -27,9 +27,9 @@
"bip39": "^3.0.4",
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.4",
"ripple-address-codec": "^4.2.4",
"ripple-binary-codec": "^1.4.2",
"ripple-keypairs": "^1.1.4",
"ripple-address-codec": "^4.2.5",
"ripple-binary-codec": "^1.4.3",
"ripple-keypairs": "^1.1.5",
"ws": "^8.2.2"
},
"devDependencies": {