Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/empty-dolls-tickle.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/heavy-wasps-grow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-rice-obey.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/pretty-stingrays-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-garlics-build.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/wet-comics-love.md

This file was deleted.

27 changes: 27 additions & 0 deletions packages/askar-nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @openwallet-foundation/askar-nodejs

## 0.5.0

### Minor Changes

- f626ebc: chore: drop support for Node 18
- f0ae878: feat: update to Askar 0.5.0 release.

- This adds support for providing a custom Argon2 config.
- In addition it adds methods to list the open sessions and scans on a store. Note however that these methods are only implemented in the Node.JS wrapper for now, they will be added to the React Native wrapper at a later stage.

- f626ebc: rewrite the Node.JS FFI integration based on Koffi. This enabled Node.JS 24 support and provides a more modern integration

### Patch Changes

- f626ebc: feat: support Node.JS 24
- a4f1969: docs: update version compatibility in readme
- 9121e2a: fix: wrap the askar registration with a `NativeAskar` class that exposes two static members: a `.instance` getter and `register` method.

Previously when you did not import the native askar library on the first line (or above all logic that uses Askar) the reference to Askar would be undefined. (i.e. askar-shared is imported before askar-react-native or askar-nodejs)

The `registerAskar` method and `askar` property are kept for backwards compatibility, but these are still prone to the same error. `registerAskar` integrated with the new `NativeAskar` class, and so all usages within the shared library, as well as the nodejs and react-native wrappers will be fixed. We recommend to update to the new `NativeAskar` class for all other usages.

- Updated dependencies [f626ebc]
- Updated dependencies [f0ae878]
- Updated dependencies [9121e2a]
- @openwallet-foundation/[email protected]

## 0.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openwallet-foundation/askar-nodejs",
"version": "0.4.3",
"version": "0.5.0",
"license": "Apache-2.0",
"description": "Nodejs wrapper for Askar",
"main": "build/index",
Expand Down
24 changes: 24 additions & 0 deletions packages/askar-react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @openwallet-foundation/askar-react-native

## 0.5.0

### Minor Changes

- f626ebc: chore: drop support for Node 18
- f0ae878: feat: update to Askar 0.5.0 release.

- This adds support for providing a custom Argon2 config.
- In addition it adds methods to list the open sessions and scans on a store. Note however that these methods are only implemented in the Node.JS wrapper for now, they will be added to the React Native wrapper at a later stage.

### Patch Changes

- a4f1969: docs: update version compatibility in readme
- 9121e2a: fix: wrap the askar registration with a `NativeAskar` class that exposes two static members: a `.instance` getter and `register` method.

Previously when you did not import the native askar library on the first line (or above all logic that uses Askar) the reference to Askar would be undefined. (i.e. askar-shared is imported before askar-react-native or askar-nodejs)

The `registerAskar` method and `askar` property are kept for backwards compatibility, but these are still prone to the same error. `registerAskar` integrated with the new `NativeAskar` class, and so all usages within the shared library, as well as the nodejs and react-native wrappers will be fixed. We recommend to update to the new `NativeAskar` class for all other usages.

- Updated dependencies [f626ebc]
- Updated dependencies [f0ae878]
- Updated dependencies [9121e2a]
- @openwallet-foundation/[email protected]

## 0.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openwallet-foundation/askar-react-native",
"version": "0.4.3",
"version": "0.5.0",
"license": "Apache-2.0",
"description": "React Native wrapper for Askar",
"main": "build/index",
Expand Down
18 changes: 18 additions & 0 deletions packages/askar-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @openwallet-foundation/askar-shared

## 0.5.0

### Minor Changes

- f626ebc: chore: drop support for Node 18
- f0ae878: feat: update to Askar 0.5.0 release.

- This adds support for providing a custom Argon2 config.
- In addition it adds methods to list the open sessions and scans on a store. Note however that these methods are only implemented in the Node.JS wrapper for now, they will be added to the React Native wrapper at a later stage.

### Patch Changes

- 9121e2a: fix: wrap the askar registration with a `NativeAskar` class that exposes two static members: a `.instance` getter and `register` method.

Previously when you did not import the native askar library on the first line (or above all logic that uses Askar) the reference to Askar would be undefined. (i.e. askar-shared is imported before askar-react-native or askar-nodejs)

The `registerAskar` method and `askar` property are kept for backwards compatibility, but these are still prone to the same error. `registerAskar` integrated with the new `NativeAskar` class, and so all usages within the shared library, as well as the nodejs and react-native wrappers will be fixed. We recommend to update to the new `NativeAskar` class for all other usages.

## 0.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openwallet-foundation/askar-shared",
"version": "0.4.3",
"version": "0.5.0",
"license": "Apache-2.0",
"description": "Shared library for using Askar with NodeJS and React Native",
"main": "build/index",
Expand Down