Skip to content

Commit

Permalink
Merge pull request #313 from dajiaji/bump-to-1_2_9
Browse files Browse the repository at this point in the history
Bump version to 1.2.9.
  • Loading branch information
dajiaji authored Aug 5, 2024
2 parents bdfde91 + c58a5b5 commit 2803aef
Show file tree
Hide file tree
Showing 13 changed files with 84 additions and 76 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
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/[email protected].8/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].8/core/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].8/x/dhkem-x25519/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].9/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].9/core/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].9/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/[email protected].8";
// import * as hpke from "https://esm.sh/@hpke/[email protected].8";
import * as hpke from "https://esm.sh/[email protected].9";
// import * as hpke from "https://esm.sh/@hpke/[email protected].9";
// ...
</script>

Expand All @@ -257,8 +257,8 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/[email protected].8/esm/mod.js";
// import * as hpke from "https://unpkg.com/@hpke/[email protected].8/esm/mod.js";
import * as hpke from "https://unpkg.com/[email protected].9/esm/mod.js";
// import * as hpke from "https://unpkg.com/@hpke/[email protected].9/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/[email protected].8/mod.ts";
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/[email protected].9/mod.ts";
// import {
// Aes128Gcm, CipherSuite, HkdfSha256,
// } from "https://deno.land/x/[email protected].8/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].8/x/dhkem-x25519/mod.ts";
// } from "https://deno.land/x/[email protected].9/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].9/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/[email protected].8";
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/[email protected].9";
// import {
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
// } from "@hpke/[email protected].8";
// } from "@hpke/[email protected].9";
globalThis.doHpke = async () => {
try {
Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
| Version | Supported |
| ------- | ------------------ |
| 1.2.x | :white_check_mark: |
| 1.2.8 | :x: |
| 0.22.x | :white_check_mark: |
| < 1.2 | :x: |
| < 0.22 | :x: |
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/[email protected].8/core/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].9/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/[email protected].8";
import * as hpke from "https://esm.sh/@hpke/[email protected].9";
// ...
</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/[email protected].8/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -149,7 +149,7 @@ try {
```js
import {
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://deno.land/x/[email protected].8/core/mod.ts";
} from "https://deno.land/x/[email protected].9/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/[email protected].8";
// import * as hpke from "https://esm.sh/[email protected].9";
import {
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://esm.sh/@hpke/[email protected].8";
} from "https://esm.sh/@hpke/[email protected].9";
globalThis.doHpke = async () => {
Expand Down
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/[email protected].8/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].8/x/dhkem-x25519/mod.ts";
// } from "https://deno.land/x/[email protected].9/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].9/x/dhkem-x25519/mod.ts";
import {
AeadId,
CipherSuite,
KdfId,
KemId,
} from "https://deno.land/x/[email protected].8/mod.ts";
} from "https://deno.land/x/[email protected].9/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 <[email protected]> (https://github.com/dajiaji)",
"license": "MIT",
"dependencies": {
"@hpke/core": "^1.2.8",
"@hpke/dhkem-x25519": "^1.2.8"
"@hpke/core": "^1.2.9",
"@hpke/dhkem-x25519": "^1.2.9"
}
}
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 <[email protected]> (https://github.com/dajiaji)",
"license": "MIT",
"dependencies": {
"@hpke/core": "^1.2.8",
"@hpke/core": "^1.2.9",
"ts-node": "^10.7.0"
}
}
2 changes: 1 addition & 1 deletion samples/ts-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@hpke/core": "^1.2.8"
"@hpke/core": "^1.2.9"
}
}
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/[email protected].8/core/mod.ts";
import * as chacha20 from "https://deno.land/x/[email protected].8/x/chacha20poly1305/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].9/core/mod.ts";
import * as chacha20 from "https://deno.land/x/[email protected].9/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/[email protected].8";
import * as chacha20 from "https://esm.sh/@hpke/[email protected].8";
import * as hpke from "https://esm.sh/@hpke/[email protected].9";
import * as chacha20 from "https://esm.sh/@hpke/[email protected].9";
// ...
</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/[email protected].8/esm/mod.js";
import * as chacha20 from "https://unpkg.com/@hpke/[email protected].8/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
import * as chacha20 from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -149,8 +149,8 @@ try {
```js
import {
CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://deno.land/x/[email protected].8/core/mod.ts";
import { Chacha20Poly1305 } from "https://deno.land/x/[email protected].8/x/chacha20poly1305/mod.ts";
} from "https://deno.land/x/[email protected].9/core/mod.ts";
import { Chacha20Poly1305 } from "https://deno.land/x/[email protected].9/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/[email protected].8";
// import * as hpke from "https://esm.sh/[email protected].9";
import {
CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://esm.sh/@hpke/[email protected].8";
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/[email protected].8";
} from "https://esm.sh/@hpke/[email protected].9";
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/[email protected].9";
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/[email protected].8/core/mod.ts";
import * as secp256k1 from "https://deno.land/x/[email protected].8/x/dhkem-secp256k1/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].9/core/mod.ts";
import * as secp256k1 from "https://deno.land/x/[email protected].9/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/[email protected].8";
import * as secp256k1 from "https://esm.sh/@hpke/[email protected].8";
import * as hpke from "https://esm.sh/@hpke/[email protected].9";
import * as secp256k1 from "https://esm.sh/@hpke/[email protected].9";
// ...
</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/[email protected].8/esm/mod.js";
import * as secp256k1 from "https://unpkg.com/@hpke/[email protected].8/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
import * as secp256k1 from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -147,8 +147,8 @@ try {
### Deno

```js
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/[email protected].8/core/mod.ts";
import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/[email protected].8/x/dhkem-secp256k1/mod.ts";
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/[email protected].9/core/mod.ts";
import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/[email protected].9/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/[email protected].8";
import { DhkemSecp256k1HkdfSha256 } from "https://esm.sh/@hpke/[email protected].8";
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/[email protected].9";
import { DhkemSecp256k1HkdfSha256 } from "https://esm.sh/@hpke/[email protected].9";
globalThis.doHpke = async () => {
try {
Expand Down
20 changes: 10 additions & 10 deletions x/dhkem-x25519/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/[email protected].8/core/mod.ts";
import * as x25519 from "https://deno.land/x/[email protected].8/x/dhkem-x25519/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].9/core/mod.ts";
import * as x25519 from "https://deno.land/x/[email protected].9/x/dhkem-x25519/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/[email protected].8";
import * as x25519 from "https://esm.sh/@hpke/[email protected].8";
import * as hpke from "https://esm.sh/@hpke/[email protected].9";
import * as x25519 from "https://esm.sh/@hpke/[email protected].9";
// ...
</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/[email protected].8/esm/mod.js";
import * as x25519 from "https://unpkg.com/@hpke/[email protected].8/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
import * as x25519 from "https://unpkg.com/@hpke/[email protected].9/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -147,8 +147,8 @@ try {
### Deno

```js
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/[email protected].8/core/mod.ts";
import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].8/x/dhkem-x25519/mod.ts";
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/[email protected].9/core/mod.ts";
import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].9/x/dhkem-x25519/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/[email protected].8";
import { DhkemX25519HkdfSha256 } from "https://esm.sh/@hpke/[email protected].8";
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/[email protected].9";
import { DhkemX25519HkdfSha256 } from "https://esm.sh/@hpke/[email protected].9";
globalThis.doHpke = async () => {
try {
Expand Down
Loading

0 comments on commit 2803aef

Please sign in to comment.