Skip to content

Commit e873144

Browse files
authored
Merge pull request #448 from dajiaji/bump-to-1_6_0
Bump version to 1.6.0.
2 parents 7efcd86 + 815cda5 commit e873144

File tree

12 files changed

+38
-15
lines changed

12 files changed

+38
-15
lines changed

CHANGES.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changes
22

3+
## Version 1.6.0
4+
5+
Released 2024-11-04
6+
7+
- [(#445) Update dependabot.yml to check npm/package-lock.json.](https://github.com/dajiaji/hpke-js/pull/445)
8+
- [(#444) Implement X-Wing experimentally.](https://github.com/dajiaji/hpke-js/pull/444)
9+
- [(#443) Add test for serialize/deserializePrivateKey.](https://github.com/dajiaji/hpke-js/pull/443)
10+
- [(#441) Add */test/runtimes/cloudflare to npm workspaces.](https://github.com/dajiaji/hpke-js/pull/441)
11+
- [(#440) Add vscode setting.](https://github.com/dajiaji/hpke-js/pull/440)
12+
- [(#439) Refine deno task sample:node.](https://github.com/dajiaji/hpke-js/pull/439)
13+
- [(#438) Add samples to npm workspaces.](https://github.com/dajiaji/hpke-js/pull/438)
14+
- [(#437) Add \@group Error for docs.](https://github.com/dajiaji/hpke-js/pull/437)
15+
- [(#437) Remove BaseError.](https://github.com/dajiaji/hpke-js/pull/437)
16+
- [(#436) Change main docs from hpke-js to \@hpke/core.](https://github.com/dajiaji/hpke-js/pull/436)
17+
- [(#435) Remove deno.land from docs.](https://github.com/dajiaji/hpke-js/pull/435)
18+
- [(#433) Implement DhkemX4489HkdfSha512 on @hpke/core.](https://github.com/dajiaji/hpke-js/pull/433)
19+
- [(#432) Disclose base64UrlToBytes on @hpke/common.](https://github.com/dajiaji/hpke-js/pull/432)
20+
- [(#431) Implement DhkemX25519HkdfSha256 on @hpke/core.](https://github.com/dajiaji/hpke-js/pull/431)
21+
- Update devDependencies:
22+
- [(#446) Bump @noble/ciphers to 1.0.0.](https://github.com/dajiaji/hpke-js/pull/446)
23+
- [(#446) Bump @noble/hashes to 1.5.0.](https://github.com/dajiaji/hpke-js/pull/446)
24+
- [(#446) Bump @noble/curves to 1.6.0.](https://github.com/dajiaji/hpke-js/pull/446)
25+
326
## Version 1.5.0
427

528
Released 2024-10-12

SECURITY.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7+
| 1.6.x | :white_check_mark: |
78
| 1.5.x | :white_check_mark: |
8-
| 1.4.x | :white_check_mark: |
9-
| 1.3.x | :white_check_mark: |
10-
| < 1.3 | :x: |
9+
| < 1.5 | :x: |
1110

1211
## Reporting a Vulnerability
1312

packages/chacha20poly1305/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/chacha20poly1305",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/ciphers": "npm:@noble/ciphers@^1.0.0"

packages/common/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/common",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"publish": {
66
"exclude": [

packages/core/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/core",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"publish": {
66
"exclude": [

packages/dhkem-secp256k1/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/dhkem-secp256k1",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/curves": "npm:@noble/curves@^1.6.0"

packages/dhkem-x25519/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/dhkem-x25519",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/curves": "npm:@noble/curves@^1.6.0",

packages/dhkem-x448/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/dhkem-x448",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/curves": "npm:@noble/curves@^1.6.0",

packages/hpke-js/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/hpke-js",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/hashes": "npm:@noble/hashes@^1.5.0"

packages/hybridkem-x-wing/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/hybridkem-x-wing",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@dajiaji/mlkem": "jsr:@dajiaji/mlkem@^2.2.0",

packages/hybridkem-x-wing/dnt.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ await build({
2929
name: denoPkg.name,
3030
version: denoPkg.version,
3131
description:
32-
"A Hybrid Public Key Encryption (HPKE) module extension for a hybrid post-quantum KEM, X25519Kyber768Draft00",
32+
"A Hybrid Public Key Encryption (HPKE) module extension for X-Wing: general-purpose hybrid post-quantum KEM.",
3333
repository: {
3434
type: "git",
3535
url: "git+https://github.com/dajiaji/hpke-js.git",
@@ -49,11 +49,12 @@ await build({
4949
},
5050
keywords: [
5151
"hpke",
52-
"rfc9180",
53-
"kem",
52+
"ml-kem",
5453
"kyber",
5554
"x25519",
5655
"post-quantum",
56+
"pqc",
57+
"x-wing",
5758
"security",
5859
"encryption",
5960
],

packages/hybridkem-x25519-kyber768/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/hybridkem-x25519-kyber768",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/hashes": "npm:@noble/hashes@^1.5.0"

0 commit comments

Comments
 (0)