Skip to content

Commit

Permalink
Merge pull request #288 from dajiaji/v1_2_4
Browse files Browse the repository at this point in the history
Bump version to 1.2.4.
  • Loading branch information
dajiaji authored Nov 4, 2023
2 parents 0eb8358 + 3cad07b commit a706b35
Show file tree
Hide file tree
Showing 15 changed files with 110 additions and 102 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_bun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.36.0
deno-version: v1.x
- uses: actions/setup-node@v3
with:
node-version: v20.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_cloudflare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.36.0
deno-version: v1.x
- uses: actions/setup-node@v3
with:
node-version: v20.x
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changes

## Version 1.2.4

Released 2023-11-05

- [(#288) Unlock the version of Deno on CI for cloudflare workers and bun.](https://github.com/dajiaji/hpke-js/pull/288)
- [(#288) Bump @noble/ciphers to 0.4.0.](https://github.com/dajiaji/hpke-js/pull/288)
- [(#285) Add test for bidirectional encryption.](https://github.com/dajiaji/hpke-js/pull/285)

## Version 1.2.3

Released 2023-09-09
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/hpke@1.2.3/mod.ts";
// import * as hpke from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
// import * as hpke from "https://deno.land/x/hpke@1.2.3/x/dhkem-x25519/mod.ts";
import * as hpke from "https://deno.land/x/hpke@1.2.4/mod.ts";
// import * as hpke from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
// import * as hpke from "https://deno.land/x/hpke@1.2.4/x/dhkem-x25519/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/mod.ts";
Expand All @@ -239,8 +239,8 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/hpke-js@1.2.3";
// import * as hpke from "https://esm.sh/@hpke/core@1.2.3";
import * as hpke from "https://esm.sh/hpke-js@1.2.4";
// import * as hpke from "https://esm.sh/@hpke/core@1.2.4";
// ...
</script>

Expand All @@ -257,8 +257,8 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/hpke-js@1.2.3/esm/mod.js";
// import * as hpke from "https://unpkg.com/@hpke/core@1.2.3/esm/mod.js";
import * as hpke from "https://unpkg.com/hpke-js@1.2.4/esm/mod.js";
// import * as hpke from "https://unpkg.com/@hpke/core@1.2.4/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -338,11 +338,11 @@ try {
Deno:

```js
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/hpke@1.2.3/mod.ts";
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/hpke@1.2.4/mod.ts";
// import {
// Aes128Gcm, CipherSuite, HkdfSha256,
// } from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.3/x/dhkem-x25519/mod.ts";
// } from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.4/x/dhkem-x25519/mod.ts";

async function doHpke() {
// setup
Expand Down Expand Up @@ -425,10 +425,10 @@ Browsers:
<head></head>
<body>
<script type="module">
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/hpke-js@1.2.3";
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/hpke-js@1.2.4";
// import {
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
// } from "@hpke/core@1.2.3";
// } from "@hpke/core@1.2.4";
globalThis.doHpke = async () => {
try {
Expand Down
12 changes: 6 additions & 6 deletions core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
import * as hpke from "https://deno.land/x/hpke@1.2.4/core/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
Expand All @@ -60,7 +60,7 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/@hpke/core@1.2.3";
import * as hpke from "https://esm.sh/@hpke/core@1.2.4";
// ...
</script>

Expand All @@ -76,7 +76,7 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/@hpke/core@1.2.3/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/core@1.2.4/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -149,7 +149,7 @@ try {
```js
import {
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
} from "https://deno.land/x/hpke@1.2.4/core/mod.ts";

async function doHpke() {
// setup
Expand Down Expand Up @@ -194,10 +194,10 @@ try {
<head></head>
<body>
<script type="module">
// import * as hpke from "https://esm.sh/hpke-js@1.2.3";
// import * as hpke from "https://esm.sh/hpke-js@1.2.4";
import {
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://esm.sh/@hpke/core@1.2.3";
} from "https://esm.sh/@hpke/core@1.2.4";
globalThis.doHpke = async () => {
Expand Down
48 changes: 24 additions & 24 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions samples/deno/app.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// import {
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
// } from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.3/x/dhkem-x25519/mod.ts";
// } from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.4/x/dhkem-x25519/mod.ts";
import {
AeadId,
CipherSuite,
KdfId,
KemId,
} from "https://deno.land/x/hpke@1.2.3/mod.ts";
} from "https://deno.land/x/hpke@1.2.4/mod.ts";

async function doHpke() {
const suite = new CipherSuite({
Expand Down
4 changes: 2 additions & 2 deletions samples/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "Ajitomi Daisuke <ajitomi@gmail.com> (https://github.com/dajiaji)",
"license": "MIT",
"dependencies": {
"@hpke/core": "^1.2.3",
"@hpke/dhkem-x25519": "^1.2.3"
"@hpke/core": "^1.2.4",
"@hpke/dhkem-x25519": "^1.2.4"
}
}
2 changes: 1 addition & 1 deletion samples/ts-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Ajitomi Daisuke <ajitomi@gmail.com> (https://github.com/dajiaji)",
"license": "MIT",
"dependencies": {
"@hpke/core": "^1.2.3",
"@hpke/core": "^1.2.4",
"ts-node": "^10.7.0"
}
}
2 changes: 1 addition & 1 deletion src/aeads/chacha20Poly1305.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-ignore: for "npm:"
import { chacha20poly1305 } from "npm:@noble/ciphers@0.3.0/chacha";
import { chacha20poly1305 } from "npm:@noble/ciphers@0.4.0/chacha";

import type { AeadEncryptionContext } from "../interfaces/aeadEncryptionContext.ts";
import type { AeadInterface } from "../interfaces/aeadInterface.ts";
Expand Down
22 changes: 11 additions & 11 deletions x/chacha20poly1305/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
import * as chacha20 from "https://deno.land/x/hpke@1.2.3/x/chacha20poly1305/mod.ts";
import * as hpke from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
import * as chacha20 from "https://deno.land/x/hpke@1.2.4/x/chacha20poly1305/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
Expand All @@ -63,8 +63,8 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/@hpke/core@1.2.3";
import * as chacha20 from "https://esm.sh/@hpke/chacha20poly1305@1.2.3";
import * as hpke from "https://esm.sh/@hpke/core@1.2.4";
import * as chacha20 from "https://esm.sh/@hpke/chacha20poly1305@1.2.4";
// ...
</script>

Expand All @@ -81,8 +81,8 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/@hpke/core@1.2.3/esm/mod.js";
import * as chacha20 from "https://unpkg.com/@hpke/chacha20poly1305@1.2.3/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/core@1.2.4/esm/mod.js";
import * as chacha20 from "https://unpkg.com/@hpke/chacha20poly1305@1.2.4/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -149,8 +149,8 @@ try {
```js
import {
CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.2.3/x/chacha20poly1305/mod.ts";
} from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.2.4/x/chacha20poly1305/mod.ts";

async function doHpke() {
// setup
Expand Down Expand Up @@ -195,11 +195,11 @@ try {
<head></head>
<body>
<script type="module">
// import * as hpke from "https://esm.sh/hpke-js@1.2.3";
// import * as hpke from "https://esm.sh/hpke-js@1.2.4";
import {
CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://esm.sh/@hpke/core@1.2.3";
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/chacha20poly1305@1.2.3";
} from "https://esm.sh/@hpke/core@1.2.4";
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/chacha20poly1305@1.2.4";
globalThis.doHpke = async () => {
try {
Expand Down
20 changes: 10 additions & 10 deletions x/dhkem-secp256k1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
import * as secp256k1 from "https://deno.land/x/hpke@1.2.3/x/dhkem-secp256k1/mod.ts";
import * as hpke from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
import * as secp256k1 from "https://deno.land/x/hpke@1.2.4/x/dhkem-secp256k1/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
Expand All @@ -63,8 +63,8 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/@hpke/core@1.2.3";
import * as secp256k1 from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.3";
import * as hpke from "https://esm.sh/@hpke/core@1.2.4";
import * as secp256k1 from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.4";
// ...
</script>

Expand All @@ -81,8 +81,8 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/@hpke/core@1.2.3/esm/mod.js";
import * as secp256k1 from "https://unpkg.com/@hpke/dhkem-secp256k1@1.2.3/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/core@1.2.4/esm/mod.js";
import * as secp256k1 from "https://unpkg.com/@hpke/dhkem-secp256k1@1.2.4/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -147,8 +147,8 @@ try {
### Deno

```js
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/hpke@1.2.3/core/mod.ts";
import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/hpke@1.2.3/x/dhkem-secp256k1/mod.ts";
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/hpke@1.2.4/core/mod.ts";
import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/hpke@1.2.4/x/dhkem-secp256k1/mod.ts";

async function doHpke() {
// setup
Expand Down Expand Up @@ -193,8 +193,8 @@ try {
<head></head>
<body>
<script type="module">
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.3";
import { DhkemSecp256k1HkdfSha256 } from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.3";
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.4";
import { DhkemSecp256k1HkdfSha256 } from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.4";
globalThis.doHpke = async () => {
try {
Expand Down
Loading

0 comments on commit a706b35

Please sign in to comment.