This repository was archived by the owner on Sep 6, 2024. It is now read-only.
Releases: iotaledger-archive/iota.js
Releases · iotaledger-archive/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,RandomHelperwill need their imports changing from@iota/iota.jsto@iota/util.js - Crypto classes like
Blake2b,Bech32will need their imports changing from@iota/iota.jsto@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:
tipsparameter is no longer needed forgetInclusionStateapi callgetLatestInclusionapi call has been removed- No
thresholdparameter is required ingetBalancesapi call getTipsapi call has been removed
Changelog
- Fix: Ignore null trytes during trytes to ascii conversion (#480)
- Update: Remove
thresholdparameter fromgetBalances()(#481) - Update: Remove
getTips()api (#483) - Update: Remove
tipsparameter fromgetInclusionStates()(#484) - Update: Remove
getLatestInclusion(#484) - Chore: Update
crypto-jsin@iota/core(#460) - Chore: Update build scripts for
@iota/pearl-diver-react-native(#501, #502)