File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 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 env :
1920 AWS_ACCESS_KEY_ID : AKIAIOSFODNN7EXAMPLE
2021 AWS_SECRET_ACCESS_KEY : wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Amazon SQS for Deno
99## Examples
1010
1111``` ts
12- import { SQSQueue } from " https://deno.land/x/sqs@0.3.3 /mod.ts" ;
12+ import { SQSQueue } from " https://deno.land/x/sqs@0.3.4 /mod.ts" ;
1313
1414// Create a queue using the queue url and credentials
1515const queue = new SQSQueue ({
Original file line number Diff line number Diff line change 1- export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@0.1.1 /mod.ts" ;
2- import { createHash } from "https://deno.land/std@0.69 .0/hash/mod.ts" ;
1+ export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@0.1.2 /mod.ts" ;
2+ import { createHash } from "https://deno.land/std@0.71 .0/hash/mod.ts" ;
33export function sha256Hex ( data : string | Uint8Array ) : string {
44 const hasher = createHash ( "sha256" ) ;
55 hasher . update ( data ) ;
Original file line number Diff line number Diff line change 11export {
22 assert ,
33 assertEquals ,
4- } from "https://deno.land/std@0.69 .0/testing/asserts.ts" ;
4+ } from "https://deno.land/std@0.71 .0/testing/asserts.ts" ;
You can’t perform that action at this time.
0 commit comments