Skip to content

Releases: WalletConnect/walletconnect-monorepo

2.3.0

23 Jan 15:49
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.2.1...2.3.0

2.2.1

10 Jan 12:21
b80c5e5
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.2.0...2.2.1

2.2.0

05 Jan 13:59
72a0686
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.5...2.2.0

2.1.5

22 Dec 15:36
873f235
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.1.4...2.1.5

2.1.4

25 Nov 14:10
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.3...2.1.4

2.1.3

14 Nov 12:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.2...2.1.3

2.1.2

11 Nov 15:49
1170770
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.1...2.1.2

2.1.1

03 Nov 18:34
d3fe8a6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.1.0...2.1.1

2.1.0

27 Oct 09:37
f98ff67
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.0.0...2.1.0

2.0.0

24 Oct 14:09
Compare
Choose a tag to compare

What's Changed

Important changes when upgrading from 2.0.0-rc.x to 2.0.0 (stable)

  • Pairings are now managed by the Pairing API (see docs)
  • We recommend accessing all pairing-related values and methods via the SignClient.core.pairing interface going forward.
  • BREAKING CHANGE: Pairing events (pairing_create, pairing_delete, pairing_expire) are now managed by the core/pairing EventEmitter:
    • Before: signClient.on(“pairing_delete”, …)
    • After: signClient.core.pairing.events.on(“pairing_delete”, …)
  • Pairing methods are now managed by the core/pairing controller:
    • Before: signClient.pair(…)
    • After: signClient.core.pairing.pair(…)
    • Calling pairing-specific methods directly on signClient will continue to work, but is considered deprecated and will be removed in a future major version.
  • Pairing values are now managed by the core/pairing controller and have a dedicated getter: signClient.core.pairing.getPairings()
    • Accessing stored pairings via SignClient.pairing will continue to work, but is considered deprecated and will be removed in a future major version.

Full Changelog: 2.0.0-rc.4...2.0.0