This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
Releases: iotaledger/iota.js
Releases · iotaledger/iota.js
v2.0.0-rc.1 Stardust support
Support for Stardust protocol according to the Tangle Improvement Proposals
v1.8.6 Expanded node-fetch polyfill
v1.8.5 Improve ESM Packaging
This release improves the ESM packaging and more specifically the polyfill for 3rd part module loading.
v1.8.5 Bump Release
Bump version due to npm publish issue https://status.npmjs.org/incidents/wy4002vc8ryc
Separate packages
- Separates crypto and utils into separate packages, this is a breaking change as some imports will need to change to point to the correct package.
- Utility classes like
Converter
,RandomHelper
will need their imports changing from@iota/iota.js
to@iota/util.js
- Crypto classes like
Blake2b
,Bech32
will need their imports changing from@iota/iota.js
to@iota/crypto.js
- Utility classes like
BigInt Packaging
- Update all BigInt calculations to use big-integer lib instead of native, so that when polyfill is used e.g. in React Native the calculations work
- Update IPowProvider interface so that BigInteger nonce is returned as string
MQTT Separation
- Breaking Change - MQTT has moved to its own package @iota/mqtt.js
- Improve ESM Modules format
- ESM distribution is located in dist/esm directory
- Renamed dist/iota.js to dist/cjs/index-node.js
- Renamed dist/iota.browser.js to dist/cjs/index-browser.js
- Improve platform detection for RandomHelper
v1.5.3
v1.5.0
v1.0.0-beta.30
Important Changes:
tips
parameter is no longer needed forgetInclusionState
api callgetLatestInclusion
api call has been removed- No
threshold
parameter is required ingetBalances
api call getTips
api call has been removed
Changelog
- Fix: Ignore null trytes during trytes to ascii conversion (#480)
- Update: Remove
threshold
parameter fromgetBalances()
(#481) - Update: Remove
getTips()
api (#483) - Update: Remove
tips
parameter fromgetInclusionStates()
(#484) - Update: Remove
getLatestInclusion
(#484) - Chore: Update
crypto-js
in@iota/core
(#460) - Chore: Update build scripts for
@iota/pearl-diver-react-native
(#501, #502)