Skip to content

Commit ae73422

Browse files
chore: update to v0.4.6
Signed-off-by: Berend Sliedrecht <[email protected]>
1 parent 6e2f44b commit ae73422

File tree

7 files changed

+7
-10
lines changed

7 files changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ jobs:
3232
- name: Check Style
3333
run: pnpm style:check
3434

35-
- name: Check Types
36-
run: pnpm types:check
37-
3835
- name: Compile
3936
run: pnpm build
4037

packages/askar-nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"typescript": "catalog:"
3838
},
3939
"binary": {
40-
"version": "v0.4.5",
40+
"version": "v0.4.6",
4141
"host": "https://github.com/openwallet-foundation/askar/releases/download",
4242
"packageName": "library-{platform}-{arch}.tar.gz"
4343
},
0 Bytes
Binary file not shown.

packages/askar-react-native/cpp/askar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jsi::Value argon2DerivePassword(jsi::Runtime &rt, jsi::Object options) {
2626
auto parameters =
2727
jsiToValue<int8_t>(rt, options, "parameters");
2828
auto password =
29-
jsiToValue<ByterBuffer>(rt, options, "password");
29+
jsiToValue<ByteBuffer>(rt, options, "password");
3030
auto salt =
3131
jsiToValue<ByteBuffer>(rt, options, "salt");
3232

packages/askar-react-native/cpp/askar.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jsi::Value setDefaultLogger(jsi::Runtime &rt, jsi::Object options);
2020
// jsi::Value setMaxLogLevel(jsi::Runtime &rt, jsi::Object options);
2121
// jsi::Value clearCustomLogger(jsi::Runtime &rt, jsi::Object options);
2222

23+
jsi::Value argon2DerivePassword(jsi::Runtime &rt, jsi::Object options);
24+
2325
jsi::Value entryListCount(jsi::Runtime &rt, jsi::Object options);
2426
jsi::Value entryListFree(jsi::Runtime &rt, jsi::Object options);
2527
jsi::Value entryListGetCategory(jsi::Runtime &rt, jsi::Object options);

packages/askar-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"react-native": ">= 0.71"
5050
},
5151
"binary": {
52-
"version": "v0.4.5",
52+
"version": "v0.4.6",
5353
"host": "https://github.com/openwallet-foundation/askar/releases/download",
5454
"packageName": "library-ios-android.tar.gz"
5555
}

packages/askar-react-native/src/ReactNativeAskar.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ import type {
7777
StoreRenameProfileOptions,
7878
StoreSetDefaultProfileOptions,
7979
} from '@openwallet-foundation/askar-shared'
80-
import type { NativeBindings } from './NativeBindings'
81-
import type { Callback, CallbackWithResponse, ReturnObject } from './serialize'
82-
8380
import {
8481
AeadParams,
8582
AskarError,
@@ -92,7 +89,8 @@ import {
9289
StoreHandle,
9390
handleInvalidNullResponse,
9491
} from '@openwallet-foundation/askar-shared'
95-
92+
import type { NativeBindings } from './NativeBindings'
93+
import type { Callback, CallbackWithResponse, ReturnObject } from './serialize'
9694
import { serializeArguments } from './serialize'
9795

9896
export class ReactNativeAskar implements Askar {

0 commit comments

Comments
 (0)