Skip to content

Commit 421399e

Browse files
committed
dhkem-x25519: bump version to 1.6.4.
1 parent 3f4b256 commit 421399e

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.github/workflows/ci_node.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "$CHANGED_FILES"
3838
3939
# Run all tests if common, core, CI/CD files, or root files are changed
40-
if echo "$CHANGED_FILES" | grep -E '^(packages/(common|core)/|\.github/|deno\.json|\.gitignore|tsconfig\.json|npm/)'; then
40+
if echo "$CHANGED_FILES" | grep -E '^(packages/(common|core)/|\.github/|deno\.json|\.gitignore|tsconfig\.json|npm/|utils/)'; then
4141
echo "run-all=true" >> $GITHUB_OUTPUT
4242
echo "packages=[]" >> $GITHUB_OUTPUT
4343
else
@@ -96,7 +96,9 @@ jobs:
9696
with:
9797
deno-version: 2.x
9898
- name: Run package-specific node test
99-
run: deno task test:node:${{ matrix.package }}
99+
run:
100+
deno task npm
101+
deno task test:node:${{ matrix.package }}
100102
- name: Publish package to npm (dry)
101103
if: matrix.node-version != 24
102104
run: deno task dry-publish:${{ matrix.package }}

packages/dhkem-x25519/CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changes
22

3+
## Version 1.6.4
4+
5+
Released 2025-08-14
6+
7+
- [(#625) base: add deno task test:browsers.](https://github.com/dajiaji/hpke-js/pull/625)
8+
- [(#623) base: update test dependencies.](https://github.com/dajiaji/hpke-js/pull/623)
9+
- [(#622) base: add deno task update.](https://github.com/dajiaji/hpke-js/pull/622)
10+
- [(#617) base: add deno task dry-publish.](https://github.com/dajiaji/hpke-js/pull/617)
11+
- [(#616) base: add deno task minify.](https://github.com/dajiaji/hpke-js/pull/616)
12+
- [(#615) base: remove dependency on noble/hashes/sha3.](https://github.com/dajiaji/hpke-js/pull/615)
13+
- [(#614) base: add deno task npm-build.](https://github.com/dajiaji/hpke-js/pull/614)
14+
- [(#613) base: add deno task check.](https://github.com/dajiaji/hpke-js/pull/613)
15+
- [(#610) base: remove path to noble from tsconfig.json.](https://github.com/dajiaji/hpke-js/pull/610)
16+
- [(#608) dhkem-x25519: refine directory structure.](https://github.com/dajiaji/hpke-js/pull/608)
17+
- [(#603) dhkem-x25519: use curve utils in hpke/common.](https://github.com/dajiaji/hpke-js/pull/603)
18+
- [(#590) dhkem-x25519: remove dependencies on noble/hashes.](https://github.com/dajiaji/hpke-js/pull/590)
19+
- [(#589) dhkem-x25519: remove dependencies on noble/curves.](https://github.com/dajiaji/hpke-js/pull/589)
20+
- [(#565) core: add deriveKeyPair test for browsers.](https://github.com/dajiaji/hpke-js/pull/565)
21+
- [(#563) core: run secure curves test on safari.](https://github.com/dajiaji/hpke-js/pull/563)
22+
- [(#552) dhkem-x25519: use local http-server for testing on browsers.](https://github.com/dajiaji/hpke-js/pull/552)
23+
- [(#550) core: add DhkemX25519HkdfSha256 test for browsers.](https://github.com/dajiaji/hpke-js/pull/550)
24+
325
## Version 1.6.3
426

527
Released 2025-07-12

packages/dhkem-x25519/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/dhkem-x25519",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"exports": "./mod.ts",
55
"publish": {
66
"exclude": [

0 commit comments

Comments
 (0)