Skip to content

Commit 1e2217f

Browse files
authored
chore: update Deno to 1.4.2 and std to 0.71.0 (#5)
1 parent 52eed3b commit 1e2217f

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
deno-version: [v1.4.0, nightly]
15+
deno-version: [v1.4.2, nightly]
1616
unstable: [false, true]
17-
no-check: [false, true]
17+
# FIXME(lucacasonato): temporarially disable no-check testing (see https://github.com/denoland/deno/issues/7709)
18+
no-check: [false]
1819
steps:
1920
- name: Setup Deno environment
2021
uses: denolib/[email protected]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# deno_aws_sign_v4
22

33
![ci](https://github.com/lucacasonato/deno_aws_sign_v4/workflows/ci/badge.svg)
4-
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].1/mod.ts)
4+
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].2/mod.ts)
55

66
Generates AWS Signature V4 for AWS low-level REST APIs.
77

@@ -15,7 +15,7 @@ The below example will generate signed headers based on the region and credentia
1515
- AWS_REGION
1616

1717
```typescript
18-
import { AWSSignerV4 } from "https://deno.land/x/[email protected].1/mod.ts";
18+
import { AWSSignerV4 } from "https://deno.land/x/[email protected].2/mod.ts";
1919

2020
const signer = new AWSSignerV4();
2121
const body = new TextEncoder().encode("Hello World!");

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export { hmac } from "https://denopkg.com/chiefbiiko/[email protected]/mod.ts";
22

3-
import { createHash } from "https://deno.land/std@0.69.0/hash/mod.ts";
3+
import { createHash } from "https://deno.land/std@0.71.0/hash/mod.ts";
44
export function sha256Hex(data: string | Uint8Array): string {
55
const hasher = createHash("sha256");
66
hasher.update(data);

mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { AWSSignerV4 } from "./mod.ts";
22
import {
33
assertEquals,
44
assertStringContains,
5-
} from "https://deno.land/std@0.69.0/testing/asserts.ts";
5+
} from "https://deno.land/std@0.71.0/testing/asserts.ts";
66

77
Deno.test("construct from env vars", async () => {
88
Deno.env.set("AWS_ACCESS_KEY_ID", "examplekey");

0 commit comments

Comments
 (0)