Skip to content

Commit bddddea

Browse files
devversionmmalerba
authored andcommitted
build: fix e2e tests failing due to chromedriver release (#14461) (#14475)
Apparently the webdriver-manager always uses the _latest_ version of the chromedriver. This is problematic because the CI does not always use the latest chrome version that _works_ with the chromedriver from `webdriver-manager`. In order to fix this, we lock the webdriver manager version to a specific version. Similarly to how it's done for `angular/angular`. Note that this also restricts which Chrome versions can be run locally with the e2e tests, but the chromedriver range seems to always cover at least the latest two versions (which works for us)
1 parent 0ce6bda commit bddddea

File tree

4 files changed

+17
-162
lines changed

4 files changed

+17
-162
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ var_8: &copy_bazel_config
5757
var_9: &docker-firefox-image
5858
# TODO(devversion): Temporarily use a image that includes Firefox 62 because the
5959
# ngcontainer image does include an old Firefox version that does not support headless.
60-
# See the PR that fixes this: https://github.com/angular/angular/pull/26435
61-
- image: circleci/node:10.12-browsers
60+
# TODO(devversion): Update to 11.4.0 once Nunjucks supports Node versions higher than v11.1.0
61+
# See: https://github.com/mozilla/nunjucks/pull/1169
62+
- image: circleci/node:11.1.0-browsers
6263

6364
# Attaches the release output which has been stored in the workspace to the current job.
6465
# https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
"conventional-changelog": "^3.0.5",
8585
"dgeni": "^0.4.10",
8686
"dgeni-packages": "^0.26.12",
87-
"firebase": "^5.5.2",
8887
"firebase-admin": "^5.0.0",
8988
"firebase-tools": "^4.1.0",
9089
"fs-extra": "^3.0.1",

tools/gulp/tasks/e2e.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ task(':watch:e2eapp', () => {
8585

8686
/** Ensures that protractor and webdriver are set up to run. */
8787
task(':test:protractor:setup', execNodeTask(
88-
// Disable download of the gecko selenium driver because otherwise the webdriver
89-
// manager queries GitHub for the latest version and will result in rate limit failures.
90-
'protractor', 'webdriver-manager', ['update', '--gecko', 'false']));
88+
// Disable download of the gecko selenium driver because otherwise the webdriver-manager
89+
// queries GitHub for the latest version and will result in rate limit failures. Also explicitly
90+
// specify the chromedriver version that corresponds to the Chrome version used within CircleCI.
91+
'protractor', 'webdriver-manager', ['update', '--gecko', 'false', '--versions.chrome', '2.43']));
9192

9293
/** Runs protractor tests (assumes that server is already running. */
9394
task(':test:protractor', execNodeTask('protractor', [PROTRACTOR_CONFIG_PATH]));

yarn.lock

Lines changed: 10 additions & 156 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.3.2.tgz#a92dc544290e2893bd8c02a81e684dae3d8e7c85"
306306
integrity sha512-ZD8lTgW07NGgo75bTyBJA8Lt9+NweNzot7lrsBtIvfciwUzaFJLsv2EShqjBeuhF7RpG6YFucJ6m67w5buCtzw==
307307

308-
"@firebase/app@0.3.4", "@firebase/app@^0.3.1":
308+
"@firebase/app@^0.3.1":
309309
version "0.3.4"
310310
resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.3.4.tgz#610c931bac191598b383812b36c1d2cc52316d31"
311311
integrity sha512-Q6sNpWZ3x+FeuBkLCCRrsOraGJOKVLUCc9Amj8zu2vAC1v2uWifRR6kZ60TrpaIxtY4N6pcPTaG0YIUT5lgeSA==
@@ -316,24 +316,12 @@
316316
tslib "1.9.0"
317317
xmlhttprequest "1.8.0"
318318

319-
"@firebase/auth-types@0.3.4":
320-
version "0.3.4"
321-
resolved "https://registry.yarnpkg.com/@firebase/auth-types/-/auth-types-0.3.4.tgz#253b1b2d9b520a0b945d4617c8418f0f19a4159f"
322-
integrity sha512-0r3gSQk9jw5orFHCTUIgao0zan6dHt2J0BO3t/uEzbod+uwqvUn/gh+yg+kK6HX92Fg8E7y030KX4Bw/aXt0Ew==
323-
324-
"@firebase/auth@0.7.7":
325-
version "0.7.7"
326-
resolved "https://registry.yarnpkg.com/@firebase/auth/-/auth-0.7.7.tgz#1bcdf153e2761b88ad9f848b674a2dca69b8cb37"
327-
integrity sha512-yGKtsWHLVtW/hUjy3hsqslCa7r/PAasJxXa64fOnonW0yXs56hOV7gAobgorsSI0aUXowdf2OR8pedQG/+xUtw==
328-
dependencies:
329-
"@firebase/auth-types" "0.3.4"
330-
331319
"@firebase/database-types@0.3.2":
332320
version "0.3.2"
333321
resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.3.2.tgz#70611a64dd460e0e253c7427f860d56a1afd86fe"
334322
integrity sha512-9ZYdvYQ6r3aaHJarhUM5Hf6lQWu3ZJme+RR0o8qfBb9L04TL3uNjt+AJFku1ysVPntTn+9GqJjiIB2/OC3JtwA==
335323

336-
"@firebase/database@0.3.6", "@firebase/database@^0.3.1":
324+
"@firebase/database@^0.3.1":
337325
version "0.3.6"
338326
resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.3.6.tgz#95167bc5d8454ade1619e6b74b823b08370ff2d1"
339327
integrity sha512-r02JOqTLcd2/qn7QkkJvIAxMiMxmeyd5B76kl9hHAs+3cil5mUzHnI3svtb4h0VIJYDHFKJMlVl/bE3GfcTR3A==
@@ -344,90 +332,18 @@
344332
faye-websocket "0.11.1"
345333
tslib "1.9.0"
346334

347-
"@firebase/firestore-types@0.7.0":
348-
version "0.7.0"
349-
resolved "https://registry.yarnpkg.com/@firebase/firestore-types/-/firestore-types-0.7.0.tgz#bded7892868cf6b189a121d0f0cec468f1609995"
350-
integrity sha512-jyKRcKnSh3CSEPL4xGOZNoOXEiv7YmFK/JEcdd/4cAH17/Xo+Pk67gk1E648LRKh6QPghgNvzNTY5R10mKbQNw==
351-
352-
"@firebase/firestore@0.8.3":
353-
version "0.8.3"
354-
resolved "https://registry.yarnpkg.com/@firebase/firestore/-/firestore-0.8.3.tgz#c62e3fc636425418f297fe72b23fcde86008424d"
355-
integrity sha512-g9Tcr7uj0Io7IcKu/oJafWS7X6suEK1KjtsOqUtiBOf38/28CR736QTmuzIqX/Zy8KhPa34Wa8oRuPhG+y96DA==
356-
dependencies:
357-
"@firebase/firestore-types" "0.7.0"
358-
"@firebase/logger" "0.1.1"
359-
"@firebase/webchannel-wrapper" "0.2.10"
360-
grpc "1.13.1"
361-
tslib "1.9.0"
362-
363-
"@firebase/functions-types@0.2.0":
364-
version "0.2.0"
365-
resolved "https://registry.yarnpkg.com/@firebase/functions-types/-/functions-types-0.2.0.tgz#936d3f77957431a8ef1817975fee26464575802b"
366-
integrity sha512-q1FB3YKEAnWd+FpIL5Xn0B1BXO2IowrAdrSViXkFxNZVpp9iCzQ8Ytcbr3V1xUr3dnmoW/V7zkZJZGuwBgiVhw==
367-
368-
"@firebase/functions@0.3.1":
369-
version "0.3.1"
370-
resolved "https://registry.yarnpkg.com/@firebase/functions/-/functions-0.3.1.tgz#9b25e84176d4395946ed7a90fec9fdef8032f56a"
371-
integrity sha512-6A38x7zPU6zCTyOgGx2v+z4ugcsWnciL6YkcZXLNlCLveUmFdL0DmaW5MEBSpSOOe8kOJMl7f3aaD6lWUHNOBg==
372-
dependencies:
373-
"@firebase/functions-types" "0.2.0"
374-
"@firebase/messaging-types" "0.2.3"
375-
isomorphic-fetch "2.2.1"
376-
tslib "1.9.0"
377-
378335
"@firebase/logger@0.1.1":
379336
version "0.1.1"
380337
resolved "https://registry.yarnpkg.com/@firebase/logger/-/logger-0.1.1.tgz#af5df54253286993f4b367c3dabe569c848860d3"
381338
integrity sha512-5jn3HHbEfdOwychyIEIkP1cik+MW/vvoOavTOzwDkH+fv6Bx+HBUOzh09M7sCYzXFtKzjbUax9+g39mJNBLklQ==
382339

383-
"@firebase/messaging-types@0.2.3":
384-
version "0.2.3"
385-
resolved "https://registry.yarnpkg.com/@firebase/messaging-types/-/messaging-types-0.2.3.tgz#ed2949129dc5b3b0adff23ae1e1010bc7806f974"
386-
integrity sha512-avwCgZzcx2uxIW/wT3p3G/EyHftIrvMyiTS7AA7dxDlzfx+8dpAeTsb1+jsHJT4F6foSh5HG17Nw8sDzYuxH1Q==
387-
388-
"@firebase/messaging@0.3.6":
389-
version "0.3.6"
390-
resolved "https://registry.yarnpkg.com/@firebase/messaging/-/messaging-0.3.6.tgz#30662779ae5b2812da090da7607e7293cfb22a8e"
391-
integrity sha512-Sz/fWOXMa3HxDZxE64Fm335kwP9um1rmun5PIka7od7I4hZ8US+SjYVyUe6jWTh1V/YjcqDi6Xkhoj2nF8yu9g==
392-
dependencies:
393-
"@firebase/messaging-types" "0.2.3"
394-
"@firebase/util" "0.2.2"
395-
tslib "1.9.0"
396-
397-
"@firebase/polyfill@0.3.3":
398-
version "0.3.3"
399-
resolved "https://registry.yarnpkg.com/@firebase/polyfill/-/polyfill-0.3.3.tgz#9c882429762d99ba70ffe2074523e30ea03524ee"
400-
integrity sha512-xs8IZf1WEbufYXyfV8YjmiFZOaujRRq0T03NteihYfuGVTTym7z5SmvLvEHLEUjf2fgeobPEzZ2JgrCQHS+QHw==
401-
dependencies:
402-
core-js "2.5.5"
403-
promise-polyfill "7.1.2"
404-
whatwg-fetch "2.0.4"
405-
406-
"@firebase/storage-types@0.2.3":
407-
version "0.2.3"
408-
resolved "https://registry.yarnpkg.com/@firebase/storage-types/-/storage-types-0.2.3.tgz#09e7ce30eb0d713733e0193cb5c0c3ac157bf330"
409-
integrity sha512-RaZeam2LgsB7xwAtOQr4G0Geoyf7D5TnLF3a12By6Rh0Z9PqBSlWn0SVYGW3SkmxIdqvWZMZvCyamUlqQvQzWw==
410-
411-
"@firebase/storage@0.2.3":
412-
version "0.2.3"
413-
resolved "https://registry.yarnpkg.com/@firebase/storage/-/storage-0.2.3.tgz#80188243d8274de9cc0fab570bc9064664a8563d"
414-
integrity sha512-2sq5jckWszW53gfQMkPNc7EumJ92oErRhzGJANbVzBumwR8qwKZU8/I+/uV9SPK1tVmSUc3S21jdoW5oOJVEuA==
415-
dependencies:
416-
"@firebase/storage-types" "0.2.3"
417-
tslib "1.9.0"
418-
419340
"@firebase/util@0.2.2":
420341
version "0.2.2"
421342
resolved "https://registry.yarnpkg.com/@firebase/util/-/util-0.2.2.tgz#fdd57ca21b587564c0a3a032f55092633f390a30"
422343
integrity sha512-vfRjmCWuxtJx3txHocaNlDwCDwwv6KLL5YtlSNi73wBdvF3UfnpLGrth7G3X6gn5rDhOKamRg2+9L8cfsjSS1A==
423344
dependencies:
424345
tslib "1.9.0"
425346

426-
"@firebase/webchannel-wrapper@0.2.10":
427-
version "0.2.10"
428-
resolved "https://registry.yarnpkg.com/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.10.tgz#ab43b78da70dfd4d780becb3ae47213d6bd00762"
429-
integrity sha512-i90GhAH1k1C7EKZHhjsMUIw6vXb7WUsMdbGMrDvFOLRtMKyC/+hHcXfK440PdNnsZpMYsCeJFBpamML806AA4w==
430-
431347
"@google-cloud/common@^0.17.0":
432348
version "0.17.0"
433349
resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-0.17.0.tgz#8ef558750db481fc10a13757a49479ab9a1c8c07"
@@ -3001,11 +2917,6 @@ copy-props@^2.0.1:
30012917
each-props "^1.3.0"
30022918
is-plain-object "^2.0.1"
30032919

3004-
core-js@2.5.5:
3005-
version "2.5.5"
3006-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b"
3007-
integrity sha1-sU3ek2xkDAV5prUMq8wTLdYSfjs=
3008-
30092920
core-js@^2.0.0, core-js@^2.2.0, core-js@^2.5.7:
30102921
version "2.5.7"
30112922
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
@@ -3515,7 +3426,12 @@ dom-storage@2.1.0:
35153426
resolved "https://registry.yarnpkg.com/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39"
35163427
integrity sha512-g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q==
35173428

3518-
domelementtype@1, domelementtype@^1.3.0:
3429+
domelementtype@1:
3430+
version "1.2.1"
3431+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.2.1.tgz#578558ef23befac043a1abb0db07635509393479"
3432+
integrity sha512-SQVCLFS2E7G5CRCMdn6K9bIhRj1bS6QBWZfF0TUPh4V/BbqrQ619IdSS3/izn0FZ+9l+uODzaZjb08fjOfablA==
3433+
3434+
domelementtype@^1.3.0:
35193435
version "1.3.0"
35203436
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
35213437
integrity sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=
@@ -3673,13 +3589,6 @@ encodeurl@~1.0.1, encodeurl@~1.0.2:
36733589
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
36743590
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
36753591

3676-
encoding@^0.1.11:
3677-
version "0.1.12"
3678-
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
3679-
integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=
3680-
dependencies:
3681-
iconv-lite "~0.4.13"
3682-
36833592
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
36843593
version "1.4.1"
36853594
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43"
@@ -4395,20 +4304,6 @@ firebase@2.x.x:
43954304
dependencies:
43964305
faye-websocket ">=0.6.0"
43974306

4398-
firebase@^5.5.2:
4399-
version "5.5.3"
4400-
resolved "https://registry.yarnpkg.com/firebase/-/firebase-5.5.3.tgz#e4a1250899b57d5953eab02df9ac8b75452fbd9b"
4401-
integrity sha512-yTVc4FxdsRYiZX2vH1Fe9tvKO0CRFd5Qg9be46qIWg5QIXa5wPEynJgpSlD1PakfB0D4Tu8BmG3nnvVtCCvuXA==
4402-
dependencies:
4403-
"@firebase/app" "0.3.4"
4404-
"@firebase/auth" "0.7.7"
4405-
"@firebase/database" "0.3.6"
4406-
"@firebase/firestore" "0.8.3"
4407-
"@firebase/functions" "0.3.1"
4408-
"@firebase/messaging" "0.3.6"
4409-
"@firebase/polyfill" "0.3.3"
4410-
"@firebase/storage" "0.2.3"
4411-
44124307
first-chunk-stream@^1.0.0:
44134308
version "1.0.0"
44144309
resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
@@ -5173,16 +5068,6 @@ graceful-fs@~1.2.0:
51735068
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364"
51745069
integrity sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=
51755070

5176-
grpc@1.13.1:
5177-
version "1.13.1"
5178-
resolved "https://registry.yarnpkg.com/grpc/-/grpc-1.13.1.tgz#9b5c49d4e56309b6e3bd631f8948b7b298d88790"
5179-
integrity sha512-yl0xChnlUISTefOPU2NQ1cYPh5m/DTatEUV6jdRyQPE9NCrtPq7Gn6J2alMTglN7ufYbJapOd00dvhGurHH6HQ==
5180-
dependencies:
5181-
lodash "^4.17.5"
5182-
nan "^2.0.0"
5183-
node-pre-gyp "^0.10.0"
5184-
protobufjs "^5.0.3"
5185-
51865071
grpc@^1.12.2:
51875072
version "1.15.1"
51885073
resolved "https://registry.yarnpkg.com/grpc/-/grpc-1.15.1.tgz#046263d9b0c440c8e36fece03e227cb3afe28514"
@@ -5825,7 +5710,7 @@ iconv-lite@0.4.23:
58255710
dependencies:
58265711
safer-buffer ">= 2.1.2 < 3"
58275712

5828-
iconv-lite@0.4.24, iconv-lite@^0.4.13, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.11, iconv-lite@~0.4.13:
5713+
iconv-lite@0.4.24, iconv-lite@^0.4.13, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.11:
58295714
version "0.4.24"
58305715
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
58315716
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
@@ -6362,7 +6247,7 @@ is-stream-ended@^0.1.0, is-stream-ended@^0.1.4:
63626247
resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.4.tgz#f50224e95e06bce0e356d440a4827cd35b267eda"
63636248
integrity sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==
63646249

6365-
is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
6250+
is-stream@^1.0.0, is-stream@^1.1.0:
63666251
version "1.1.0"
63676252
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
63686253
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
@@ -6477,14 +6362,6 @@ isobject@^3.0.0, isobject@^3.0.1:
64776362
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
64786363
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
64796364

6480-
isomorphic-fetch@2.2.1:
6481-
version "2.2.1"
6482-
resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
6483-
integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=
6484-
dependencies:
6485-
node-fetch "^1.0.1"
6486-
whatwg-fetch ">=0.10.0"
6487-
64886365
isstream@0.1.x, isstream@~0.1.2:
64896366
version "0.1.2"
64906367
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
@@ -8101,14 +7978,6 @@ no-case@^2.2.0:
81017978
dependencies:
81027979
lower-case "^1.1.1"
81037980

8104-
node-fetch@^1.0.1:
8105-
version "1.7.3"
8106-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
8107-
integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==
8108-
dependencies:
8109-
encoding "^0.1.11"
8110-
is-stream "^1.0.1"
8111-
81127981
node-fetch@^2.1.1:
81137982
version "2.2.0"
81147983
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.2.0.tgz#4ee79bde909262f9775f731e3656d0db55ced5b5"
@@ -9258,11 +9127,6 @@ progress@^2.0.0:
92589127
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
92599128
integrity sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=
92609129

9261-
promise-polyfill@7.1.2:
9262-
version "7.1.2"
9263-
resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-7.1.2.tgz#ab05301d8c28536301622d69227632269a70ca3b"
9264-
integrity sha512-FuEc12/eKqqoRYIGBrUptCBRhobL19PS2U31vMNTfyck1FxPyMfgsXyW4Mav85y/ZN1hop3hOwRlUDok23oYfQ==
9265-
92669130
promise@^8.0.1:
92679131
version "8.0.2"
92689132
resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.2.tgz#9dcd0672192c589477d56891271bdc27547ae9f0"
@@ -12320,16 +12184,6 @@ whatwg-encoding@^1.0.1:
1232012184
dependencies:
1232112185
iconv-lite "0.4.24"
1232212186

12323-
whatwg-fetch@2.0.4:
12324-
version "2.0.4"
12325-
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f"
12326-
integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==
12327-
12328-
whatwg-fetch@>=0.10.0:
12329-
version "3.0.0"
12330-
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
12331-
integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
12332-
1233312187
whatwg-url@^3.0.0:
1233412188
version "3.1.0"
1233512189
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-3.1.0.tgz#7bdcae490f921aef6451fb6739ec6bbd8e907bf6"

0 commit comments

Comments
 (0)