Skip to content

Commit 4e7918e

Browse files
authored
Merge pull request #101 from Hexagon/chore/bump-cbor-x-minor
Dependency chores and small fixes
2 parents c00d47e + 3ee47b4 commit 4e7918e

File tree

7 files changed

+197
-452
lines changed

7 files changed

+197
-452
lines changed

deno-lock.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"https://deno.land/std@0.135.0/fmt/colors.ts": "30455035d6d728394781c10755351742dd731e3db6771b1843f9b9e490104d37",
33
"https://deno.land/std@0.135.0/testing/_diff.ts": "9d849cd6877694152e01775b2d93f9d6b7aef7e24bfe3bfafc4d7a1ac8e9f392",
44
"https://deno.land/std@0.135.0/testing/asserts.ts": "b0ef969032882b1f7eb1c7571e313214baa1485f7b61cf35807b2434e254365c",
5-
"https://deno.land/x/b64@1.0.19/dist/base64.min.mjs": "3acdc783155891fadbd9b825aef2fc2ac7c3ce3b319bb36fa9f69d23f0bc93c1",
6-
"https://deno.land/x/cbor@v1.2.1/decode.js": "a0c37ade1fe850f28ab5e0242edd9736e4ff49dacd4663153b8db95be19ec394",
7-
"https://deno.land/x/cbor@v1.2.1/encode.js": "4fe595d024dc99806315401924238810cbfe9c45e8340887c5667c6c682202ad",
8-
"https://deno.land/x/cbor@v1.2.1/index.js?module": "4119830fb6d106ec2a369442042803d57cff13cbc76f6aefc2f871aeb6e6bef5",
9-
"https://deno.land/x/cbor@v1.2.1/iterators.js": "744e0469fe37c33bab3787608ced2f2cda014cb9352b3adbd949a2701f043aea",
5+
"https://deno.land/x/b64@1.0.20/dist/base64.min.mjs": "c3d9dd021158a46047794adb11faf5e8d2353732fa8df7991f95f2374038fab1",
6+
"https://deno.land/x/cbor@v1.3.1/decode.js": "162cacee329c7f9c79e1023456b395823c87a8349049352371fdb2a8a7cf3713",
7+
"https://deno.land/x/cbor@v1.3.1/encode.js": "ccb34fd71ce2abd73edcf8db8b4a428674af6b764154da3f6afeca6572aa3a8a",
8+
"https://deno.land/x/cbor@v1.3.1/index.js?module": "e78561860d1e9b854aa0f86fca231e3b66199946dba497c505bae4d84c9a7c3a",
9+
"https://deno.land/x/cbor@v1.3.1/iterators.js": "744e0469fe37c33bab3787608ced2f2cda014cb9352b3adbd949a2701f043aea",
1010
"https://deno.land/x/jose@v4.8.1/index.ts?module": "ca44793ef8fa35027d2179c046eabc1f5e8d1baed8c16026d02d416a715667f7",
1111
"https://deno.land/x/jose@v4.8.1/jwe/compact/decrypt.ts": "0da9a290e0e738772016ea0e5cde9784090eb26a767b876265c2228ec7e4619a",
1212
"https://deno.land/x/jose@v4.8.1/jwe/compact/encrypt.ts": "e0354463b4c37dfd42f23f5dde0bc7e67e8d84ec801ce0fb559ca1502b4556c7",
@@ -102,5 +102,5 @@
102102
"https://unpkg.com/pvtsutils@1.3.2/build/index.es.js?module": "82e3289330c5ab2b1485084ef8bc621329bf817126951252cb336e619e322ecb",
103103
"https://unpkg.com/pvutils@1.1.3/build/utils.es.js?module": "6def4dab26340f2056fde9711dbf595396b64d53c720268b9f9a73c46940206f",
104104
"https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js": "aa8c0e11667719984f284dea668a06e817244a71edf2b7f89ec9c59cca88c118",
105-
"https://unpkg.com/tldts@5.7.81/dist/index.esm.min.js": "2786a1f126cc153a67591056f757b4ebc3f31e297446b60a3eafc63117d154d5"
105+
"https://unpkg.com/tldts@5.7.82/dist/index.esm.min.js": "2786a1f126cc153a67591056f757b4ebc3f31e297446b60a3eafc63117d154d5"
106106
}

import_map.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"std/": "https://deno.land/std@0.135.0/",
66

7-
"@hexagon/base64": "https://deno.land/x/b64@1.0.19/dist/base64.min.mjs",
7+
"@hexagon/base64": "https://deno.land/x/b64@1.0.20/dist/base64.min.mjs",
88

99
"sinon": "https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js",
1010
"test_suite": "https://deno.land/x/test_suite@0.16.1/mod.ts",

import_map.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"imports": {
3-
"tldts": "https://unpkg.com/tldts@5.7.81/dist/index.esm.min.js",
3+
"tldts": "https://unpkg.com/tldts@5.7.82/dist/index.esm.min.js",
44
"punycode": "https://deno.land/x/punycode@v2.1.1/punycode.js",
55
"jose": "https://deno.land/x/jose@v4.8.1/index.ts?module",
66
"asn1js": "https://unpkg.com/asn1js@3.0.5?module",
7-
"cbor-x": "https://deno.land/x/cbor@v1.2.1/index.js?module",
7+
"cbor-x": "https://deno.land/x/cbor@v1.3.1/index.js?module",
88
"std/": "https://deno.land/std@0.135.0/",
99
"pkijs": "https://unpkg.com/pkijs@3.0.5?module",
10-
"@hexagon/base64": "https://deno.land/x/b64@1.0.19/dist/base64.min.mjs",
10+
"@hexagon/base64": "https://deno.land/x/b64@1.0.20/dist/base64.min.mjs",
1111

1212
"sinon": "https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js",
1313
"test_suite": "https://deno.land/x/test_suite@0.16.1/mod.ts",

0 commit comments

Comments
 (0)