mirror of
https://github.com/fluencelabs/gitbook-docs
synced 2025-04-25 07:52:14 +00:00
1.7 KiB
1.7 KiB
Changelog
Fluence JS versioning scheme is the following: 0.BREAKING.ENHANCING
0
shows that Fluence JS does not meet its vision yet, so API can change quicklyBREAKING
part is incremented for each breaking API changeENHANCING
part is incremented for every fix and update which is compatible on API level
0.13.0 – September 24, 2021
PeerStatus
is now exported from index file[#80](https://github.com/fluencelabs/fluence-js/pull/80)
KeyPair
: methodfromBytes
is replaced with fromEd25519SK[#81](https://github.com/fluencelabs/fluence-js/pull/81)
0.12.1 – September 14, 2021
KeyPair
: add fromBytes, toEd25519PrivateKey[#78](https://github.com/fluencelabs/fluence-js/pull/78)
0.12.0 – September 10, 2021
- The API to work with the default Fluence Peer has been put under the facade
Fluence
. Methodinit
was renamed tostart
anduninit
renamed tostop
.connectionStatus
migrated togetStatus
.
To migrate from 0.11.0 to 0.12.0
import { Fluence } from "@fluencelabs/fluence"
; instead ofFluencePeer
- replace
Fluence.default
with justFluence
- replace
init
withstart
anduninit
withstop
- replace
connectionInfo()
withgetStatus()
[#72](https://github.com/fluencelabs/fluence-js/pull/72)
0.11.0 – September 08, 2021
- Update JS SDK api to the new version
[#61](https://github.com/fluencelabs/fluence-js/pull/61)