@celo/wallet-hsm-azure 5.1.2-contracts-11-pre.0 → 5.1.3-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -6
- package/README.md +23 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,32 @@
|
|
1
1
|
# @celo/wallet-hsm-azure
|
2
2
|
|
3
|
-
## 5.1.
|
3
|
+
## 5.1.3-beta.0
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [[`28cd8f8`](https://github.com/celo-org/developer-tooling/commit/28cd8f8c8dd62ecafa01ef7a7fb89117e6db9b56)]:
|
8
|
+
- @celo/connect@5.2.0-beta.0
|
9
|
+
- @celo/wallet-base@5.1.3-beta.0
|
10
|
+
- @celo/wallet-remote@5.1.3-beta.0
|
11
|
+
- @celo/wallet-hsm@5.1.3-beta.0
|
12
|
+
|
13
|
+
## 5.1.2
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- [#94](https://github.com/celo-org/developer-tooling/pull/94) [`45d156d`](https://github.com/celo-org/developer-tooling/commit/45d156d03c03399bef51a00fe2b5cfb5e5669642) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump all @azure packages to latest versions. These includes several major bumps which should not affect use in this library. For More details
|
18
|
+
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/CHANGELOG.md
|
19
|
+
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/BREAKING_CHANGES.md
|
20
|
+
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-secrets/CHANGELOG.md
|
21
|
+
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-keys/CHANGELOG.md
|
22
|
+
- Updated dependencies [[`6b2e34c`](https://github.com/celo-org/developer-tooling/commit/6b2e34c973290da221aaabdc2bf4c6654ef9f99c)]:
|
23
|
+
- @celo/utils@6.0.0
|
24
|
+
- @celo/wallet-base@5.1.2
|
25
|
+
- @celo/wallet-hsm@5.1.2
|
26
|
+
- @celo/wallet-remote@5.1.2
|
27
|
+
- @celo/connect@5.1.2
|
28
|
+
|
29
|
+
## 5.1.2-beta.0
|
4
30
|
|
5
31
|
### Patch Changes
|
6
32
|
|
@@ -10,11 +36,11 @@
|
|
10
36
|
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-secrets/CHANGELOG.md
|
11
37
|
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-keys/CHANGELOG.md
|
12
38
|
- Updated dependencies [[`6b2e34c`](https://github.com/celo-org/developer-tooling/commit/6b2e34c973290da221aaabdc2bf4c6654ef9f99c)]:
|
13
|
-
- @celo/utils@6.0.0-
|
14
|
-
- @celo/connect@5.1.2-
|
15
|
-
- @celo/wallet-base@5.1.2-
|
16
|
-
- @celo/wallet-remote@5.1.2-
|
17
|
-
- @celo/wallet-hsm@5.1.2-
|
39
|
+
- @celo/utils@6.0.0-beta.0
|
40
|
+
- @celo/connect@5.1.2-beta.0
|
41
|
+
- @celo/wallet-base@5.1.2-beta.0
|
42
|
+
- @celo/wallet-remote@5.1.2-beta.0
|
43
|
+
- @celo/wallet-hsm@5.1.2-beta.0
|
18
44
|
|
19
45
|
## 5.1.1
|
20
46
|
|
package/README.md
CHANGED
@@ -1 +1,23 @@
|
|
1
|
-
|
1
|
+
# @celo/wallet-hsm-azure
|
2
|
+
|
3
|
+
Wallet-hsm-azure is a Azure Key Vault implementation of a RemoteWallet.
|
4
|
+
|
5
|
+
## How we work
|
6
|
+
|
7
|
+
We are a GitHub-first team, which means we have a strong preference for communicating via GitHub.
|
8
|
+
Please use GitHub to:
|
9
|
+
|
10
|
+
🐞 [File a bug report](https://github.com/celo-org/developer-tooling/issues/new/choose)
|
11
|
+
|
12
|
+
💬 [Ask a question](https://github.com/celo-org/developer-tooling/discussions)
|
13
|
+
|
14
|
+
✨ [Suggest a feature](httpsi//github.com/celo-org/developer-tooling/issues/new/choose)
|
15
|
+
|
16
|
+
🧑💻 [Contribute!](/CONTRIBUTING.md)
|
17
|
+
|
18
|
+
🚔 [Report a security vulnerability](https://github.com/celo-org/developer-tooling/issues/new/choose)
|
19
|
+
|
20
|
+
> [!TIP]
|
21
|
+
>
|
22
|
+
> Please avoid messaging us via Slack, Telegram, or email. We are more likely to respond to you on
|
23
|
+
> GitHub than if you message us anywhere else. We actively monitor GitHub, and will get back to you shortly 🌟
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@celo/wallet-hsm-azure",
|
3
|
-
"version": "5.1.
|
3
|
+
"version": "5.1.3-beta.0",
|
4
4
|
"description": "Azure HSM wallet implementation",
|
5
5
|
"author": "Celo",
|
6
6
|
"license": "Apache-2.0",
|
@@ -26,11 +26,11 @@
|
|
26
26
|
"@azure/keyvault-keys": "^4.7.2",
|
27
27
|
"@azure/keyvault-secrets": "^4.7.0",
|
28
28
|
"@celo/base": "^6.0.0",
|
29
|
-
"@celo/connect": "^5.
|
30
|
-
"@celo/utils": "^6.0.0
|
31
|
-
"@celo/wallet-base": "^5.1.
|
32
|
-
"@celo/wallet-hsm": "^5.1.
|
33
|
-
"@celo/wallet-remote": "^5.1.
|
29
|
+
"@celo/connect": "^5.2.0-beta.0",
|
30
|
+
"@celo/utils": "^6.0.0",
|
31
|
+
"@celo/wallet-base": "^5.1.3-beta.0",
|
32
|
+
"@celo/wallet-hsm": "^5.1.3-beta.0",
|
33
|
+
"@celo/wallet-remote": "^5.1.3-beta.0",
|
34
34
|
"@ethereumjs/util": "8.0.5",
|
35
35
|
"@types/secp256k1": "^4.0.0",
|
36
36
|
"bignumber.js": "^9.0.0",
|