From c58a5b5e82a319f49ebfc685921db91c907140a8 Mon Sep 17 00:00:00 2001 From: Ajitomi Daisuke Date: Mon, 5 Aug 2024 19:58:55 +0900 Subject: [PATCH] Bump version to 1.2.9. --- CHANGES.md | 7 +++++++ README.md | 24 ++++++++++++------------ SECURITY.md | 1 + core/README.md | 12 ++++++------ samples/deno/app.ts | 6 +++--- samples/node/package.json | 4 ++-- samples/ts-node/package.json | 2 +- samples/ts-webpack/package.json | 2 +- x/chacha20poly1305/README.md | 22 +++++++++++----------- x/dhkem-secp256k1/README.md | 20 ++++++++++---------- x/dhkem-x25519/README.md | 20 ++++++++++---------- x/dhkem-x448/README.md | 20 ++++++++++---------- x/hybridkem-x25519-kyber768/README.md | 20 ++++++++++---------- 13 files changed, 84 insertions(+), 76 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 84f9a818b..d1a287b16 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## Version 1.2.9 + +Released 2024-08-05 + +- Update devDependencies: + - [(#311) Bump dnt to 0.41.2.](https://github.com/dajiaji/hpke-js/pull/311) + ## Version 1.2.8 Released 2024-08-04 diff --git a/README.md b/README.md index ddbad2c04..7d09bc860 100644 --- a/README.md +++ b/README.md @@ -219,9 +219,9 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.2.8/mod.ts"; -// import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -// import * as hpke from "https://deno.land/x/hpke@1.2.8/x/dhkem-x25519/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.2.9/mod.ts"; +// import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +// import * as hpke from "https://deno.land/x/hpke@1.2.9/x/dhkem-x25519/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/mod.ts"; @@ -239,8 +239,8 @@ Using esm.sh: ```html @@ -257,8 +257,8 @@ Using unpkg: ```html ``` @@ -338,11 +338,11 @@ try { Deno: ```js -import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/hpke@1.2.8/mod.ts"; +import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/hpke@1.2.9/mod.ts"; // import { // Aes128Gcm, CipherSuite, HkdfSha256, -// } from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-x25519/mod.ts"; +// } from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-x25519/mod.ts"; async function doHpke() { // setup @@ -425,10 +425,10 @@ Browsers: @@ -76,7 +76,7 @@ Using unpkg: ```html ``` @@ -149,7 +149,7 @@ try { ```js import { Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256, -} from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; +} from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; async function doHpke() { // setup @@ -194,10 +194,10 @@ try { @@ -81,8 +81,8 @@ Using unpkg: ```html ``` @@ -149,8 +149,8 @@ try { ```js import { CipherSuite, DhkemP256HkdfSha256, HkdfSha256, -} from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.2.8/x/chacha20poly1305/mod.ts"; +} from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.2.9/x/chacha20poly1305/mod.ts"; async function doHpke() { // setup @@ -195,11 +195,11 @@ try { @@ -81,8 +81,8 @@ Using unpkg: ```html ``` @@ -147,8 +147,8 @@ try { ### Deno ```js -import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-secp256k1/mod.ts"; +import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-secp256k1/mod.ts"; async function doHpke() { // setup @@ -193,8 +193,8 @@ try { @@ -81,8 +81,8 @@ Using unpkg: ```html ``` @@ -147,8 +147,8 @@ try { ### Deno ```js -import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-x25519/mod.ts"; +import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-x25519/mod.ts"; async function doHpke() { // setup @@ -193,8 +193,8 @@ try { @@ -81,8 +81,8 @@ Using unpkg: ```html ``` @@ -147,8 +147,8 @@ try { ### Deno ```js -import { KdfId, AeadId, CipherSuite } from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -import { DhkemX448HkdfSha512 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-x448/mod.ts"; +import { KdfId, AeadId, CipherSuite } from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +import { DhkemX448HkdfSha512 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-x448/mod.ts"; async function doHpke() { // setup @@ -193,8 +193,8 @@ try { @@ -82,8 +82,8 @@ Using unpkg: ```html ``` @@ -148,8 +148,8 @@ try { ### Deno ```js -import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/core/mod.ts"; -import { HybridkemX25519Kyber768 } from "https://deno.land/x/hpke@1.2.8/x/hybridkem-x25519-kyber768/mod.ts"; +import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/core/mod.ts"; +import { HybridkemX25519Kyber768 } from "https://deno.land/x/hpke@1.2.9/x/hybridkem-x25519-kyber768/mod.ts"; async function doHpke() { // setup @@ -194,8 +194,8 @@ try {