From e48966f529e4adbe6e9cf763f268e8c22719a09d Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" <23040076+greenkeeper[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2020 14:52:53 -0800 Subject: [PATCH] =?UTF-8?q?Update=20algoliasearch=20to=20the=20latest=20ve?= =?UTF-8?q?rsion=20=EF=BF=BD=20(#772)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: ## The dependency [algoliasearch]() was updated from `3.35.1` to `4.0.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update. --- **Publisher:** [nunomaduro](https://www.npmjs.com/~nunomaduro) **License:** MIT [Find out more about this release](). ---
FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
--- Your [Greenkeeper](https://greenkeeper.io) bot :palm_tree: Pull Request resolved: https://github.com/facebook/flipper/pull/772 Test Plan: Manually tested searching and installing still works. Reviewed By: jknoxville Differential Revision: D19690706 Pulled By: passy fbshipit-source-id: 46cb05fb2c0429c4a1f7fb31a833cd000805825d --- package.json | 2 +- src/chrome/PluginInstaller.tsx | 11 +- src/utils/pluginManager.tsx | 4 +- yarn.lock | 212 +++++++++++++++++++-------------- 4 files changed, 134 insertions(+), 95 deletions(-) diff --git a/package.json b/package.json index d036543ab..c5fb2deca 100644 --- a/package.json +++ b/package.json @@ -126,7 +126,7 @@ "JSONStream": "^1.3.1", "adbkit": "^2.11.1", "adbkit-logcat": "^2.0.1", - "algoliasearch": "^3.34.0", + "algoliasearch": "^4.0.0", "ansi-to-html": "^0.6.3", "async-mutex": "^0.1.3", "chalk": "^3.0.0", diff --git a/src/chrome/PluginInstaller.tsx b/src/chrome/PluginInstaller.tsx index 8a7722433..0cf2cd656 100644 --- a/src/chrome/PluginInstaller.tsx +++ b/src/chrome/PluginInstaller.tsx @@ -27,7 +27,8 @@ import { } from 'flipper'; import React, {useCallback, useState, useMemo, useEffect} from 'react'; import {List} from 'immutable'; -import algoliasearch from 'algoliasearch'; +import {SearchIndex} from 'algoliasearch'; +import {SearchResponse} from '@algolia/client-search'; import path from 'path'; import fs from 'fs-extra'; import {reportPlatformFailures, reportUsage} from '../utils/metrics'; @@ -105,7 +106,7 @@ type DispatchFromProps = { }; type OwnProps = { - searchIndexFactory: () => algoliasearch.Index; + searchIndexFactory: () => SearchIndex; autoHeight: boolean; findPluginUpdates: ( currentPlugins: PluginMap, @@ -353,7 +354,7 @@ function useNPMSearch( setRestartRequired: (restart: boolean) => void, query: string, setQuery: (query: string) => void, - searchClientFactory: () => algoliasearch.Index, + searchClientFactory: () => SearchIndex, installedPlugins: Map, refreshInstalledPlugins: () => void, findPluginUpdates: ( @@ -419,11 +420,11 @@ function useNPMSearch( useEffect(() => { (async () => { const {hits} = await reportPlatformFailures( - index.search({ + index.search('', { query, filters: 'keywords:flipper-plugin', hitsPerPage: 20, - }), + }) as Promise>, `${TAG}:queryIndex`, ); diff --git a/src/utils/pluginManager.tsx b/src/utils/pluginManager.tsx index 0215e2520..4dc82725d 100644 --- a/src/utils/pluginManager.tsx +++ b/src/utils/pluginManager.tsx @@ -12,7 +12,7 @@ import fs from 'fs-extra'; import {homedir} from 'os'; import {PluginMap, PluginDefinition} from '../reducers/pluginManager'; import {PluginManager as PM} from 'live-plugin-manager'; -import algoliasearch from 'algoliasearch'; +import {default as algoliasearch, SearchIndex} from 'algoliasearch'; import NpmApi, {Package} from 'npm-api'; import semver from 'semver'; @@ -28,7 +28,7 @@ export function providePluginManager(): PM { } // TODO(T57014856): This should be private, too. -export function provideSearchIndex(): algoliasearch.Index { +export function provideSearchIndex(): SearchIndex { const client = algoliasearch(ALGOLIA_APPLICATION_ID, ALGOLIA_API_KEY); return client.initIndex('npm-search'); } diff --git a/yarn.lock b/yarn.lock index 0ed448bfd..92f8fc24c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17,6 +17,110 @@ resolved "https://registry.yarnpkg.com/7zip/-/7zip-0.0.6.tgz#9cafb171af82329490353b4816f03347aa150a30" integrity sha1-nK+xca+CMpSQNTtIFvAzR6oVCjA= +"@algolia/cache-browser-local-storage@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.0.0.tgz#53085805373aeb6f3dfe06a1028c944343f087b5" + integrity sha512-kHyM/zWd9lJdGpR3lCCWls1gaehWFr3bLGivAYYAMImNGGHJ7moTu8X+4sZWxoSFBhvKMjvPcfrnYQb26hiQpA== + dependencies: + "@algolia/cache-common" "4.0.0" + +"@algolia/cache-common@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.0.0.tgz#656880b0be60be27ed12315666d6d39ca2d68473" + integrity sha512-E2oexbhkhp8ehuSTaQfVf9IxemM4JnKVsfBvpkTD7gE2TXzRntAvMUGPA7Pyx+VyvLlRwp10bFhUjPvLcXJEUQ== + +"@algolia/cache-in-memory@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.0.0.tgz#1089bcf02c5ee501010f6a9d036117fe6a7496ea" + integrity sha512-NwPDl8Ito34MwB3GA3xovo2WOfwnrtRKs/EExVUw0tExfNx+yxeIp1U2rxXlfPgGH/un39v2mdquu5kbWAxI4A== + dependencies: + "@algolia/cache-common" "4.0.0" + +"@algolia/client-account@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.0.0.tgz#29e7ae2009c8ebda3ab1ac9a83e0952a0c46f454" + integrity sha512-HtmEu9wvudXijfEMrQA9CpN/4xGFCoCuM9MdY1nYM+D+6liCbOcLkcZ779jvAyC8OphO08nuJSF1E1IIBswyLA== + dependencies: + "@algolia/client-common" "4.0.0" + "@algolia/client-search" "4.0.0" + "@algolia/transporter" "4.0.0" + +"@algolia/client-analytics@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.0.0.tgz#bd9ece79c9bdc05f0fb5331c7863b38be0064f3b" + integrity sha512-vFaJXV903VcT5bxRgD0x2V1ytPL+OmhDlIqaOaCMWSxuh8lg3Xz44yrjxYzVYKGcE+5JLS9CBmNa/B/r2oJwZw== + dependencies: + "@algolia/client-common" "4.0.0" + "@algolia/client-search" "4.0.0" + "@algolia/requester-common" "4.0.0" + "@algolia/transporter" "4.0.0" + +"@algolia/client-common@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.0.0.tgz#cfc483276f562379520c6efc38e7b30ef9b2946a" + integrity sha512-WkKyQI6qikRrykfn1G1qmC7Ug3xCRji1r5LOVcX0Xe8LS9jd0hcIHCC/bLIo/Gmt8CkR6XBT7CamkT8HWgTomQ== + dependencies: + "@algolia/requester-common" "4.0.0" + "@algolia/transporter" "4.0.0" + +"@algolia/client-recommendation@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.0.0.tgz#237a9987e3897b2ddb5648418d10b27755dc3ff9" + integrity sha512-S2NF7zuhstpCHlJJfFJ5+6QMsstXSGPd1cOLwZ9L3I6p1HjSK55/JAVz/RggcY6z878pBLKxDEC1aUKUJ00+IQ== + dependencies: + "@algolia/client-common" "4.0.0" + "@algolia/requester-common" "4.0.0" + "@algolia/transporter" "4.0.0" + +"@algolia/client-search@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.0.0.tgz#f3a1e511a608d979635f9d0c976a62388b8e679a" + integrity sha512-NbBFM4eteYVASNbOHVqNjuQ0F/otxCwEkvFd5+w1z7+6NtuJV+3B3iKzGmQR2uP4DD6NokyRgX8eoKy1beUq4A== + dependencies: + "@algolia/client-common" "4.0.0" + "@algolia/requester-common" "4.0.0" + "@algolia/transporter" "4.0.0" + +"@algolia/logger-common@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.0.0.tgz#a0be02b438446c95861253627a7151fb498a94f5" + integrity sha512-/SiAOVBtt2a37UTXLx5gKDShsFDJ1wJoD77hVpHZnsOrMrkXC61iCqDMUkyNMvbbg8Zb4feStVyoklTHWlqCHg== + +"@algolia/logger-console@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.0.0.tgz#aeaf42603813d74363d6327153ed2823d464f2f9" + integrity sha512-wdBZRKkHQdUlIYhxVhJEMJkFJHLi8bVluy0PcqI+Z6iPsfix2Uq+SdH9QoApEOynkRuhMFeGep6QtS30wrfZ+Q== + dependencies: + "@algolia/logger-common" "4.0.0" + +"@algolia/requester-browser-xhr@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.0.0.tgz#f432f42921369936ebf043db1381ef6b2086fcbf" + integrity sha512-rC80tnfte9rxjVnA3xSqetE7c5fc4tHG310eCEPatzCtTTs7Q5r33mAWZY8dgX4iZ1+cuUvzwHmUeut32MRBmw== + dependencies: + "@algolia/requester-common" "4.0.0" + +"@algolia/requester-common@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.0.0.tgz#215c7586fa7a991afb70e63fb2554c586b9da2a8" + integrity sha512-Jq9uOqKbCEUN7ksN/JkW9CNyPwEut+CZ88GR8AcrTxMBmzy9A2+gT1vTBvRqlMQoaTJkYf6PhByrVQs5ZA37DQ== + +"@algolia/requester-node-http@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.0.0.tgz#cf398a172012e8617092b3c4eeb31b77acdbf198" + integrity sha512-jSTaeA0BxF+4OO4hUx8K0OQX7+7/LN9uF+d3utWKDJL4cpfWpB6ImYk3wzGEP92PnmtDxgMqbwi3rXyfVZhAoQ== + dependencies: + "@algolia/requester-common" "4.0.0" + +"@algolia/transporter@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.0.0.tgz#a1ac425089d1fc792b36902ba8c991439170a3ac" + integrity sha512-b2LnzkbG4l/2OSWoWaG2iq+WqqK63BcwLbYD8dt8XDp9hoeaFTCj95KN5jT4iO7oQ2it+uJ9e3YFjCevvbS/Ww== + dependencies: + "@algolia/cache-common" "4.0.0" + "@algolia/logger-common" "4.0.0" + "@algolia/requester-common" "4.0.0" + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" @@ -1713,11 +1817,6 @@ after@0.8.2: resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= -agentkeepalive@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-2.2.0.tgz#c5d1bd4b129008f1163f236f86e5faea2026e2ef" - integrity sha1-xdG9SxKQCPEWPyNvhuX66iAm4u8= - aggregate-error@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" @@ -1741,26 +1840,25 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -algoliasearch@^3.34.0: - version "3.35.1" - resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-3.35.1.tgz#297d15f534a3507cab2f5dfb996019cac7568f0c" - integrity sha512-K4yKVhaHkXfJ/xcUnil04xiSrB8B8yHZoFEhWNpXg23eiCnqvTZw1tn/SqvdsANlYHLJlKl0qi3I/Q2Sqo7LwQ== +algoliasearch@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.0.0.tgz#8a88f086c87888954a3ab7c345ae39bbe6434f98" + integrity sha512-n1ZZqkubIktg6OwCU4zaU+QEbZSngFR6d5puXu5aaZ46mjz/Oeg/OZjbHG7e6jX2ZLhHVaJyQ5IAxbCXK3oILg== dependencies: - agentkeepalive "^2.2.0" - debug "^2.6.9" - envify "^4.0.0" - es6-promise "^4.1.0" - events "^1.1.0" - foreach "^2.0.5" - global "^4.3.2" - inherits "^2.0.1" - isarray "^2.0.1" - load-script "^1.0.0" - object-keys "^1.0.11" - querystring-es3 "^0.2.1" - reduce "^1.0.1" - semver "^5.1.0" - tunnel-agent "^0.6.0" + "@algolia/cache-browser-local-storage" "4.0.0" + "@algolia/cache-common" "4.0.0" + "@algolia/cache-in-memory" "4.0.0" + "@algolia/client-account" "4.0.0" + "@algolia/client-analytics" "4.0.0" + "@algolia/client-common" "4.0.0" + "@algolia/client-recommendation" "4.0.0" + "@algolia/client-search" "4.0.0" + "@algolia/logger-common" "4.0.0" + "@algolia/logger-console" "4.0.0" + "@algolia/requester-browser-xhr" "4.0.0" + "@algolia/requester-common" "4.0.0" + "@algolia/requester-node-http" "4.0.0" + "@algolia/transporter" "4.0.0" ansi-align@^2.0.0: version "2.0.0" @@ -3226,11 +3324,6 @@ dom-serializer@^0.2.1: domelementtype "^2.0.1" entities "^2.0.0" -dom-walk@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" - integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg= - domelementtype@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" @@ -3461,14 +3554,6 @@ env-paths@^2.2.0: resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43" integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== -envify@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/envify/-/envify-4.1.0.tgz#f39ad3db9d6801b4e6b478b61028d3f0b6819f7e" - integrity sha512-IKRVVoAYr4pIx4yIWNsz9mOsboxlNXiu7TNBnem/K/uTHdkyzXWDzHCK7UTolqBbgaBz0tQHsD3YNls0uIIjiw== - dependencies: - esprima "^4.0.0" - through "~2.3.4" - envinfo@^7.4.0: version "7.4.0" resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.4.0.tgz#bef4ece9e717423aaf0c3584651430b735ad6630" @@ -3589,11 +3674,6 @@ es6-iterator@~2.0.3: es5-ext "^0.10.35" es6-symbol "^3.1.1" -es6-promise@^4.1.0: - version "4.2.8" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" - integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== - es6-symbol@^3, es6-symbol@^3.1.1, es6-symbol@~3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.2.tgz#859fdd34f32e905ff06d752e7171ddd4444a7ed1" @@ -3852,11 +3932,6 @@ event-pubsub@4.3.0: resolved "https://registry.yarnpkg.com/event-pubsub/-/event-pubsub-4.3.0.tgz#f68d816bc29f1ec02c539dc58c8dd40ce72cb36e" integrity sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ== -events@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" - integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= - exec-sh@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" @@ -4240,11 +4315,6 @@ for-in@^1.0.2: resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= -foreach@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" - integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k= - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -4469,14 +4539,6 @@ global-tunnel-ng@^2.7.1: npm-conf "^1.1.3" tunnel "^0.0.6" -global@^4.3.2: - version "4.4.0" - resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" - integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== - dependencies: - min-document "^2.19.0" - process "^0.11.10" - globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -5250,7 +5312,7 @@ isarray@2.0.1: resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= -isarray@^2.0.1, isarray@^2.0.5: +isarray@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== @@ -6307,13 +6369,6 @@ mimic-response@^1.0.0, mimic-response@^1.0.1: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== -min-document@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" - integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= - dependencies: - dom-walk "^0.1.0" - minimatch@^3.0.2, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" @@ -6687,7 +6742,7 @@ object-is@^1.0.1: resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4" integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ== -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.0, object-keys@^1.1.1: +object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -7267,11 +7322,6 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= - progress@^2.0.0, progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" @@ -7381,11 +7431,6 @@ query-string@^6.10.1: split-on-first "^1.0.0" strict-uri-encode "^2.0.0" -querystring-es3@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= - querystring@0.2.0, querystring@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" @@ -7639,13 +7684,6 @@ recast@^0.16.1: private "~0.1.5" source-map "~0.6.1" -reduce@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/reduce/-/reduce-1.0.2.tgz#0cd680ad3ffe0b060e57a5c68bdfce37168d361b" - integrity sha512-xX7Fxke/oHO5IfZSk77lvPa/7bjMh9BuCk4OOoX5XTXrM7s0Z+MkPfSDfz0q7r91BhhGSs8gii/VEN/7zhCPpQ== - dependencies: - object-keys "^1.1.0" - redux-devtools-core@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/redux-devtools-core/-/redux-devtools-core-0.2.1.tgz#4e43cbe590a1f18c13ee165d2d42e0bc77a164d8" @@ -8839,7 +8877,7 @@ throttleit@^1.0.0: resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" integrity sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw= -through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3.4: +through@2, "through@>=2.2.7 <3", through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=