@agnostack/verifyd 2.5.0-beta.6 → 2.5.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 +25 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# [2.5.0](https://github.com/agnostack/verifyd/compare/v2.4.0...v2.5.0) (2026-07-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* append .js extensions to relative imports for Node 22 strict ESM ([2997ddb](https://github.com/agnostack/verifyd/commit/2997ddb61b1ddb62a506531aae9d243184d84934))
|
|
7
|
+
* clean up linting ([4faa747](https://github.com/agnostack/verifyd/commit/4faa7479f01f2a59dc12aba7a0133f303a1392f7))
|
|
8
|
+
* convert WebCrypto.js to TypeScript with concrete public-surface types ([70585f8](https://github.com/agnostack/verifyd/commit/70585f8dd103999827464d4bf69a52b5215a35f5))
|
|
9
|
+
* disable sourcemaps in ESM build to avoid missing source warnings ([fbb7cc2](https://github.com/agnostack/verifyd/commit/fbb7cc26f1541ba300487fb7b74da9a184fb297a))
|
|
10
|
+
* eliminate browser `global is not defined` error ([319f438](https://github.com/agnostack/verifyd/commit/319f438013a1e79bac71658809e69861e10b0e2d))
|
|
11
|
+
* move isomorphic-webcrypto from dependency to optional peer dependency ([5fd0948](https://github.com/agnostack/verifyd/commit/5fd0948c883d35db4ca73ffaa70388c95e5b476e))
|
|
12
|
+
* silence webpack "Critical dependency" warning for ESM consumers ([2655495](https://github.com/agnostack/verifyd/commit/2655495e8de73b1a7108cd8975be40e23a24eb21))
|
|
13
|
+
* thread `encoding: 'base64'` option through verification helpers ([3f49572](https://github.com/agnostack/verifyd/commit/3f495723cd3a06657819087145fa1ece718e2bd7))
|
|
14
|
+
* timingSafeEqual + verifyHMAC actually compare string inputs ([f6d1f5d](https://github.com/agnostack/verifyd/commit/f6d1f5dd528af60a25b7566484f9c25f721e21f9))
|
|
15
|
+
* updated to clean up ([9065ca3](https://github.com/agnostack/verifyd/commit/9065ca334e1f7772da8b818c0dadc53b17f31929))
|
|
16
|
+
* use variable import specifiers to prevent bundler static resolution failures ([0862e82](https://github.com/agnostack/verifyd/commit/0862e82cec73b61f8772a200789ab3471fc0af59))
|
|
17
|
+
* **WebCrypto:** chunk base64 encoding to avoid stack overflow on large payloads ([c303c90](https://github.com/agnostack/verifyd/commit/c303c90175bff9c4c654d8391c105f10fc7f34a0))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add constructor `encoding: 'base64'` option to WebCrypto ([88a3a6e](https://github.com/agnostack/verifyd/commit/88a3a6ecafaeb8ce60d5ae5c2f252df2a4604e09))
|
|
23
|
+
* add ESM output and tree-shaking support via opt-in subpath exports ([ba00925](https://github.com/agnostack/verifyd/commit/ba00925be3eaae383a63b6a4e8608c38e8d00405))
|
|
24
|
+
* add HMAC key type support, importRawKey, and signed token utilities ([6c8b586](https://github.com/agnostack/verifyd/commit/6c8b586f68968fc7803fff36c28508974a6b24df))
|
|
25
|
+
|
|
1
26
|
# [2.4.0](https://github.com/agnostack/verifyd/compare/v2.3.5...v2.4.0) (2026-01-31)
|
|
2
27
|
|
|
3
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agnostack/verifyd",
|
|
3
|
-
"version": "2.5.0
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"author": "agnoStack Dev <developers@agnostack.com> (https://agnostack.com)",
|
|
5
5
|
"owner": "agnoStack",
|
|
6
6
|
"description": "Please contact agnoStack via info@agnostack.com for any questions",
|