Skip to content

Commit

Permalink
fix: Implemented stringer type of Buffer for Vec<u8> in anchor 0.26.0…
Browse files Browse the repository at this point in the history
…. Bumped did:sol client library to 3.3.0, bumped anchor-lang to 0.26.0 for programs
  • Loading branch information
rado0x54 committed Jan 5, 2023
1 parent b12953b commit 231142a
Show file tree
Hide file tree
Showing 13 changed files with 215 additions and 166 deletions.
223 changes: 184 additions & 39 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/client/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"dependencies": {
"@identity.com/cryptid": "0.3.0-alpha.11",
"@identity.com/sol-did-client": "^3.1.4",
"@identity.com/sol-did-client": "^3.3.0",
"@oclif/core": "^1.13.10",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"types": "dist/index.d.ts",
"dependencies": {
"@identity.com/cryptid-idl": "0.3.0-alpha.11",
"@identity.com/sol-did-client": "^3.1.4",
"@identity.com/sol-did-client": "^3.3.0",
"@project-serum/anchor": "^0.26.0",
"@solana/web3.js": "^1.62.0",
"ramda": "^0.28.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/client/middleware/checkDid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@identity.com/cryptid-core": "0.3.0-alpha.11",
"@identity.com/sol-did-client": "^3.1.4",
"@identity.com/sol-did-client": "^3.3.0",
"@solana/web3.js": "^1.62.0",
"bn.js": "^5.2.1"
}
Expand Down
5 changes: 2 additions & 3 deletions packages/client/middleware/checkDid/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
import { PublicKey, Transaction } from "@solana/web3.js";
import { AnchorProvider, Program } from "@project-serum/anchor";
import * as anchor from "@project-serum/anchor";
import { Bytes } from "@identity.com/sol-did-client";
import { CheckDid, CheckDidIDL } from "@identity.com/cryptid-idl";

export const CHECK_DID_MIDDLEWARE_PROGRAM_ID = new PublicKey(
Expand All @@ -18,8 +17,8 @@ export const CHECK_DID_MIDDLEWARE_PROGRAM_ID = new PublicKey(
export type VerificationMethodMatcher = {
filterFragment: string | null;
filterFlags: number | null;
filterTypes: Bytes | null;
filterKeyData: Bytes | null;
filterTypes: Buffer | null;
filterKeyData: Buffer | null;
};

export type ServiceMatcher = {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dependencies": {
"@identity.com/cryptid": "0.3.0-alpha.11",
"@identity.com/cryptid-idl": "0.3.0-alpha.11",
"@identity.com/sol-did-client": "^3.1.4",
"@identity.com/sol-did-client": "^3.3.0",
"@identity.com/solana-gatekeeper-lib": "^4.0.1",
"@identity.com/solana-gateway-ts": "^0.8.2",
"@project-serum/anchor": "^0.26.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/src/util/did.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const addKeyToDID = async (authority: Wallet, key: PublicKey) => {
const newKeyVerificationMethod = {
flags: [BitwiseVerificationMethodFlag.CapabilityInvocation],
fragment: `key${Date.now()}`, // randomise fragment name, so that we can add multiple keys in multiple tests.
keyData: key.toBytes(),
keyData: key.toBuffer(),
methodType: VerificationMethodType.Ed25519VerificationKey2018,
};

Expand Down
6 changes: 3 additions & 3 deletions programs/cryptid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = "0.25.0"
anchor-lang = "0.26.0"
bitflags = "1.3.2"
enum-display-derive = "0.1.1"
itertools = "0.10.5"
sol-did = { git = "https://github.com/identity-com/sol-did", branch = "develop", features = ["no-entrypoint"] }
#sol-did = { version = "3.1.4", features = ["no-entrypoint"] }
#sol-did = { git = "https://github.com/identity-com/sol-did", branch = "develop", features = ["no-entrypoint"] }
sol-did = { version = "3.3.0", features = ["no-entrypoint"] }
num-traits = "0.2.15"
5 changes: 3 additions & 2 deletions programs/middleware/check_did/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = "0.25.0"
anchor-lang = "0.26.0"
cryptid = { path = "../../cryptid", features = ["no-entrypoint", "cpi"] }
num-traits = "0.2.15"
sol-did = { git = "https://github.com/identity-com/sol-did", branch = "develop", features = ["no-entrypoint"] }
#sol-did = { git = "https://github.com/identity-com/sol-did", branch = "develop", features = ["no-entrypoint"] }
sol-did = { version = "3.3.0", features = ["no-entrypoint"] }
solana-gateway = "0.2.0"
5 changes: 3 additions & 2 deletions programs/middleware/check_pass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = "0.25.0"
anchor-lang = "0.26.0"
cryptid = { path = "../../cryptid", features = ["no-entrypoint", "cpi"] }
num-traits = "0.2.15"
sol-did = { git = "https://github.com/identity-com/sol-did", branch = "develop", features = ["no-entrypoint"] }
#sol-did = { git = "https://github.com/identity-com/sol-did", branch = "develop", features = ["no-entrypoint"] }
sol-did = { version = "3.3.0", features = ["no-entrypoint"] }
solana-gateway = "0.2.0"
4 changes: 2 additions & 2 deletions programs/middleware/check_recipient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = "0.25.0"
cryptid = { path = "../../cryptid", features = ["no-entrypoint", "cpi"] }
anchor-lang = "0.26.0"
cryptid = { path = "../../cryptid", features = ["no-entrypoint", "cpi"] }
4 changes: 2 additions & 2 deletions programs/middleware/time_delay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = "0.25.0"
cryptid = { path = "../../cryptid", features = ["no-entrypoint", "cpi"] }
anchor-lang = "0.26.0"
cryptid = { path = "../../cryptid", features = ["no-entrypoint", "cpi"] }
119 changes: 11 additions & 108 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"

"@ethersproject/[email protected]", "@ethersproject/sha2@^5.5.0", "@ethersproject/sha2@^5.7.0":
"@ethersproject/[email protected]", "@ethersproject/sha2@^5.7.0":
version "5.7.0"
resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb"
integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==
Expand Down Expand Up @@ -1543,16 +1543,16 @@
did-resolver "^3.0.1"
ramda "^0.27.1"

"@identity.com/sol-did-client@^3.1.4":
version "3.1.4"
resolved "https://registry.yarnpkg.com/@identity.com/sol-did-client/-/sol-did-client-3.1.4.tgz#8902329ce0aaa09fd18c4d6d4da394a45006ca81"
integrity sha512-DRzSi3SlFm71+9MIguHN/1oM459StW1QENHLQaxBF03rKMu1M62IYZEbryjrr9S3WzUkgQXph6G3tPuq/gXGUw==
"@identity.com/sol-did-client@^3.3.0":
version "3.3.0"
resolved "https://registry.yarnpkg.com/@identity.com/sol-did-client/-/sol-did-client-3.3.0.tgz#05df2f37d0d4c19b4eeeacde7842f552b0c5d0a2"
integrity sha512-v/hPHocEG0eaWyOUvLIMcl8+EDVXNFxX4EHInn/UsFpTrjg73ZIcPTEylWlRBF4mvBf1Qt7CuV60jK6H36GfNQ==
dependencies:
"@ethersproject/address" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@identity.com/sol-did-client-legacy" "^2.0.4"
"@identity.com/sol-did-idl" "^3.1.0"
"@project-serum/anchor" "0.25.0"
"@project-serum/anchor" "0.26.0"
"@solana/web3.js" "^1.59.1"
bs58 "^5.0.0"
did-resolver "^3.2.2"
Expand Down Expand Up @@ -2056,28 +2056,7 @@
resolved "https://registry.yarnpkg.com/@project-serum/anchor-cli/-/anchor-cli-0.26.0.tgz#f0d28b1e798fe773847b2e093beada333728697d"
integrity sha512-5AQ47nCfFjxXXyW0tkZFpYERvJ6i7/tfFFek76HGdamWxUXq54Qtzv2GoYADj+Nkclmo8BlrQptPWOBS/Z3MdQ==

"@project-serum/[email protected]":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@project-serum/anchor/-/anchor-0.25.0.tgz#88ee4843336005cf5a64c80636ce626f0996f503"
integrity sha512-E6A5Y/ijqpfMJ5psJvbw0kVTzLZFUcOFgs6eSM2M2iWE1lVRF18T6hWZVNl6zqZsoz98jgnNHtVGJMs+ds9A7A==
dependencies:
"@project-serum/borsh" "^0.2.5"
"@solana/web3.js" "^1.36.0"
base64-js "^1.5.1"
bn.js "^5.1.2"
bs58 "^4.0.1"
buffer-layout "^1.2.2"
camelcase "^5.3.1"
cross-fetch "^3.1.5"
crypto-hash "^1.3.0"
eventemitter3 "^4.0.7"
js-sha256 "^0.9.0"
pako "^2.0.3"
snake-case "^3.0.4"
superstruct "^0.15.4"
toml "^3.0.0"

"@project-serum/anchor@^0.26.0":
"@project-serum/[email protected]", "@project-serum/anchor@^0.26.0":
version "0.26.0"
resolved "https://registry.yarnpkg.com/@project-serum/anchor/-/anchor-0.26.0.tgz#99e15a3923a5d10514f8185b2d3909e5699d60d5"
integrity sha512-Nq+COIjE1135T7qfnOHEn7E0q39bQTgXLFk837/rgFe6Hkew9WML7eHsS+lSYD2p3OJaTiUOHTAq1lHy36oIqQ==
Expand All @@ -2098,14 +2077,6 @@
superstruct "^0.15.4"
toml "^3.0.0"

"@project-serum/borsh@^0.2.5":
version "0.2.5"
resolved "https://registry.yarnpkg.com/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663"
integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q==
dependencies:
bn.js "^5.1.2"
buffer-layout "^1.2.0"

"@rushstack/eslint-patch@^1.1.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728"
Expand Down Expand Up @@ -2181,29 +2152,6 @@
rpc-websockets "^7.5.0"
superstruct "^0.14.2"

"@solana/web3.js@^1.36.0":
version "1.53.0"
resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.53.0.tgz#24a6341e4026fc2b993656141361c54bec917c07"
integrity sha512-QyQDA9U5b+AiTo1ANsj9WihWWECeLv6VRpiTE7xPe5hLYANXZYecnlLglNiEzVgRg/jLvR5DrCISXhHx/mAEJw==
dependencies:
"@babel/runtime" "^7.12.5"
"@ethersproject/sha2" "^5.5.0"
"@solana/buffer-layout" "^4.0.0"
bigint-buffer "^1.1.5"
bn.js "^5.0.0"
borsh "^0.7.0"
bs58 "^4.0.1"
buffer "6.0.1"
fast-stable-stringify "^1.0.0"
jayson "^3.4.4"
js-sha3 "^0.8.0"
node-fetch "2"
react-native-url-polyfill "^1.3.0"
rpc-websockets "^7.5.0"
secp256k1 "^4.0.2"
superstruct "^0.14.2"
tweetnacl "^1.0.3"

"@solana/web3.js@^1.59.1":
version "1.62.1"
resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.62.1.tgz#b0f98a033086016741fd6335548e92262964ac48"
Expand Down Expand Up @@ -3239,7 +3187,7 @@ [email protected]:
base64-js "^1.3.1"
ieee754 "^1.2.1"

buffer@^5.4.3, buffer@^5.5.0:
buffer@^5.5.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
Expand Down Expand Up @@ -3333,11 +3281,6 @@ callsites@^3.0.0:
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==

camelcase@^5.3.1:
version "5.3.1"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==

camelcase@^6.0.0, camelcase@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
Expand Down Expand Up @@ -3919,7 +3862,7 @@ electron-to-chromium@^1.4.251:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.255.tgz#dc52d1095b876ed8acf25865db10265b02b1d6e1"
integrity sha512-H+mFNKow6gi2P5Gi2d1Fvd3TUEJlB9CF7zYaIV9T83BE3wP1xZ0mRPbNTm0KUjyd1QiVy7iKXuIcjlDtBQMiAQ==

[email protected], elliptic@^6.5.4:
[email protected]:
version "6.5.4"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
Expand Down Expand Up @@ -6158,19 +6101,14 @@ nock@^13.0.0:
lodash "^4.17.21"
propagate "^2.0.0"

node-addon-api@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32"
integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==

node-fetch@2, [email protected], node-fetch@^2.6.7:
version "2.6.7"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
dependencies:
whatwg-url "^5.0.0"

node-gyp-build@^4.2.0, node-gyp-build@^4.3.0:
node-gyp-build@^4.3.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40"
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
Expand Down Expand Up @@ -6776,7 +6714,7 @@ [email protected]:
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==

punycode@^2.1.0, punycode@^2.1.1:
punycode@^2.1.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
Expand Down Expand Up @@ -6832,13 +6770,6 @@ react-is@^16.13.1:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==

react-native-url-polyfill@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/react-native-url-polyfill/-/react-native-url-polyfill-1.3.0.tgz#c1763de0f2a8c22cc3e959b654c8790622b6ef6a"
integrity sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==
dependencies:
whatwg-url-without-unicode "8.0.0-3"

read-cmd-shim@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-3.0.1.tgz#868c235ec59d1de2db69e11aec885bc095aea087"
Expand Down Expand Up @@ -7145,15 +7076,6 @@ [email protected]:
resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312"
integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==

secp256k1@^4.0.2:
version "4.0.3"
resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303"
integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==
dependencies:
elliptic "^6.5.4"
node-addon-api "^2.0.0"
node-gyp-build "^4.2.0"

"semver@2 || 3 || 4 || 5", semver@^5.5.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
Expand Down Expand Up @@ -7767,11 +7689,6 @@ tunnel-agent@^0.6.0:
dependencies:
safe-buffer "^5.0.1"

tweetnacl@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596"
integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==

type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
Expand Down Expand Up @@ -8037,20 +7954,6 @@ webidl-conversions@^3.0.0:
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==

webidl-conversions@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==

[email protected]:
version "8.0.0-3"
resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b"
integrity sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==
dependencies:
buffer "^5.4.3"
punycode "^2.1.1"
webidl-conversions "^5.0.0"

whatwg-url@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
Expand Down

0 comments on commit 231142a

Please sign in to comment.