Skip to content

Releases: gnolang/gnonative

v3.0.0

24 Sep 08:37
f9b1aea

Choose a tag to compare

3.0.0 (2024-09-24)

  • BREAKING CHANGE: add MakeCallTx, SignTx and BroadcastTxCommit in GnoNativeApi (#180) (f9b1aea), closes #180

BREAKING CHANGES

  • the gasWanted parameter (used in several gRPC message)
    is now a bigint instead of a number to keep the precision in the calling
    stack.

v2.0.0

23 Sep 12:06
ecdd187

Choose a tag to compare

2.0.0 (2024-09-23)

Bug Fixes

  • Change UpdatePassword to take multiple addresses, roll back on error (#175) (7534c7d)
  • update gnonative API (#179) (ecdd187)

BREAKING CHANGES

  • Change UpdatePassword to take an array of addresses,
    roll back on error.

Explanation: Currently, UpdatePassword takes a single address of the
account to update the password. If a native application wants to change
multiple accounts to the new password, it does a loop to call
UpdatePassword multiple times. But if one of the calls has an error,
the application breaks out of the loop and leaves the Keybase in an
inconsistent state where some passwords are changed but not all. The
application could write some logic to roll back these changes, but it is
better for the Gno Native Kit service to handle this.

This PR has two commits:

  1. Change the UpdatePassword request to take a required array of
    account addresses. (If the application only wants to update the password
    of one account, it is easy to make an array of one address.) In api.go,
    we also change UpdatePassword to roll back to the old password in case
    of error.
  2. In types.ts and GnoNativeApi.ts, change updatePassword to take a
    required array of Uint8Array for the addresses.

v1.8.1

11 Sep 09:19
15d9089

Choose a tag to compare

1.8.1 (2024-09-11)

Bug Fixes

v1.8.0

04 Sep 09:55
ff1fda7

Choose a tag to compare

1.8.0 (2024-09-04)

Features

v1.7.2

29 Aug 07:33
2281464

Choose a tag to compare

1.7.2 (2024-08-29)

Bug Fixes

  • Remove go.mod replace for gno. Use new gnoclient API. (#170) (2281464)

v1.7.1

23 Aug 16:04
4485223

Choose a tag to compare

1.7.1 (2024-08-23)

Bug Fixes

v1.7.0

23 Aug 10:18
a38ff7b

Choose a tag to compare

1.7.0 (2024-08-23)

Features

v1.6.1

20 Aug 09:06
3874e56

Choose a tag to compare

1.6.1 (2024-08-20)

Bug Fixes

v1.6.0

19 Aug 10:49
d35266b

Choose a tag to compare

1.6.0 (2024-08-19)

Features

v1.5.0

24 Jul 16:22

Choose a tag to compare

1.5.0 (2024-07-24)

Features