@interop/ecdsa-multikey 2.3.2 → 2.3.4
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 +11 -0
- package/README.md +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @interop/ecdsa-multikey ChangeLog
|
|
2
2
|
|
|
3
|
+
## 2.3.4 - 2026-08-18
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Update to latest `@interop/data-integrity-core@8.7.1`.
|
|
7
|
+
|
|
8
|
+
## 2.3.3 - 2026-07-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Update to `@interop/data-integrity-core@8.3.0`.
|
|
13
|
+
|
|
3
14
|
## 2.3.2 - 2026-06-28
|
|
4
15
|
|
|
5
16
|
### Changed
|
package/README.md
CHANGED
|
@@ -155,6 +155,9 @@ const valid = await verify({ data, signature })
|
|
|
155
155
|
|
|
156
156
|
PRs accepted.
|
|
157
157
|
|
|
158
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) -- code style and contribution
|
|
159
|
+
conventions.
|
|
160
|
+
|
|
158
161
|
If editing the Readme, please conform to the
|
|
159
162
|
[standard-readme](https://github.com/RichardLitt/standard-readme) specification.
|
|
160
163
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interop/ecdsa-multikey",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "TypeScript/JavaScript library for generating and working with EcdsaMultikey key pairs.",
|
|
5
5
|
"homepage": "https://github.com/interop-alliance/ecdsa-multikey",
|
|
6
6
|
"repository": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"LICENSE"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@interop/data-integrity-core": "^8.1
|
|
33
|
+
"@interop/data-integrity-core": "^8.7.1",
|
|
34
34
|
"@scure/base": "^2.2.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|