Releases: TankerHQ/identity-go
Releases · TankerHQ/identity-go
v3.3.2
v3.3.1
Released on 2024-09-18
- Required Go version >= 1.22
- Dependency upgrades
v3.3.0
Released on 2022-07-12
- Have more idiomatic Go code:
- Add
internal
package to hide parts of the API that should not be public - Several architectural changes
- Renaming and changes in signatures of internal functions (no changes to public API)
- Add
- Add micro-benchmarks for the exported functions and optimize things a little (see #e6795ff, #8ee200a, and #2a0536c)
- Add godoc comments to the code for better readability
- Upgrade the Go version of the module (1.12 -> 1.17)
This version is fully retro-compatible with the previous one, however the package github.com/TankerHQ/identity-go/identity
has been deprecated, please use github.com/TankerHQ/identity-go
instead:
package my_package
import (
- "github.com/TankerHQ/identity-go/v3/identity"
+ "github.com/TankerHQ/identity-go/v3"
)
v3.2.0
v3.1.0
v3.0.0
Please read the migration guide before upgrading to this version if you use the provisional identity feature.
Refer to the compatibility table
for more information on compatible Core SDK versions after this upgrade.
- API break: The createProvisionalIdentity function now takes an additional argument
- It is now possible to create provisional identities targeting phone numbers
- Introduce upgrade to new deterministic identity format
- Email addresses in public provisional identities will now be hashed
First synced version
v2.16.0 Merge pull request #15 from TankerHQ/dm/fix-crash-on-invalid-app-secr…