diff --git a/.eslintrc b/.eslintrc index 92fb148dc6ba406bd3fd7616814b609b9b43aab0..3dc95c89f03995804d3cfe6f06ca21f7e9be6be2 100644 --- a/.eslintrc +++ b/.eslintrc @@ -20,7 +20,7 @@ }], "global-require": 0, "import/no-dynamic-require": 0, - "import/no-extraneous-dependencies": 0, + "import/no-extraneous-dependencies": ["error", {"devDependencies": false }], "import/no-named-as-default": 0, "import/no-named-as-default-member": 0, "import/prefer-default-export": 0, @@ -34,5 +34,11 @@ "react/prop-types": 0, "react/require-default-props": 0, "sort-keys": 0 - } + }, + "overrides": [{ + "files": ["*_test.js", "*.test.js", "*.test.jsx", "**/test/**/*.js"], + "rules": { + "import/no-extraneous-dependencies": "off" + } + }] } diff --git a/packages/base-model/CHANGELOG.md b/packages/base-model/CHANGELOG.md index c649fb7eaf0b2d304a115ec8a42b34930811ae59..ce3e0d153b84ac5d76644e3e6031592843c75096 100644 --- a/packages/base-model/CHANGELOG.md +++ b/packages/base-model/CHANGELOG.md @@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@2.0.0...@pubsweet/base-model@2.0.1) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/base-model + + + + + +# [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.2.0...@pubsweet/base-model@2.0.0) (2019-01-13) + + +### Bug Fixes + +* get just the db ([9f14897](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9f14897)) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # [1.2.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.1.0...@pubsweet/base-model@1.2.0) (2019-01-09) diff --git a/packages/base-model/package.json b/packages/base-model/package.json index f68214bd3ab3d9dea15d75fc9a7031d1f5abe2ea..834d479aa0e9a033d53af1b76e0b88aa1ae22a0f 100644 --- a/packages/base-model/package.json +++ b/packages/base-model/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/base-model", - "version": "1.2.0", + "version": "2.0.1", "description": "", "main": "src/index.js", "scripts": { @@ -9,9 +9,20 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { + "@pubsweet/db-manager": "^2.2.2", + "@pubsweet/errors": "^2.0.1", + "@pubsweet/logger": "^0.2.11", + "http-status-codes": "^1.3.0", "knex": "^0.16.3", + "lodash": "^4.17.11", "objection": "^1.2.3", - "pubsweet-server": "^11.0.0" + "uuid": "^3.3.2" + }, + "devDependencies": { + "pubsweet-server": "^12.0.1" + }, + "peerDependencies": { + "config": "^3.0.1" }, "publishConfig": { "access": "public" diff --git a/packages/base-model/src/index.js b/packages/base-model/src/index.js index 0fecd507930d7984545f6be7ff0fb133769ef9eb..d4213cc22dd6518bbf725e0d4301553b109ece6f 100644 --- a/packages/base-model/src/index.js +++ b/packages/base-model/src/index.js @@ -1,7 +1,7 @@ const uuid = require('uuid') const { Model, transaction } = require('objection') const logger = require('@pubsweet/logger') -const { NotFoundError } = require('pubsweet-server/src/errors') +const { NotFoundError } = require('@pubsweet/errors') const db = require('@pubsweet/db-manager/src/db') const { merge } = require('lodash') const config = require('config') diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 30a335d52e9745e580a68aeef3f7a1950d7869d3..ba876de9bb7834d6374521a1f41ce3f0c0eedce7 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet@3.1.1...pubsweet@3.1.2) (2019-01-14) + +**Note:** Version bump only for package pubsweet + + + + + +## [3.1.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet@3.1.0...pubsweet@3.1.1) (2019-01-13) + +**Note:** Version bump only for package pubsweet + + + + + # [3.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet@3.0.13...pubsweet@3.1.0) (2019-01-09) diff --git a/packages/cli/cli/setupdb.js b/packages/cli/cli/setupdb.js index fec27577417418f27b4d270f16ffdc0de7557d94..1b85804791fea9036d6ac0a1e8068dc37786952c 100644 --- a/packages/cli/cli/setupdb.js +++ b/packages/cli/cli/setupdb.js @@ -42,5 +42,6 @@ module.exports = async (commandArguments = process.argv) => { await setupDb(finalOpts) // destroy pool to avoid delay before command exits - db.destroy() + await db.destroy() + process.exit(0) } diff --git a/packages/cli/package.json b/packages/cli/package.json index c4b4c8f0fd2343bde3a5c08c946dd513573e97a1..633f809c68b937d274d499887bebbfbe8ed5c705 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet", - "version": "3.1.0", + "version": "3.1.2", "description": "Pubsweet command-line interface, app generator and manager", "bin": "./bin/pubsweet.js", "scripts": { @@ -14,17 +14,19 @@ "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/db-manager": "^2.2.0", - "@pubsweet/logger": "^0.2.9", + "@pubsweet/db-manager": "^2.2.2", + "@pubsweet/logger": "^0.2.11", "bluebird": "^3.5.0", "colors": "^1.1.2", "commander": "^2.9.0", + "config": "^3.0.1", "express": "^4.15.3", "forever-monitor": "^1.7.0", "fs-extra": "^4.0.2", "inflection": "^1.12.0", + "lodash": "^4.17.11", "prompt": "flatiron/prompt#1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87", - "pubsweet-server": "^11.0.0", + "pubsweet-server": "^12.0.1", "uuid": "^3.0.1", "webpack": "^3.8.1", "webpack-dev-middleware": "^1.12.0", @@ -36,7 +38,7 @@ }, "devDependencies": { "jest": "^23.5.0", - "jest-environment-db": "^2.0.0", + "jest-environment-db": "^2.0.2", "nsp": "^2.8.1" } } diff --git a/packages/cli/test/integration.test.js b/packages/cli/test/integration.test.js index 75af795f18053138d00c5e08aad00357631b8c7f..635f288cabe6e2057f32f2a7e8392fa87b207f28 100644 --- a/packages/cli/test/integration.test.js +++ b/packages/cli/test/integration.test.js @@ -20,7 +20,12 @@ const nodeConfig = { mode: 'authsome/src/modes/blog', }, pubsweet: { - components: ['@pubsweet/model-user'], + components: [ + '@pubsweet/model-user', + '@pubsweet/model-collection', + '@pubsweet/model-team', + '@pubsweet/model-fragment', + ], }, 'pubsweet-client': { theme: 'PepperTheme', @@ -36,7 +41,7 @@ const setupDbOptions = { /* These tests run "pubsweet" commands as child processes with no mocking */ /* They perform a full installation cycle, including multiple yarn commands */ -describe.skip('CLI: integration test', () => { +describe('CLI: integration test', () => { afterAll(() => fs.removeSync(appPath)) describe('new', () => { diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 0c0a478c5813e4bcf68bb9286f72f3b3ac98f827..853eff878043a6b771a204b4b5f44c333a83fe4b 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-client@8.0.2...pubsweet-client@8.0.3) (2019-01-14) + +**Note:** Version bump only for package pubsweet-client + + + + + +## [8.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-client@8.0.1...pubsweet-client@8.0.2) (2019-01-13) + +**Note:** Version bump only for package pubsweet-client + + + + + ## [8.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-client@8.0.0...pubsweet-client@8.0.1) (2019-01-09) diff --git a/packages/client/package.json b/packages/client/package.json index ba4125d960463cd812782775d29dc9b159c7ec2b..9315491c3a1605dc96e51a342f7b6743e9444a34 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-client", - "version": "8.0.1", + "version": "8.0.3", "main": "src/index.js", "scripts": { "compile": "babel -d lib/ src/", @@ -13,8 +13,8 @@ "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", "apollo-cache-inmemory": "^1.2.4", "apollo-client": "^2.3.4", "apollo-link": "^1.2.1", @@ -22,6 +22,7 @@ "apollo-link-http": "^1.5.4", "apollo-link-ws": "^1.0.8", "apollo-upload-client": "^8.0.0", + "apollo-utilities": "^1.0.27", "authsome": "^0.1.0", "config": "^2.0.1", "event-source-polyfill": "^0.0.10", @@ -35,6 +36,7 @@ "react": "^16.2.0", "react-apollo": "^2.1.0", "react-redux": "^5.0.2", + "react-router": "^4.3.1", "react-router-dom": "^4.2.2", "react-router-redux": "next", "redux": "^3.6.0", @@ -63,7 +65,7 @@ "waait": "^1.0.2" }, "peerDependencies": { - "pubsweet-server": ">=1.1.0" + "pubsweet-server": ">=11.0.0" }, "repository": { "type": "git", diff --git a/packages/coko-theme/CHANGELOG.md b/packages/coko-theme/CHANGELOG.md index 736b5518d25825892d101cb432e944a77e340cbf..8a673be85761da5c9d0060531dd5f284205e49ae 100644 --- a/packages/coko-theme/CHANGELOG.md +++ b/packages/coko-theme/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/coko-theme@5.0.5...@pubsweet/coko-theme@5.0.6) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/coko-theme + + + + + +## [5.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/coko-theme@5.0.4...@pubsweet/coko-theme@5.0.5) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/coko-theme + + + + + ## [5.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/coko-theme@5.0.3...@pubsweet/coko-theme@5.0.4) (2019-01-09) **Note:** Version bump only for package @pubsweet/coko-theme diff --git a/packages/coko-theme/package.json b/packages/coko-theme/package.json index dbb6f3a93eeed0a65fe802d32c41dab818ba6042..bba1279a8c7fe83e71f802e1de519cbe2bf00cc9 100644 --- a/packages/coko-theme/package.json +++ b/packages/coko-theme/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/coko-theme", - "version": "5.0.4", + "version": "5.0.6", "description": "This is a coko theme for Apps", "main": "src", "license": "MIT", @@ -8,7 +8,7 @@ "access": "public" }, "dependencies": { - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui-toolkit": "^2.0.6", "cokourier-prime-sans": "git+https://gitlab.coko.foundation/julientaq/cokourier-sans-prime.git", "styled-components": "^4.1.1", "typeface-fira-sans-condensed": "^0.0.54", diff --git a/packages/components/AWSS3-server/CHANGELOG.md b/packages/components/AWSS3-server/CHANGELOG.md index cae77ff1101886313f9edf7048baeb3fbee9ff9d..e6a2aca7a29516176729ef0d2ff495fdf4a46da0 100644 --- a/packages/components/AWSS3-server/CHANGELOG.md +++ b/packages/components/AWSS3-server/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-aws-s3@1.2.3...@pubsweet/component-aws-s3@1.2.4) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/component-aws-s3 + + + + + +## [1.2.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-aws-s3@1.2.2...@pubsweet/component-aws-s3@1.2.3) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/component-aws-s3 + + + + + <a name="1.2.2"></a> ## [1.2.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-aws-s3@1.2.1...@pubsweet/component-aws-s3@1.2.2) (2018-09-25) diff --git a/packages/components/AWSS3-server/config/test.js b/packages/components/AWSS3-server/config/test.js deleted file mode 100644 index 80f2af3eb8025276a70d1132901fa5c91cd4873b..0000000000000000000000000000000000000000 --- a/packages/components/AWSS3-server/config/test.js +++ /dev/null @@ -1,7 +0,0 @@ -const path = require('path') - -module.exports = { - 'pubsweet-component-aws-s3': { - validations: path.join(__dirname, 'upload-validations'), - }, -} diff --git a/packages/components/AWSS3-server/config/upload-validations.js b/packages/components/AWSS3-server/config/upload-validations.js deleted file mode 100644 index 23fa37d7d5a7b0403731429eb910f5f402799000..0000000000000000000000000000000000000000 --- a/packages/components/AWSS3-server/config/upload-validations.js +++ /dev/null @@ -1,19 +0,0 @@ -const Joi = require('joi') - -module.exports = { - manuscripts: Joi.any() - .valid([ - 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', - 'application/pdf', - 'application/msword', - ]) - .error(new Error('Only Word documents and PDFs are allowed')), - supplementary: Joi.any(), - coverLetter: Joi.any() - .valid([ - 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', - 'application/pdf', - 'application/msword', - ]) - .error(new Error('Only Word documents and PDFs are allowed')), -} diff --git a/packages/components/AWSS3-server/package.json b/packages/components/AWSS3-server/package.json index 773b462240e36c9779b78b7f67d2b470df5e2b24..31edd3a8e530e1e9435270dc3113f41047970519 100644 --- a/packages/components/AWSS3-server/package.json +++ b/packages/components/AWSS3-server/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/component-aws-s3", - "version": "1.2.2", + "version": "1.2.4", "description": "AWS S3 upload component for PubSweet", "license": "MIT", "author": "Collaborative Knowledge Foundation", @@ -12,14 +12,19 @@ "archiver": "^2.1.1", "aws-sdk": "^2.185.0", "body-parser": "^1.17.2", + "dotenv": "^6.2.0", + "lodash": "^4.17.11", "multer": "^1.3.0", "multer-s3": "^2.7.0", "node-mocks-http": "^1.6.6", - "nodemailer": "^4.4.2" + "nodemailer": "^4.4.2", + "uuid": "^3.3.2" }, "peerDependencies": { "@pubsweet/logger": ">=0.0.1", - "pubsweet-server": ">=1.0.0" + "config": "^3.0.1", + "joi": "^14.3.1", + "pubsweet-server": ">=11.0.0" }, "devDependencies": { "jest": "^23.6.0", diff --git a/packages/components/Blog/CHANGELOG.md b/packages/components/Blog/CHANGELOG.md index 8cd9eabf89fc1e505f1c78204a034b12794ad337..0015ebf3656b435318c0adb85835b2c4890492b4 100644 --- a/packages/components/Blog/CHANGELOG.md +++ b/packages/components/Blog/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.9](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-blog@1.0.8...pubsweet-component-blog@1.0.9) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-blog + + + + + +## [1.0.8](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-blog@1.0.7...pubsweet-component-blog@1.0.8) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-blog + + + + + ## [1.0.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-blog@1.0.6...pubsweet-component-blog@1.0.7) (2019-01-09) **Note:** Version bump only for package pubsweet-component-blog diff --git a/packages/components/Blog/package.json b/packages/components/Blog/package.json index 4522ffdebfa17950c7ea68e1356bc60b8a632aff..35abdfa2331935d17cadaa01087d1664484086fe 100644 --- a/packages/components/Blog/package.json +++ b/packages/components/Blog/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-blog", - "version": "1.0.7", + "version": "1.0.9", "description": "Basic blog component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 7ef0b8ec9bae4b8f4e5aecacb2be7535176f0062..f1320ab39185079a615f0a80e001b5fb18a2fdc0 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [12.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-components@12.0.0...pubsweet-components@12.0.1) (2019-01-14) + +**Note:** Version bump only for package pubsweet-components + + + + + +# [12.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-components@11.0.0...pubsweet-components@12.0.0) (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # [11.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-components@10.1.0...pubsweet-components@11.0.0) (2019-01-09) diff --git a/packages/components/EmailTemplating-server/CHANGELOG.md b/packages/components/EmailTemplating-server/CHANGELOG.md index 6d1f563b3ceeaa37ca9ead1dd14f3a876e6526db..f7fd64c2e3ededaf0b0fd642bb1985194977f9bc 100644 --- a/packages/components/EmailTemplating-server/CHANGELOG.md +++ b/packages/components/EmailTemplating-server/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-email-templating@0.1.2...@pubsweet/component-email-templating@0.1.3) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/component-email-templating + + + + + +## [0.1.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-email-templating@0.1.1...@pubsweet/component-email-templating@0.1.2) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/component-email-templating + + + + + ## [0.1.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-email-templating@0.1.0...@pubsweet/component-email-templating@0.1.1) (2019-01-09) **Note:** Version bump only for package @pubsweet/component-email-templating diff --git a/packages/components/EmailTemplating-server/package.json b/packages/components/EmailTemplating-server/package.json index 15f63208535f3f5e014f89d711c952165da6fd57..e0e71514ff086fded987dfcebfd2b5e659118049 100644 --- a/packages/components/EmailTemplating-server/package.json +++ b/packages/components/EmailTemplating-server/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/component-email-templating", - "version": "0.1.1", + "version": "0.1.3", "description": "Send journal emails using templates from xPub/PubSweet", "license": "MIT", "author": "Collaborative Knowledge Foundation", @@ -9,11 +9,12 @@ ], "main": "index.js", "dependencies": { - "@pubsweet/component-send-email": "^0.2.5", + "@pubsweet/component-send-email": "^0.2.7", "handlebars": "^4.0.2" }, "peerDependencies": { - "@pubsweet/logger": "^0.0.1" + "@pubsweet/logger": "^0.0.1", + "config": "^3.0.1" }, "repository": { "type": "git", diff --git a/packages/components/Epub/CHANGELOG.md b/packages/components/Epub/CHANGELOG.md index 66c79904403fe48476a31356035823efa648131c..1da0e87d83bea2f96eed7ae4ec79d972afa84b90 100644 --- a/packages/components/Epub/CHANGELOG.md +++ b/packages/components/Epub/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.9](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-epub@0.5.8...pubsweet-component-epub@0.5.9) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-epub + + + + + +## [0.5.8](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-epub@0.5.7...pubsweet-component-epub@0.5.8) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-epub + + + + + ## [0.5.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-epub@0.5.6...pubsweet-component-epub@0.5.7) (2019-01-09) **Note:** Version bump only for package pubsweet-component-epub diff --git a/packages/components/Epub/package.json b/packages/components/Epub/package.json index 353dfc4861c4cc6debc4961c12e7321b06c5e802..13e7ca972869b9f7b769fe27587f2955c3c2ed2e 100644 --- a/packages/components/Epub/package.json +++ b/packages/components/Epub/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-epub", - "version": "0.5.7", + "version": "0.5.9", "description": "Backend EPUB export component for PubSweet", "main": "index.js", "scripts": { @@ -9,7 +9,7 @@ "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/logger": "^0.2.9", + "@pubsweet/logger": "^0.2.11", "cheerio": "^1.0.0-rc.2", "highlight.js": "^9.13.1", "html-epub": "git+https://git@gitlab.coko.foundation/pubsweet/html-epub#updated-libtidy", @@ -17,12 +17,8 @@ "unzipper": "^0.8.9" }, "peerDependencies": { - "pubsweet": "^2.2.4", - "pubsweet-server": "^7.1.0" - }, - "devDependencies": { - "config": "^2.0.1", - "jest": "^23.5.0", - "lodash": "^4.17.4" + "config": "^3.0.1", + "pubsweet": "^3.0.0", + "pubsweet-server": "^11.0.0" } } diff --git a/packages/components/FormGroup/CHANGELOG.md b/packages/components/FormGroup/CHANGELOG.md index c8569723af86e7d77a7d93addeb611399e20c9c0..150a52b547dca591d0c4c417b495cb8020db4f0d 100644 --- a/packages/components/FormGroup/CHANGELOG.md +++ b/packages/components/FormGroup/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-form-group@2.0.1...pubsweet-component-form-group@2.0.2) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-form-group + + + + + +## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-form-group@2.0.0...pubsweet-component-form-group@2.0.1) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-form-group + + + + + # [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-form-group@1.1.33...pubsweet-component-form-group@2.0.0) (2019-01-09) diff --git a/packages/components/FormGroup/package.json b/packages/components/FormGroup/package.json index 8596c2b4190eef6bdeb5ce643a042d4902d37e77..3411826c5ec472e479dbe468985f6e5539232516 100644 --- a/packages/components/FormGroup/package.json +++ b/packages/components/FormGroup/package.json @@ -1,17 +1,17 @@ { "name": "pubsweet-component-form-group", - "version": "2.0.0", + "version": "2.0.2", "description": "Form component with validation support for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { "joi-browser": "^13.4.0", - "prop-types": "^15.5.10", - "pubsweet-server": "^11.0.0" + "prop-types": "^15.5.10" }, "peerDependencies": { "pubsweet-client": ">=1.0.0", + "pubsweet-server": ">=11.0.0", "react": ">=16" }, "repository": { diff --git a/packages/components/HTML/CHANGELOG.md b/packages/components/HTML/CHANGELOG.md index 62030f47fd22aa1e3a6fc7e05017b22b1bf94660..07431a34c11114cf2c76abc464dcba381b0cf0f1 100644 --- a/packages/components/HTML/CHANGELOG.md +++ b/packages/components/HTML/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.11](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-html@0.2.10...pubsweet-component-html@0.2.11) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-html + + + + + +## [0.2.10](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-html@0.2.9...pubsweet-component-html@0.2.10) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-html + + + + + ## [0.2.9](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-html@0.2.8...pubsweet-component-html@0.2.9) (2019-01-09) **Note:** Version bump only for package pubsweet-component-html diff --git a/packages/components/HTML/package.json b/packages/components/HTML/package.json index e8192edb9fc4b61bfafcde5343b4d810b0c8d71c..f70f4c0da660937d0001e300e296bc92d63cbfc3 100644 --- a/packages/components/HTML/package.json +++ b/packages/components/HTML/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-html", - "version": "0.2.9", + "version": "0.2.11", "description": "PubSweet component that displays the HTML of a fragment", "main": "index.js", "author": "Collaborative Knowledge Foundation", @@ -8,7 +8,8 @@ "dependencies": { "prop-types": "^15.5.10", "react-redux": "^5.0.6", - "redux": "^3.7.2" + "redux": "^3.7.2", + "styled-components": "^4.1.3" }, "peerDependencies": { "pubsweet-client": ">=1.0.0", diff --git a/packages/components/Ink-server/CHANGELOG.md b/packages/components/Ink-server/CHANGELOG.md index 2fa50bff3ae2d886e27df27ab4b14ed70338997d..320bb0d5b3cf5113d8808a315d1a5509e6d8a203 100644 --- a/packages/components/Ink-server/CHANGELOG.md +++ b/packages/components/Ink-server/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.18](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-ink-backend@0.2.17...pubsweet-component-ink-backend@0.2.18) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-ink-backend + + + + + +## [0.2.17](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-ink-backend@0.2.16...pubsweet-component-ink-backend@0.2.17) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-ink-backend + + + + + ## [0.2.16](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-ink-backend@0.2.15...pubsweet-component-ink-backend@0.2.16) (2019-01-09) **Note:** Version bump only for package pubsweet-component-ink-backend diff --git a/packages/components/Ink-server/package.json b/packages/components/Ink-server/package.json index d36156bc9117161d19b049542c4601e58dc54337..3f14d4a6782c0f1d788224f49cd06911b7913569 100644 --- a/packages/components/Ink-server/package.json +++ b/packages/components/Ink-server/package.json @@ -1,17 +1,18 @@ { "name": "pubsweet-component-ink-backend", - "version": "0.2.16", + "version": "0.2.18", "description": "Backend INK component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "peerDependencies": { + "config": ">=3.0.1", + "joi": ">=14.3.1", "pubsweet-server": ">=1.0.0" }, "dependencies": { - "@pubsweet/logger": "^0.2.9", + "@pubsweet/logger": "^0.2.11", "busboy": "^0.2.13", - "config": "^2.0.1", "pusher-js": "^4.2.1", "request": "^2.83.0", "request-promise-native": "^1.0.5", diff --git a/packages/components/Login/CHANGELOG.md b/packages/components/Login/CHANGELOG.md index 9ce128b5d0aee5050e0a9da8ff67028a45f33a31..533bd8b2b1dc08ed226b19e3220d7e14662c1ca2 100644 --- a/packages/components/Login/CHANGELOG.md +++ b/packages/components/Login/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-login@1.2.6...pubsweet-component-login@1.2.7) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-login + + + + + +## [1.2.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-login@1.2.5...pubsweet-component-login@1.2.6) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-login + + + + + ## [1.2.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-login@1.2.4...pubsweet-component-login@1.2.5) (2019-01-09) **Note:** Version bump only for package pubsweet-component-login diff --git a/packages/components/Login/__snapshots__/Login.test.jsx.snap b/packages/components/Login/__snapshots__/Login.test.jsx.snap index 94dea1ff8acd288a6f18b18065843dc136b6bb4c..8f595b98069b9a201040770b0d57c1ba438ef23a 100644 --- a/packages/components/Login/__snapshots__/Login.test.jsx.snap +++ b/packages/components/Login/__snapshots__/Login.test.jsx.snap @@ -23,11 +23,11 @@ ShallowWrapper { </ForwardRef>, false, <form> - <C + <FormikConnect(FieldInner) component={[Function]} name="username" /> - <C + <FormikConnect(FieldInner) component={[Function]} name="password" /> @@ -110,6 +110,7 @@ ShallowWrapper { ], }, "displayName": "styled.h1", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-Rmtcm", "target": "h1", @@ -125,11 +126,11 @@ ShallowWrapper { "nodeType": "host", "props": Object { "children": Array [ - <C + <FormikConnect(FieldInner) component={[Function]} name="username" />, - <C + <FormikConnect(FieldInner) component={[Function]} name="password" />, @@ -264,6 +265,7 @@ ShallowWrapper { ], }, "displayName": "styled.button", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-kgoBCf", "target": "button", @@ -334,6 +336,7 @@ ShallowWrapper { ], }, "displayName": "Styled(Link)", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-csuQGl", "target": [Function], @@ -353,6 +356,7 @@ ShallowWrapper { "rules": Array [], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-gwVKww", "target": "div", @@ -420,6 +424,7 @@ ShallowWrapper { ], }, "displayName": "Styled(Link)", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-csuQGl", "target": [Function], @@ -439,6 +444,7 @@ ShallowWrapper { "rules": Array [], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-hXRMBi", "target": "div", @@ -464,6 +470,7 @@ ShallowWrapper { ], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "propTypes": Object { "medium": [Function], "small": [Function], @@ -488,11 +495,11 @@ ShallowWrapper { </ForwardRef>, false, <form> - <C + <FormikConnect(FieldInner) component={[Function]} name="username" /> - <C + <FormikConnect(FieldInner) component={[Function]} name="password" /> @@ -575,6 +582,7 @@ ShallowWrapper { ], }, "displayName": "styled.h1", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-Rmtcm", "target": "h1", @@ -590,11 +598,11 @@ ShallowWrapper { "nodeType": "host", "props": Object { "children": Array [ - <C + <FormikConnect(FieldInner) component={[Function]} name="username" />, - <C + <FormikConnect(FieldInner) component={[Function]} name="password" />, @@ -729,6 +737,7 @@ ShallowWrapper { ], }, "displayName": "styled.button", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-kgoBCf", "target": "button", @@ -799,6 +808,7 @@ ShallowWrapper { ], }, "displayName": "Styled(Link)", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-csuQGl", "target": [Function], @@ -818,6 +828,7 @@ ShallowWrapper { "rules": Array [], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-gwVKww", "target": "div", @@ -885,6 +896,7 @@ ShallowWrapper { ], }, "displayName": "Styled(Link)", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-csuQGl", "target": [Function], @@ -904,6 +916,7 @@ ShallowWrapper { "rules": Array [], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-hXRMBi", "target": "div", @@ -929,6 +942,7 @@ ShallowWrapper { ], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "propTypes": Object { "medium": [Function], "small": [Function], diff --git a/packages/components/Login/package.json b/packages/components/Login/package.json index f17da2f6c790ac08c0568ca9357fb5557742d423..31818c0dd5651fb81e4f6710e840bc28b7fda560 100644 --- a/packages/components/Login/package.json +++ b/packages/components/Login/package.json @@ -1,13 +1,13 @@ { "name": "pubsweet-component-login", - "version": "1.2.5", + "version": "1.2.7", "description": "Basic login component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^9.1.0", - "formik": "1.3.0", + "@pubsweet/ui": "^9.1.2", + "formik": "^1.3.0", "prop-types": "^15.5.10", "react-redux": "^5.0.6", "react-router-dom": "^4.2.2", @@ -15,8 +15,13 @@ "recompose": "^0.26.0" }, "peerDependencies": { + "config": "^3.0.1", + "graphql-tag": "^2.10.0", + "lodash": "^4.17.11", "pubsweet-client": ">=1.0.0", - "react": ">=15" + "react": ">=15", + "react-apollo": "^2.3.3", + "styled-components": "^4.1.3" }, "repository": { "type": "git", diff --git a/packages/components/Navigation/CHANGELOG.md b/packages/components/Navigation/CHANGELOG.md index b9e2572563e8cc5d38c46ac94175a329db8c1e74..fe13935b339fded558e94c91b53ceccea5616d44 100644 --- a/packages/components/Navigation/CHANGELOG.md +++ b/packages/components/Navigation/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-navigation@1.0.6...pubsweet-component-navigation@1.0.7) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-navigation + + + + + +## [1.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-navigation@1.0.5...pubsweet-component-navigation@1.0.6) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-navigation + + + + + ## [1.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-navigation@1.0.4...pubsweet-component-navigation@1.0.5) (2019-01-09) **Note:** Version bump only for package pubsweet-component-navigation diff --git a/packages/components/Navigation/package.json b/packages/components/Navigation/package.json index 25f675f3a7f5dfe3ef74500c67b7bfde579349b1..ac8332477fed8ca1889b7d738b21387d6cb9a96f 100644 --- a/packages/components/Navigation/package.json +++ b/packages/components/Navigation/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-navigation", - "version": "1.0.5", + "version": "1.0.7", "description": "Basic navigation bar component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/PasswordReset-server/CHANGELOG.md b/packages/components/PasswordReset-server/CHANGELOG.md index e16aec92f31635b038b2139d30e4d15c83562c0e..e5158f1763b8f161d9e8c3df1ca5d19c864460a0 100644 --- a/packages/components/PasswordReset-server/CHANGELOG.md +++ b/packages/components/PasswordReset-server/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-backend@2.0.1...pubsweet-component-password-reset-backend@2.0.2) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-password-reset-backend + + + + + +## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-backend@2.0.0...pubsweet-component-password-reset-backend@2.0.1) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-password-reset-backend + + + + + # [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-backend@1.0.6...pubsweet-component-password-reset-backend@2.0.0) (2019-01-09) diff --git a/packages/components/PasswordReset-server/package.json b/packages/components/PasswordReset-server/package.json index db1b9b491aacf70a9cb9c7553840dea35bc79253..481f0e833635072f204e7d6675e0dcee15248d39 100644 --- a/packages/components/PasswordReset-server/package.json +++ b/packages/components/PasswordReset-server/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-password-reset-backend", - "version": "2.0.0", + "version": "2.0.2", "description": "Password reset backend component for PubSweet", "main": "index.js", "scripts": {}, diff --git a/packages/components/PasswordResetFrontend/CHANGELOG.md b/packages/components/PasswordResetFrontend/CHANGELOG.md index 7d6f9bfd8a355cdb508575f3c15c803aa8d78657..2ffc55079a2cc7548d95d7a5e5ea2fc813af119c 100644 --- a/packages/components/PasswordResetFrontend/CHANGELOG.md +++ b/packages/components/PasswordResetFrontend/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-frontend@3.0.5...pubsweet-component-password-reset-frontend@3.0.6) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-password-reset-frontend + + + + + +## [3.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-frontend@3.0.4...pubsweet-component-password-reset-frontend@3.0.5) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-password-reset-frontend + + + + + ## [3.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-frontend@3.0.3...pubsweet-component-password-reset-frontend@3.0.4) (2019-01-09) **Note:** Version bump only for package pubsweet-component-password-reset-frontend diff --git a/packages/components/PasswordResetFrontend/package.json b/packages/components/PasswordResetFrontend/package.json index 6d45df05601cb73e0f4daddd865d4edc12c1bcd2..158d34cfd2ecfb47de52910e9f7d3b9fea626b6a 100644 --- a/packages/components/PasswordResetFrontend/package.json +++ b/packages/components/PasswordResetFrontend/package.json @@ -1,13 +1,13 @@ { "name": "pubsweet-component-password-reset-frontend", - "version": "3.0.4", + "version": "3.0.6", "description": "Password reset frontend component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", "prop-types": "^15.5.10", "query-string": "^5.0.0", "react-router": "^4.2.0", @@ -15,7 +15,8 @@ }, "peerDependencies": { "pubsweet-client": ">=1.0.0", - "react": ">=16" + "react": ">=16", + "react-router-dom": "^4.3.1" }, "repository": { "type": "git", diff --git a/packages/components/PollingClient/CHANGELOG.md b/packages/components/PollingClient/CHANGELOG.md index 589e18324323759b043c987ef19d086e47513e4f..98c7673a5a697c1ce85112ea02c1c09be963de59 100644 --- a/packages/components/PollingClient/CHANGELOG.md +++ b/packages/components/PollingClient/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-polling-client@0.0.4...@pubsweet/component-polling-client@0.0.5) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/component-polling-client + + + + + +## [0.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-polling-client@0.0.3...@pubsweet/component-polling-client@0.0.4) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/component-polling-client + + + + + <a name="0.0.3"></a> ## [0.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-polling-client@0.0.2...@pubsweet/component-polling-client@0.0.3) (2018-04-03) diff --git a/packages/components/PollingClient/package.json b/packages/components/PollingClient/package.json index 12db4505afc38297ea53b8206a84a9d3f3391987..87efa97b4468b706016cd0148b76a458602060f2 100644 --- a/packages/components/PollingClient/package.json +++ b/packages/components/PollingClient/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/component-polling-client", - "version": "0.0.3", + "version": "0.0.5", "description": "A client component that poll the server in order to release the lock of a resource", "main": "index.js", "repository": { @@ -16,6 +16,7 @@ "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { + "isomorphic-fetch": "^2.2.1", "react-redux": "^5.0.6", "redux": "^3.7.2" }, diff --git a/packages/components/PostsManager/CHANGELOG.md b/packages/components/PostsManager/CHANGELOG.md index 1137ccb7b59fab3ecba880d2cdaea258567bd06a..2055c8c6c376c4b923688a29100d0719cd099d83 100644 --- a/packages/components/PostsManager/CHANGELOG.md +++ b/packages/components/PostsManager/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.51](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-posts-manager@1.0.50...pubsweet-component-posts-manager@1.0.51) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-posts-manager + + + + + +## [1.0.50](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-posts-manager@1.0.49...pubsweet-component-posts-manager@1.0.50) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-posts-manager + + + + + ## [1.0.49](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-posts-manager@1.0.48...pubsweet-component-posts-manager@1.0.49) (2019-01-09) **Note:** Version bump only for package pubsweet-component-posts-manager diff --git a/packages/components/PostsManager/package.json b/packages/components/PostsManager/package.json index 15a536e5f0cdb9f43f5b81f98c2c5458b302ca7c..d875910248d48c532cbb40ab3e9e95898800f247 100644 --- a/packages/components/PostsManager/package.json +++ b/packages/components/PostsManager/package.json @@ -1,21 +1,22 @@ { "name": "pubsweet-component-posts-manager", - "version": "1.0.49", + "version": "1.0.51", "description": "Basic Posts manager component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^9.1.0", + "@pubsweet/ui": "^9.1.2", "prop-types": "^15.5.10", - "pubsweet-component-form-group": "^2.0.0", + "pubsweet-component-form-group": "^2.0.2", "react-redux": "^5.0.6", "react-router-dom": "^4.2.2", "redux": "^3.7.2" }, "peerDependencies": { "pubsweet-client": ">=1.0.0", - "react": ">=16" + "react": ">=16", + "react-router": "^4.3.1" }, "repository": { "type": "git", diff --git a/packages/components/SendEmail-server/CHANGELOG.md b/packages/components/SendEmail-server/CHANGELOG.md index 74999753b39066be82cdf4ffa2778aadcf92d8fa..fc0416dc2a59e29d9d43304b8c6ef89f9b32273f 100644 --- a/packages/components/SendEmail-server/CHANGELOG.md +++ b/packages/components/SendEmail-server/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-send-email@0.2.6...@pubsweet/component-send-email@0.2.7) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/component-send-email + + + + + +## [0.2.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-send-email@0.2.5...@pubsweet/component-send-email@0.2.6) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/component-send-email + + + + + ## [0.2.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/component-send-email@0.2.4...@pubsweet/component-send-email@0.2.5) (2019-01-09) **Note:** Version bump only for package @pubsweet/component-send-email diff --git a/packages/components/SendEmail-server/package.json b/packages/components/SendEmail-server/package.json index 19654cba00cc008975150fc5d362d8bc153fd279..f950a307417e39fea3c6e72bc3c5fd3c3042e5fc 100644 --- a/packages/components/SendEmail-server/package.json +++ b/packages/components/SendEmail-server/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/component-send-email", - "version": "0.2.5", + "version": "0.2.7", "description": "send email configured for pubsweet", "license": "MIT", "author": "Collaborative Knowledge Foundation", @@ -13,7 +13,8 @@ "nodemailer": "^4.4.2" }, "peerDependencies": { - "@pubsweet/logger": "^0.0.1" + "@pubsweet/logger": "^0.0.1", + "config": "^3.0.1" }, "repository": { "type": "git", diff --git a/packages/components/Signup/CHANGELOG.md b/packages/components/Signup/CHANGELOG.md index 7d99050b42d55a1d6eb7c2e87adade8f4c5dc334..c7629a5d928c07c2d65d08dc47c2ef6c9aec4944 100644 --- a/packages/components/Signup/CHANGELOG.md +++ b/packages/components/Signup/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.40](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-signup@1.0.39...pubsweet-component-signup@1.0.40) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-signup + + + + + +## [1.0.39](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-signup@1.0.38...pubsweet-component-signup@1.0.39) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-signup + + + + + ## [1.0.38](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-signup@1.0.37...pubsweet-component-signup@1.0.38) (2019-01-09) **Note:** Version bump only for package pubsweet-component-signup diff --git a/packages/components/Signup/package.json b/packages/components/Signup/package.json index b34eb57ac09533b186d1eaee3303a6ac29bc9a0d..3f9b0e0fe3b0527c4d8d709497eadcc0a28246fe 100644 --- a/packages/components/Signup/package.json +++ b/packages/components/Signup/package.json @@ -1,21 +1,24 @@ { "name": "pubsweet-component-signup", - "version": "1.0.38", + "version": "1.0.40", "description": "Basic signup form component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^9.1.0", + "@pubsweet/ui": "^9.1.2", "prop-types": "^15.5.10", "react-bootstrap": "^0.32.0", "react-redux": "^5.0.6", "react-router": "^4.2.0", - "redux": "^3.7.2" + "recompose": "^0.30.0", + "redux": "^3.7.2", + "redux-form": "^7.4.2" }, "peerDependencies": { "pubsweet-client": ">=1.0.0", - "react": ">=16" + "react": ">=16", + "react-router-redux": "^4.0.8" }, "repository": { "type": "git", diff --git a/packages/components/SortableList/CHANGELOG.md b/packages/components/SortableList/CHANGELOG.md index db1eb31c7691334ce9cc0aee8abb43710021d884..b674984d8d1f99d93684cbcd7234a6fb8387083d 100644 --- a/packages/components/SortableList/CHANGELOG.md +++ b/packages/components/SortableList/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-sortable-list@0.1.6...pubsweet-component-sortable-list@0.1.7) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-sortable-list + + + + + +## [0.1.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-sortable-list@0.1.5...pubsweet-component-sortable-list@0.1.6) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-sortable-list + + + + + ## [0.1.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-sortable-list@0.1.4...pubsweet-component-sortable-list@0.1.5) (2019-01-09) **Note:** Version bump only for package pubsweet-component-sortable-list diff --git a/packages/components/SortableList/package.json b/packages/components/SortableList/package.json index f64a76ff0cc23a1229852d73f5e61dafeb8752e0..8da1f054323e3c6498abefcbf1057ecfafc68bfe 100644 --- a/packages/components/SortableList/package.json +++ b/packages/components/SortableList/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-sortable-list", - "version": "0.1.5", + "version": "0.1.7", "main": "src", "license": "MIT", "dependencies": { @@ -8,7 +8,9 @@ "recompose": "^0.26.0" }, "peerDependencies": { - "react": ">=15" + "lodash": "^4.17.11", + "react": ">=15", + "react-dom": "^16.7.0" }, "devDependencies": { "react-dnd-test-backend": "^7.0.0" diff --git a/packages/components/TeamsManager/CHANGELOG.md b/packages/components/TeamsManager/CHANGELOG.md index ddaf1f3fb26091d35a9efc4cdc102a624b29e1dd..35858890947f2314b59a592bfe5f71df4a808c65 100644 --- a/packages/components/TeamsManager/CHANGELOG.md +++ b/packages/components/TeamsManager/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.33](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-teams-manager@1.1.32...pubsweet-component-teams-manager@1.1.33) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-teams-manager + + + + + +## [1.1.32](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-teams-manager@1.1.31...pubsweet-component-teams-manager@1.1.32) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-teams-manager + + + + + ## [1.1.31](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-teams-manager@1.1.30...pubsweet-component-teams-manager@1.1.31) (2019-01-09) **Note:** Version bump only for package pubsweet-component-teams-manager diff --git a/packages/components/TeamsManager/package.json b/packages/components/TeamsManager/package.json index 4655f55e75ec1d65e572d59fc74730bdafe965ed..f77be143344d28ce18543fd79584184ad5d497f1 100644 --- a/packages/components/TeamsManager/package.json +++ b/packages/components/TeamsManager/package.json @@ -1,13 +1,14 @@ { "name": "pubsweet-component-teams-manager", - "version": "1.1.31", + "version": "1.1.33", "description": "Basic teams manager component for PubSweet", "main": "src/index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^9.1.0", + "@pubsweet/ui": "^9.1.2", "prop-types": "^15.5.10", + "pubsweet-client": "^8.0.3", "react-dom": "^16.2.0", "react-redux": "^5.0.6", "redux": "^3.7.2" @@ -16,5 +17,9 @@ "type": "git", "url": "https://gitlab.coko.foundation/pubsweet/pubsweet", "path": "TeamsManager" + }, + "peerDependencies": { + "config": "^3.0.1", + "react": "^16.7.0" } } diff --git a/packages/components/UsersManager/CHANGELOG.md b/packages/components/UsersManager/CHANGELOG.md index 8c60adaaa945591e4e10be5cb5006762a3747435..5479cb8582fd3a204db2f400f77d667dc99f2b6e 100644 --- a/packages/components/UsersManager/CHANGELOG.md +++ b/packages/components/UsersManager/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-users-manager@2.0.4...pubsweet-component-users-manager@2.0.5) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-users-manager + + + + + +## [2.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-users-manager@2.0.3...pubsweet-component-users-manager@2.0.4) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-users-manager + + + + + ## [2.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-users-manager@2.0.2...pubsweet-component-users-manager@2.0.3) (2019-01-09) **Note:** Version bump only for package pubsweet-component-users-manager diff --git a/packages/components/UsersManager/package.json b/packages/components/UsersManager/package.json index 2b36ba9766eb643d9f857fce26689aa813928309..59411b533a7d90f5f9fb1edfdc9390650120d10e 100644 --- a/packages/components/UsersManager/package.json +++ b/packages/components/UsersManager/package.json @@ -1,16 +1,18 @@ { "name": "pubsweet-component-users-manager", - "version": "2.0.3", + "version": "2.0.5", "description": "Basic navigation bar component for PubSweet", "main": "src/index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { + "@pubsweet/ui": "^9.1.2", "prop-types": "^15.5.10", "react-redux": "^5.0.6", "redux": "^3.7.2" }, "peerDependencies": { + "config": "^3.0.1", "pubsweet-client": ">=1.0.0", "react": ">=16" }, diff --git a/packages/components/model-blog/CHANGELOG.md b/packages/components/model-blog/CHANGELOG.md index 2eff7fed4503292304c5df08ee9b295b04e8f5a7..bfd6e8643b7a668e01e3c5378040704575d501f3 100644 --- a/packages/components/model-blog/CHANGELOG.md +++ b/packages/components/model-blog/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-blog@0.0.3...@pubsweet/model-blog@0.0.4) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/model-blog + + + + + +## [0.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-blog@0.0.2...@pubsweet/model-blog@0.0.3) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/model-blog + + + + + ## 0.0.2 (2019-01-09) **Note:** Version bump only for package @pubsweet/model-blog diff --git a/packages/components/model-blog/package.json b/packages/components/model-blog/package.json index 058a2ec33c17ddde3cd18611ee86fd745b139af9..47e08e6271c69be1c95ab9af8870e11b3cf759d2 100644 --- a/packages/components/model-blog/package.json +++ b/packages/components/model-blog/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/model-blog", - "version": "0.0.2", + "version": "0.0.4", "description": "Testing model for pubsweet-starter and pubsweet-server", "main": "src/index.js", "scripts": { @@ -9,7 +9,7 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { - "@pubsweet/model-collection": "^2.0.0" + "@pubsweet/model-collection": "^3.0.1" }, "publishConfig": { "access": "public" diff --git a/packages/components/model-blogpost/CHANGELOG.md b/packages/components/model-blogpost/CHANGELOG.md index 3f8ec113845c4298cfbedfefa9ab4123721bc97b..02d184974d3788fa94b9e8d3e94edd1457367054 100644 --- a/packages/components/model-blogpost/CHANGELOG.md +++ b/packages/components/model-blogpost/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-blogpost@0.0.3...@pubsweet/model-blogpost@0.0.4) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/model-blogpost + + + + + +## [0.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-blogpost@0.0.2...@pubsweet/model-blogpost@0.0.3) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/model-blogpost + + + + + ## 0.0.2 (2019-01-09) **Note:** Version bump only for package @pubsweet/model-blogpost diff --git a/packages/components/model-blogpost/package.json b/packages/components/model-blogpost/package.json index 44c262eee5440d161181d152aa68b6dc73cd41b4..2d1ca2e0d3ab1188795b66084c91822b63cbec7e 100644 --- a/packages/components/model-blogpost/package.json +++ b/packages/components/model-blogpost/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/model-blogpost", - "version": "0.0.2", + "version": "0.0.4", "description": "", "main": "src/index.js", "scripts": { @@ -9,7 +9,7 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { - "@pubsweet/model-fragment": "^1.1.0" + "@pubsweet/model-fragment": "^2.0.1" }, "publishConfig": { "access": "public" diff --git a/packages/components/model-collection/CHANGELOG.md b/packages/components/model-collection/CHANGELOG.md index 22ad058b45da041c64258a8aa11daa6c981ff8c1..ecac443b0c771c3b08fd9231f190c406d00b07b9 100644 --- a/packages/components/model-collection/CHANGELOG.md +++ b/packages/components/model-collection/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-collection@3.0.0...@pubsweet/model-collection@3.0.1) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/model-collection + + + + + +# [3.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-collection@2.0.0...@pubsweet/model-collection@3.0.0) (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # 2.0.0 (2019-01-09) diff --git a/packages/components/model-collection/package.json b/packages/components/model-collection/package.json index 12133d875044b93ff140ad03ca1e47a8efe9999a..d5fd0675552bc5cbe0472c1407df0234b091baf9 100644 --- a/packages/components/model-collection/package.json +++ b/packages/components/model-collection/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/model-collection", - "version": "2.0.0", + "version": "3.0.1", "description": "", "main": "src/index.js", "scripts": { @@ -9,9 +9,17 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { - "@pubsweet/base-model": "^1.2.0" + "@pubsweet/base-model": "^2.0.1", + "@pubsweet/models": "^0.1.2", + "http-status-codes": "^1.3.0", + "passport": "^0.4.0", + "pubsweet-sse": "^1.0.5" }, "publishConfig": { "access": "public" + }, + "peerDependencies": { + "lodash": "^4.17.11", + "pubsweet-server": "^11.0.0" } } diff --git a/packages/components/model-fragment/CHANGELOG.md b/packages/components/model-fragment/CHANGELOG.md index b36290ffe50e9d8ff4fc40e0b2841ca2f6ccc2df..f48050814b1262308b3133193368d2a7d1b4a832 100644 --- a/packages/components/model-fragment/CHANGELOG.md +++ b/packages/components/model-fragment/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-fragment@2.0.0...@pubsweet/model-fragment@2.0.1) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/model-fragment + + + + + +# [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-fragment@1.1.0...@pubsweet/model-fragment@2.0.0) (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # 1.1.0 (2019-01-09) diff --git a/packages/components/model-fragment/package.json b/packages/components/model-fragment/package.json index 7e9c6dea67c984e265463bc3c82f684661d220a9..4ac95dc47e4b8b73c904ec681d8d2d2efd6564cc 100644 --- a/packages/components/model-fragment/package.json +++ b/packages/components/model-fragment/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/model-fragment", - "version": "1.1.0", + "version": "2.0.1", "description": "", "main": "src/index.js", "scripts": { @@ -9,7 +9,16 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { - "@pubsweet/base-model": "^1.2.0" + "@pubsweet/base-model": "^2.0.1", + "@pubsweet/errors": "^2.0.1", + "@pubsweet/model-team": "^1.0.3", + "@pubsweet/models": "^0.1.2", + "http-status-codes": "^1.3.0", + "passport": "^0.4.0", + "pubsweet-sse": "^1.0.5" + }, + "peerDependencies": { + "pubsweet-server": "^11.0.0" }, "publishConfig": { "access": "public" diff --git a/packages/components/model-fragment/src/api_fragments.js b/packages/components/model-fragment/src/api_fragments.js index b228bef4f76196c2369587cc323efd6bacce0d12..d9f77801e9b46bec9003ef26bd997421657e93d9 100644 --- a/packages/components/model-fragment/src/api_fragments.js +++ b/packages/components/model-fragment/src/api_fragments.js @@ -23,7 +23,7 @@ const authBearerAndPublic = passport.authenticate(['bearer', 'anonymous'], { const FragmentsAPI = app => { const authsome = require('pubsweet-server/src/helpers/authsome') - const { AuthorizationError } = require('pubsweet-server/src/errors') + const { AuthorizationError } = require('@pubsweet/errors') const { Team, User, Fragment, Collection } = require('@pubsweet/models') diff --git a/packages/components/model-team/CHANGELOG.md b/packages/components/model-team/CHANGELOG.md index f2eade9ec7b1233a2f4de28d7290fec3a7cfce77..504e778f0d244266e93f7b0fd0fd5dd7821bad8a 100644 --- a/packages/components/model-team/CHANGELOG.md +++ b/packages/components/model-team/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-team@1.0.2...@pubsweet/model-team@1.0.3) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/model-team + + + + + +## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-team@1.0.1...@pubsweet/model-team@1.0.2) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/model-team + + + + + ## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-team@1.0.1-alpha.0...@pubsweet/model-team@1.0.1) (2019-01-09) **Note:** Version bump only for package @pubsweet/model-team diff --git a/packages/components/model-team/package.json b/packages/components/model-team/package.json index 1e18322287c5e9de92c4060ff6b045dcc5a5c57f..857bc14b1fc49524dbac06487f9007fabe9d1967 100644 --- a/packages/components/model-team/package.json +++ b/packages/components/model-team/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/model-team", - "version": "1.0.1", + "version": "1.0.3", "description": "", "main": "src/index.js", "scripts": { @@ -9,9 +9,19 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { - "@pubsweet/base-model": "^1.2.0" + "@pubsweet/base-model": "^2.0.1", + "@pubsweet/logger": "^0.2.11", + "http-status-codes": "^1.3.0", + "passport": "^0.4.0" }, "publishConfig": { "access": "public" + }, + "peerDependencies": { + "@pubsweet/model-user": "^2.0.0", + "config": "^3.0.1", + "lodash": "^4.17.11", + "pubsweet-server": "^11.0.0", + "pubsweet-sse": "^1.0.3" } } diff --git a/packages/components/model-user/CHANGELOG.md b/packages/components/model-user/CHANGELOG.md index 4fd12bd60a137c8fcead5125ad55af919c1935be..2ee64ac5cbd5d87256ddafcb8a511228477c9100 100644 --- a/packages/components/model-user/CHANGELOG.md +++ b/packages/components/model-user/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-user@3.0.0...@pubsweet/model-user@3.0.1) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/model-user + + + + + +# [3.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-user@2.0.0...@pubsweet/model-user@3.0.0) (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/model-user@1.0.1-alpha.0...@pubsweet/model-user@2.0.0) (2019-01-09) diff --git a/packages/components/model-user/package.json b/packages/components/model-user/package.json index 1e8e9a1c31bfc7b56c4138f604f82b97c426c968..61869e899b38822f13b57b173b0e6b6f73a9f09b 100644 --- a/packages/components/model-user/package.json +++ b/packages/components/model-user/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/model-user", - "version": "2.0.0", + "version": "3.0.1", "description": "", "main": "src/index.js", "scripts": { @@ -9,9 +9,23 @@ "author": "Adam Hyde", "license": "MIT", "dependencies": { - "@pubsweet/base-model": "^1.2.0" + "@pubsweet/base-model": "^2.0.1", + "@pubsweet/errors": "^2.0.1", + "@pubsweet/logger": "^0.2.11", + "bcrypt": "3.0.2", + "http-status-codes": "^1.3.0", + "jsonwebtoken": "^8.4.0", + "passport": "^0.4.0", + "passport-anonymous": "^1.0.1", + "passport-http-bearer": "^1.0.1", + "passport-local": "^1.0.0" }, "publishConfig": { "access": "public" + }, + "peerDependencies": { + "config": "^3.0.1", + "lodash": "^4.17.11", + "pubsweet-server": "^11.0.0" } } diff --git a/packages/components/model-user/src/api_users.js b/packages/components/model-user/src/api_users.js index 4a5f3754086b602b14e9e7254e7a21282f7290ca..314ad4b5f5b335716f771607ce30ae1cad84e103 100644 --- a/packages/components/model-user/src/api_users.js +++ b/packages/components/model-user/src/api_users.js @@ -11,7 +11,7 @@ const authentication = require('./authentication') const UsersAPI = app => { const User = require('./user') - const { ValidationError } = require('pubsweet-server/src/errors') + const { ValidationError } = require('@pubsweet/errors') const { util: { diff --git a/packages/components/model-user/src/user.js b/packages/components/model-user/src/user.js index ea77450423df97e538297caf5e4a36fcc359f770..6ebdfeb198f45419cc5d077b488b2d4f671dfa4c 100644 --- a/packages/components/model-user/src/user.js +++ b/packages/components/model-user/src/user.js @@ -82,7 +82,7 @@ class User extends BaseModel { } static async isUniq(user) { - const { ConflictError } = require('pubsweet-server/src/errors') + const { ConflictError } = require('@pubsweet/errors') let result diff --git a/packages/components/package.json b/packages/components/package.json index 7722be2787b4597a8c76767360bcb744a275cae2..6756cc1a1f1b87e7f51e259084c1052e8f1adaaa 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-components", - "version": "11.0.0", + "version": "12.0.1", "private": true, "license": "MIT" } diff --git a/packages/components/xpub-connect/CHANGELOG.md b/packages/components/xpub-connect/CHANGELOG.md index 494ffaac302e9630e93bc98528f0ae2584a46cae..d5ef8a07e0d3eb29b4dfbdff361d51f21fd59630 100644 --- a/packages/components/xpub-connect/CHANGELOG.md +++ b/packages/components/xpub-connect/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-connect@2.0.5...xpub-connect@2.0.6) (2019-01-14) + +**Note:** Version bump only for package xpub-connect + + + + + +## [2.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-connect@2.0.4...xpub-connect@2.0.5) (2019-01-13) + +**Note:** Version bump only for package xpub-connect + + + + + ## [2.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-connect@2.0.3...xpub-connect@2.0.4) (2019-01-09) **Note:** Version bump only for package xpub-connect diff --git a/packages/components/xpub-connect/package.json b/packages/components/xpub-connect/package.json index a1e0b09277f5e3ce3e3f830ada6fe126ebceaeb9..a46a21472f528b22a532dd181c829ea11615231f 100644 --- a/packages/components/xpub-connect/package.json +++ b/packages/components/xpub-connect/package.json @@ -1,6 +1,6 @@ { "name": "xpub-connect", - "version": "2.0.4", + "version": "2.0.6", "main": "src", "author": "Collaborative Knowledge Foundation", "license": "MIT", @@ -9,7 +9,8 @@ "dist" ], "dependencies": { - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui-toolkit": "^2.0.6", + "pubsweet-client": "^8.0.3", "react-redux": "^5.0.2", "react-router-dom": "^4.2.2", "recompose": "^0.26.0", diff --git a/packages/components/xpub-dashboard/CHANGELOG.md b/packages/components/xpub-dashboard/CHANGELOG.md index 83855653549391a0039e0d6b294b2a2c77f66dc0..aa626c765de161b57abce090eb8ffe444bb84506 100644 --- a/packages/components/xpub-dashboard/CHANGELOG.md +++ b/packages/components/xpub-dashboard/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-dashboard@4.0.5...pubsweet-component-xpub-dashboard@4.0.6) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-dashboard + + + + + +## [4.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-dashboard@4.0.4...pubsweet-component-xpub-dashboard@4.0.5) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-dashboard + + + + + ## [4.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-dashboard@4.0.3...pubsweet-component-xpub-dashboard@4.0.4) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-dashboard diff --git a/packages/components/xpub-dashboard/package.json b/packages/components/xpub-dashboard/package.json index d8b8a85628e8cf79a1cd2c94c22517c27fb39d73..9d5b0172fd999dd816cc09a14777b94e4a472011 100644 --- a/packages/components/xpub-dashboard/package.json +++ b/packages/components/xpub-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-dashboard", - "version": "4.0.4", + "version": "4.0.6", "main": "src", "author": "Collaborative Knowledge Foundation", "license": "MIT", @@ -9,8 +9,8 @@ "dist" ], "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", "classnames": "^2.2.5", "lodash": "^4.17.4", "prop-types": "^15.5.10", @@ -21,10 +21,11 @@ "react-router-dom": "^4.2.2", "recompose": "^0.26.0", "styled-components": "^4.1.1", - "xpub-connect": "^2.0.4", + "xpub-connect": "^2.0.6", "xpub-journal": "^0.0.6", - "xpub-selectors": "^0.2.5", - "xpub-upload": "^0.0.7" + "xpub-selectors": "^0.2.7", + "xpub-upload": "^0.0.7", + "xpub-with-context": "^0.1.7" }, "devDependencies": { "babel-core": "^6.26.0", @@ -42,7 +43,10 @@ "redux-mock-store": "^1.4.0" }, "peerDependencies": { + "config": "^3.0.1", + "graphql-tag": "^2.10.0", "pubsweet-client": ">=1.0.0", - "react": ">=16" + "react": ">=16", + "react-apollo": "^2.3.3" } } diff --git a/packages/components/xpub-edit/CHANGELOG.md b/packages/components/xpub-edit/CHANGELOG.md index 55fb0416bf399f8fa1414a37ef9a1b8f0395947b..ff629676565bef4d8cdf3a1b0c00fb976517d490 100644 --- a/packages/components/xpub-edit/CHANGELOG.md +++ b/packages/components/xpub-edit/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.5.9](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-edit@2.5.8...xpub-edit@2.5.9) (2019-01-14) + +**Note:** Version bump only for package xpub-edit + + + + + +## [2.5.8](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-edit@2.5.7...xpub-edit@2.5.8) (2019-01-13) + +**Note:** Version bump only for package xpub-edit + + + + + ## [2.5.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-edit@2.5.6...xpub-edit@2.5.7) (2019-01-09) **Note:** Version bump only for package xpub-edit diff --git a/packages/components/xpub-edit/package.json b/packages/components/xpub-edit/package.json index ea9706ed51a3e2365730b941310ff77eccaf2440..4ee868b4addff9a7832e860641d1b011276d9e7a 100644 --- a/packages/components/xpub-edit/package.json +++ b/packages/components/xpub-edit/package.json @@ -1,6 +1,6 @@ { "name": "xpub-edit", - "version": "2.5.7", + "version": "2.5.9", "license": "MIT", "files": [ "dist", @@ -8,7 +8,9 @@ ], "main": "src", "dependencies": { - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", + "classnames": "^2.2.6", "prosemirror-commands": "^1.0.1", "prosemirror-dropcursor": "^1.0.0", "prosemirror-gapcursor": "^1.0.0", @@ -31,6 +33,9 @@ "faker": "^4.1.0" }, "peerDependencies": { - "react": ">=16.3" + "lodash": "^4.17.11", + "prop-types": "^15.6.2", + "react": ">=16.3", + "styled-components": "^4.1.3" } } diff --git a/packages/components/xpub-edit/src/components/main/MainEditor.js b/packages/components/xpub-edit/src/components/main/MainEditor.js index 0a14cf3b03516a44f4a7ccf81885f528d98a3938..87c4f98eddd52acd1fc67b9f2c6ffb99ed1381b8 100644 --- a/packages/components/xpub-edit/src/components/main/MainEditor.js +++ b/packages/components/xpub-edit/src/components/main/MainEditor.js @@ -5,12 +5,18 @@ const MainEditor = props => ( <ConfigurableEditor bold bulletlist - createtabinsertimage createtable insertimage + italic joinaboveblock liftitem + orderedlist + redo + smallcaps + subscript + superscript table + undo {...props} /> ) diff --git a/packages/components/xpub-find-reviewers/CHANGELOG.md b/packages/components/xpub-find-reviewers/CHANGELOG.md index 9e165e053bcce49abe4305174e6bc9f3215daf92..2499266eeb64f843b89d8ca1b6a5dc2befeddc7a 100644 --- a/packages/components/xpub-find-reviewers/CHANGELOG.md +++ b/packages/components/xpub-find-reviewers/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.23](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-find-reviewers@0.0.22...pubsweet-component-xpub-find-reviewers@0.0.23) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-find-reviewers + + + + + +## [0.0.22](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-find-reviewers@0.0.21...pubsweet-component-xpub-find-reviewers@0.0.22) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-find-reviewers + + + + + ## [0.0.21](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-find-reviewers@0.0.20...pubsweet-component-xpub-find-reviewers@0.0.21) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-find-reviewers diff --git a/packages/components/xpub-find-reviewers/package.json b/packages/components/xpub-find-reviewers/package.json index 9c9829cb7e84c5e3061a655dc603a0fc8baa1172..3ef1d1a28ed1a32cc46fa37657787893eaacf2c1 100644 --- a/packages/components/xpub-find-reviewers/package.json +++ b/packages/components/xpub-find-reviewers/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-find-reviewers", - "version": "0.0.21", + "version": "0.0.23", "main": "src", "author": "Collaborative Knowledge Foundation", "license": "MIT", @@ -9,9 +9,17 @@ "dist" ], "dependencies": { + "@pubsweet/ui": "^9.1.2", + "classnames": "^2.2.6", + "faker": "^4.1.0", + "pubsweet-client": "^8.0.3", + "pubsweet-component-ink-frontend": "^1.0.2", "react-redux": "^5.0.2", "react-router-dom": "^4.2.2", - "recompose": "^0.26.0" + "recompose": "^0.26.0", + "xpub-connect": "^2.0.6", + "xpub-edit": "^2.5.9", + "xpub-selectors": "^0.2.7" }, "devDependencies": { "babel-core": "^6.26.0", @@ -22,8 +30,11 @@ "faker": "^4.1.0" }, "peerDependencies": { + "config": "^3.0.1", + "lodash": "^4.17.11", "react": ">=16", "react-redux": "^5.0.2", - "react-router-dom": "^4.2.2" + "react-router-dom": "^4.2.2", + "redux-form": "^8.1.0" } } diff --git a/packages/components/xpub-formbuilder/CHANGELOG.md b/packages/components/xpub-formbuilder/CHANGELOG.md index 3d22bc0a7f16c1a8070e440837235de55aa19647..fbd9f8f75a096fff9a558d0cc822aedc9b6f7c74 100644 --- a/packages/components/xpub-formbuilder/CHANGELOG.md +++ b/packages/components/xpub-formbuilder/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-formbuilder@1.0.5...pubsweet-component-xpub-formbuilder@1.0.6) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-formbuilder + + + + + +## [1.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-formbuilder@1.0.4...pubsweet-component-xpub-formbuilder@1.0.5) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-formbuilder + + + + + ## [1.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-formbuilder@1.0.3...pubsweet-component-xpub-formbuilder@1.0.4) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-formbuilder diff --git a/packages/components/xpub-formbuilder/package.json b/packages/components/xpub-formbuilder/package.json index fdbe3b4d29d1c01b1a65b812f2c59e9fc0113ffa..633e5392e0f701d78d68962f2b70400e42d6269c 100644 --- a/packages/components/xpub-formbuilder/package.json +++ b/packages/components/xpub-formbuilder/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-formbuilder", - "version": "1.0.4", + "version": "1.0.6", "description": "Form builder component for Xpub", "main": "src/index.js", "author": "Collaborative Knowledge Foundation", @@ -10,14 +10,19 @@ "dist" ], "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", + "passport": "^0.4.0", "prop-types": "^15.5.10", + "pubsweet-component-ink-frontend": "^1.0.2", "react-dom": "^16.2.0", "react-redux": "^5.0.6", "recompose": "^0.26.0", "redux": "^3.7.2", - "styled-components": "^4.1.1" + "redux-form": "^7.4.2", + "styled-components": "^4.1.1", + "xpub-connect": "^2.0.6", + "xpub-edit": "^2.5.9" }, "devDependencies": { "babel-core": "^6.26.0", @@ -30,6 +35,8 @@ "enzyme-adapter-react-16": "^1.6.0" }, "peerDependencies": { + "config": "^3.0.1", + "lodash": "^4.17.11", "pubsweet-client": ">=2.1.0", "react": ">=16" } diff --git a/packages/components/xpub-manuscript/CHANGELOG.md b/packages/components/xpub-manuscript/CHANGELOG.md index a7a5ea9016251908c2104cc090ec5e91195461bb..4ea5ac1c8dfbd0548612342772c64c66c1091aab 100644 --- a/packages/components/xpub-manuscript/CHANGELOG.md +++ b/packages/components/xpub-manuscript/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-manuscript@0.6.6...pubsweet-component-xpub-manuscript@0.6.7) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-manuscript + + + + + +## [0.6.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-manuscript@0.6.5...pubsweet-component-xpub-manuscript@0.6.6) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-manuscript + + + + + ## [0.6.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-manuscript@0.6.4...pubsweet-component-xpub-manuscript@0.6.5) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-manuscript diff --git a/packages/components/xpub-manuscript/package.json b/packages/components/xpub-manuscript/package.json index 651507b3c1aa129ef278cb7f42fcdbe18a2b698d..9befc27b8ef23ac085e5656ab33f378e8e05c397 100644 --- a/packages/components/xpub-manuscript/package.json +++ b/packages/components/xpub-manuscript/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-manuscript", - "version": "0.6.5", + "version": "0.6.7", "license": "MIT", "files": [ "src", @@ -11,14 +11,17 @@ "prop-types": "^15.5.10", "recompose": "^0.26.0", "wax-prose-mirror": "^0.0.8", - "xpub-connect": "^2.0.4", - "xpub-selectors": "^0.2.5" + "xpub-connect": "^2.0.6", + "xpub-selectors": "^0.2.7" }, "peerDependencies": { + "apollo-client-preset": "^1.0.8", "pubsweet-client": ">=2.1.0", "react": ">=16", + "react-apollo": "^2.3.3", "react-redux": ">=5.0.2", - "react-router-dom": ">=4.2.2" + "react-router-dom": ">=4.2.2", + "styled-components": "^4.1.3" }, "devDependencies": { "babel-core": "^6.26.0", @@ -29,7 +32,7 @@ "faker": "^4.1.0", "file-loader": "^1.1.5", "prop-types": "^15.5.10", - "pubsweet-client": "^8.0.1", + "pubsweet-client": "^8.0.3", "react": "^16.2.0", "react-dom": "^16.2.0", "react-redux": "^5.0.2", diff --git a/packages/components/xpub-review-server/CHANGELOG.md b/packages/components/xpub-review-server/CHANGELOG.md index 6a242d8d4cc4872b728d6550bb2113022e21ac31..d1690e3e673b5e39c346a2fc501d41f79231e508 100644 --- a/packages/components/xpub-review-server/CHANGELOG.md +++ b/packages/components/xpub-review-server/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-review-backend@1.0.0...pubsweet-component-xpub-review-backend@1.0.1) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-review-backend + + + + + +# [1.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-review-backend@0.3.0...pubsweet-component-xpub-review-backend@1.0.0) (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # [0.3.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-review-backend@0.2.6-alpha.0...pubsweet-component-xpub-review-backend@0.3.0) (2019-01-09) diff --git a/packages/components/xpub-review-server/package.json b/packages/components/xpub-review-server/package.json index 2f67d1adc4b0326d02736091e3e3bc5017ea44fa..e50e41f32959751de0bb48b25025733fdb80b037 100644 --- a/packages/components/xpub-review-server/package.json +++ b/packages/components/xpub-review-server/package.json @@ -1,15 +1,17 @@ { "name": "pubsweet-component-xpub-review-backend", - "version": "0.3.0", + "version": "1.0.1", "main": "src", "keywords": [], "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/component-send-email": "^0.2.5", - "config": "^2.0.1", - "lodash": "^4.17.5", - "moment": "^2.18.1" + "@pubsweet/component-send-email": "^0.2.7", + "@pubsweet/db-manager": "^2.2.2", + "@pubsweet/errors": "^2.0.1", + "lodash": "^4.17.11", + "moment": "^2.18.1", + "passport": "^0.4.0" }, "devDependencies": { "body-parser": "^1.17.2", @@ -19,6 +21,7 @@ }, "peerDependencies": { "@pubsweet/logger": ">=0.0.1", + "config": "^3.0.1", "pubsweet-server": ">=1.0.0" } } diff --git a/packages/components/xpub-review-server/src/reviewBackend.js b/packages/components/xpub-review-server/src/reviewBackend.js index 4d5814b9d006154f8d654e3cfd56efbc91e6df9d..0a951cb81114f42084daa7501da8a6be9776f310 100644 --- a/packages/components/xpub-review-server/src/reviewBackend.js +++ b/packages/components/xpub-review-server/src/reviewBackend.js @@ -7,7 +7,7 @@ const { models: { User, Fragment, Team, Collection }, } = require('@pubsweet/db-manager') const authsome = require('pubsweet-server/src/helpers/authsome') -const AuthorizationError = require('pubsweet-server/src/errors/AuthorizationError') +const { AuthorizationError } = require('@pubsweet/errors') const authBearer = passport.authenticate('bearer', { session: false }) diff --git a/packages/components/xpub-review/CHANGELOG.md b/packages/components/xpub-review/CHANGELOG.md index 4fb62d8d0c0feb9cc41eebf93c85d871db0513a0..95832d1489b1e7919e376c3b9d9fbf15c08fad08 100644 --- a/packages/components/xpub-review/CHANGELOG.md +++ b/packages/components/xpub-review/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-review@4.0.5...pubsweet-component-xpub-review@4.0.6) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-review + + + + + +## [4.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-review@4.0.4...pubsweet-component-xpub-review@4.0.5) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-review + + + + + ## [4.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-review@4.0.3...pubsweet-component-xpub-review@4.0.4) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-review diff --git a/packages/components/xpub-review/package.json b/packages/components/xpub-review/package.json index 078b99238c20ef369f0b3956ef9986e6a9d5067c..b0563b600c108e6d1378d9cb17f27bc842071084 100644 --- a/packages/components/xpub-review/package.json +++ b/packages/components/xpub-review/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-review", - "version": "4.0.4", + "version": "4.0.6", "main": "src", "author": "Collaborative Knowledge Foundation", "license": "MIT", @@ -9,8 +9,8 @@ "dist" ], "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", "classnames": "^2.2.5", "lodash": "^4.17.4", "moment": "^2.18.1", @@ -23,10 +23,10 @@ "styled-components": "^4.1.1", "uuid": "^3.1.0", "wax-prose-mirror": "^0.0.8", - "xpub-connect": "^2.0.4", - "xpub-edit": "^2.5.7", + "xpub-connect": "^2.0.6", + "xpub-edit": "^2.5.9", "xpub-journal": "^0.0.6", - "xpub-selectors": "^0.2.5", + "xpub-selectors": "^0.2.7", "xpub-upload": "^0.0.7", "xpub-validators": "^0.0.6" }, @@ -47,8 +47,11 @@ "webpack-node-externals": "^1.6.0" }, "peerDependencies": { + "apollo-client-preset": "^1.0.8", + "formik": "^1.4.2", "pubsweet-client": ">=2.1.0", "react": ">=16", + "react-apollo": "^2.3.3", "react-redux": "^5.0.2", "react-router-dom": "^4.2.2" } diff --git a/packages/components/xpub-selectors/CHANGELOG.md b/packages/components/xpub-selectors/CHANGELOG.md index df545bcbd1afebe388c983fac8664eb0a71d349e..f0cd9bf20221210a574d3cccf6a897134348c0b9 100644 --- a/packages/components/xpub-selectors/CHANGELOG.md +++ b/packages/components/xpub-selectors/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-selectors@0.2.6...xpub-selectors@0.2.7) (2019-01-14) + +**Note:** Version bump only for package xpub-selectors + + + + + +## [0.2.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-selectors@0.2.5...xpub-selectors@0.2.6) (2019-01-13) + +**Note:** Version bump only for package xpub-selectors + + + + + ## [0.2.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-selectors@0.2.4...xpub-selectors@0.2.5) (2019-01-09) **Note:** Version bump only for package xpub-selectors diff --git a/packages/components/xpub-selectors/package.json b/packages/components/xpub-selectors/package.json index 1a746dfe2c7d23475a45ef0c08126a05f7e40141..7789302d7c34a1a7522d8f2df8094ba04fa0b750 100644 --- a/packages/components/xpub-selectors/package.json +++ b/packages/components/xpub-selectors/package.json @@ -1,6 +1,6 @@ { "name": "xpub-selectors", - "version": "0.2.5", + "version": "0.2.7", "description": "Redux selectors for use in xpub components", "main": "src", "license": "MIT" diff --git a/packages/components/xpub-submit/CHANGELOG.md b/packages/components/xpub-submit/CHANGELOG.md index 78f859c0ad33860ff349cae79e3c0a415ad5077c..5075890f3f8b499727c975213caeb7a1466d7276 100644 --- a/packages/components/xpub-submit/CHANGELOG.md +++ b/packages/components/xpub-submit/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-submit@5.0.5...pubsweet-component-xpub-submit@5.0.6) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-submit + + + + + +## [5.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-submit@5.0.4...pubsweet-component-xpub-submit@5.0.5) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-submit + + + + + ## [5.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-submit@5.0.3...pubsweet-component-xpub-submit@5.0.4) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-submit diff --git a/packages/components/xpub-submit/package.json b/packages/components/xpub-submit/package.json index 733b776f0aef8f19ceeda5dc38cbc3c3625f088e..82e4d9bf4e72be13682ddaa41b2b842e258b23e4 100644 --- a/packages/components/xpub-submit/package.json +++ b/packages/components/xpub-submit/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-submit", - "version": "5.0.4", + "version": "5.0.6", "main": "src", "author": "Collaborative Knowledge Foundation", "license": "MIT", @@ -9,12 +9,14 @@ "dist" ], "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", "apollo-client-preset": "^1.0.8", "grid-styled": "^4.1.0", "react-dropzone": "^4.3.0", - "lodash": "^4.17.4", + "formik": "^1.4.2", + "lodash": "^4.17.11", + "moment": "^2.23.0", "prop-types": "^15.5.10", "react-apollo": "^2.1.0", "react-html-parser": "^2.0.2", @@ -22,10 +24,10 @@ "recompose": "^0.26.0", "striptags": "^3.1.0", "styled-components": "^4.1.1", - "xpub-connect": "^2.0.4", - "xpub-edit": "^2.5.7", + "xpub-connect": "^2.0.6", + "xpub-edit": "^2.5.9", "xpub-journal": "^0.0.6", - "xpub-selectors": "^0.2.5", + "xpub-selectors": "^0.2.7", "xpub-upload": "^0.0.7", "xpub-validators": "^0.0.6" }, diff --git a/packages/components/xpub-teams-manager/CHANGELOG.md b/packages/components/xpub-teams-manager/CHANGELOG.md index 0f914e8c796e3ec82da21f3de85cd2ec7d4bcf5c..80657f16737e957c3f285cff42bc7cfeb5bec30f 100644 --- a/packages/components/xpub-teams-manager/CHANGELOG.md +++ b/packages/components/xpub-teams-manager/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-teams-manager@1.0.5...pubsweet-component-xpub-teams-manager@1.0.6) (2019-01-14) + +**Note:** Version bump only for package pubsweet-component-xpub-teams-manager + + + + + +## [1.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-teams-manager@1.0.4...pubsweet-component-xpub-teams-manager@1.0.5) (2019-01-13) + +**Note:** Version bump only for package pubsweet-component-xpub-teams-manager + + + + + ## [1.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-xpub-teams-manager@1.0.3...pubsweet-component-xpub-teams-manager@1.0.4) (2019-01-09) **Note:** Version bump only for package pubsweet-component-xpub-teams-manager diff --git a/packages/components/xpub-teams-manager/package.json b/packages/components/xpub-teams-manager/package.json index a368fd38251185d1973516628417f08b1e71365a..c764f432c353752354912d911efcf155e758f924 100644 --- a/packages/components/xpub-teams-manager/package.json +++ b/packages/components/xpub-teams-manager/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-xpub-teams-manager", - "version": "1.0.4", + "version": "1.0.6", "description": "Teams manager component for Xpub", "main": "src/index.js", "author": "Collaborative Knowledge Foundation", @@ -10,12 +10,15 @@ "dist" ], "dependencies": { - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", + "lodash": "^4.17.11", "prop-types": "^15.5.10", "react-dom": "^16.2.0", "recompose": "^0.26.0", - "styled-components": "^4.1.1" + "redux": "^3.7.2", + "styled-components": "^4.1.1", + "xpub-connect": "^2.0.6" }, "devDependencies": { "babel-core": "^6.26.0", @@ -26,6 +29,7 @@ "faker": "^4.1.0" }, "peerDependencies": { + "config": "^3.0.1", "pubsweet-client": ">=2.1.0", "react": ">=16" } diff --git a/packages/components/xpub-with-context/CHANGELOG.md b/packages/components/xpub-with-context/CHANGELOG.md index 015a5219ac9d876c4c593775258ecfab28e2c68e..05b9d153e76e397aeb0bb66fb7352a9867d61248 100644 --- a/packages/components/xpub-with-context/CHANGELOG.md +++ b/packages/components/xpub-with-context/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-with-context@0.1.6...xpub-with-context@0.1.7) (2019-01-14) + +**Note:** Version bump only for package xpub-with-context + + + + + +## [0.1.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-with-context@0.1.5...xpub-with-context@0.1.6) (2019-01-13) + +**Note:** Version bump only for package xpub-with-context + + + + + ## [0.1.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/xpub-with-context@0.1.4...xpub-with-context@0.1.5) (2019-01-09) **Note:** Version bump only for package xpub-with-context diff --git a/packages/components/xpub-with-context/package.json b/packages/components/xpub-with-context/package.json index cc38b7075e67f488f8e675f901568467a22bbcba..4bd9867ff28406c28e3c94bd215b8dbe4100fb19 100644 --- a/packages/components/xpub-with-context/package.json +++ b/packages/components/xpub-with-context/package.json @@ -1,6 +1,6 @@ { "name": "xpub-with-context", - "version": "0.1.5", + "version": "0.1.7", "main": "src", "author": "Collaborative Knowledge Foundation", "license": "MIT", diff --git a/packages/db-manager/CHANGELOG.md b/packages/db-manager/CHANGELOG.md index 2a56119823553a11fab55263a686e00e55dca4c7..ace8ee83b4e1451c86926f89e2ad983698b89963 100644 --- a/packages/db-manager/CHANGELOG.md +++ b/packages/db-manager/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/db-manager@2.2.1...@pubsweet/db-manager@2.2.2) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/db-manager + + + + + +## [2.2.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/db-manager@2.2.0...@pubsweet/db-manager@2.2.1) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/db-manager + + + + + # [2.2.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/db-manager@2.1.3...@pubsweet/db-manager@2.2.0) (2019-01-09) diff --git a/packages/db-manager/package.json b/packages/db-manager/package.json index 42e29e3c9dbd387e7bbb3fec22e9c687ae49c080..12f0848ed4fafeeb5a529072a6062141bd11cdeb 100644 --- a/packages/db-manager/package.json +++ b/packages/db-manager/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/db-manager", - "version": "2.2.0", + "version": "2.2.2", "description": "Provides database management utilities to Pubsweet apps.", "main": "src/index.js", "scripts": { @@ -23,17 +23,23 @@ "license": "MIT", "devDependencies": { "jest": "^23.5.0", - "jest-environment-db": "^2.0.0", + "jest-environment-db": "^2.0.2", "nsp": "^2.8.0" }, "dependencies": { - "@pubsweet/logger": "^0.2.9", + "@pubsweet/logger": "^0.2.11", + "@pubsweet/models": "^0.1.2", "fs-extra": "^4.0.2", "isomorphic-fetch": "^2.2.1", "joi": "^14.3.0", + "knex": "^0.16.3", + "lodash": "^4.17.11", "objection": "^1.3.0", "pg": "^7.4.1", "tmp": "^0.0.33", "umzug": "^2.1.0" + }, + "peerDependencies": { + "config": "^3.0.1" } } diff --git a/packages/default-theme/CHANGELOG.md b/packages/default-theme/CHANGELOG.md index c64e9c0526592a273d075a0bc5b215cab0b8144b..595c008163dc9db7c9f8dd74ca89373045af816e 100644 --- a/packages/default-theme/CHANGELOG.md +++ b/packages/default-theme/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/default-theme@4.0.5...@pubsweet/default-theme@4.0.6) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/default-theme + + + + + +## [4.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/default-theme@4.0.4...@pubsweet/default-theme@4.0.5) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/default-theme + + + + + ## [4.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/default-theme@4.0.3...@pubsweet/default-theme@4.0.4) (2019-01-09) **Note:** Version bump only for package @pubsweet/default-theme diff --git a/packages/default-theme/package.json b/packages/default-theme/package.json index d6c966d99ab4d7a589c53c6d73e66ceed60278b3..5614c9381c062d9f995dd65ff4f013e698b659b2 100644 --- a/packages/default-theme/package.json +++ b/packages/default-theme/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/default-theme", - "version": "4.0.4", + "version": "4.0.6", "description": "Default theme for pubsweet apps", "main": "src", "license": "MIT", diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..9e6479d67f6e54a442560d624183b8758aaa0626 --- /dev/null +++ b/packages/errors/CHANGELOG.md @@ -0,0 +1,185 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/errors@2.0.0...@pubsweet/errors@2.0.1) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/errors + + + + + +# 2.0.0 (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + +# [1.2.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.1.0...@pubsweet/base-model@1.2.0) (2019-01-09) + + +### Bug Fixes + +* fix BaseModel's updateProperties and findByField ([418a27a](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/418a27a)) +* improve BaseModel's handling of schema and updateProperties ([80f7f3f](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/80f7f3f)) +* **base-model:** improve BaseModel's save() ([bf8a438](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/bf8a438)) +* various migration related fixes ([2aef24a](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2aef24a)) +* **base-model:** updated is always present ([c9e645d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/c9e645d)) + + +### Features + +* **base-model:** remove proxy for setting model properties ([e9ad1fa](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e9ad1fa)) +* introduce [@pubsweet](https://gitlab.coko.foundation/pubsweet)/models package ([7c1a364](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/7c1a364)) + + + + + +# [1.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.12...@pubsweet/base-model@1.1.0) (2018-12-12) + + +### Bug Fixes + +* **base-model:** ensure updated is set on insert ([d04688b](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d04688b)) +* **base-model:** make funcs private and rename vars ([3e64aa6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/3e64aa6)) +* **base-model:** use trx within transaction ([8330615](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/8330615)) + + +### Features + +* **base-model:** add test to check exception when saving stale data ([9d73525](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9d73525)) +* **base-model:** protect save from stale data ([836a9b8](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/836a9b8)) + + + + + +## [1.0.12](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.11...@pubsweet/base-model@1.0.12) (2018-12-04) + +**Note:** Version bump only for package @pubsweet/base-model + + + + + +## [1.0.11](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.10...@pubsweet/base-model@1.0.11) (2018-11-30) + +**Note:** Version bump only for package @pubsweet/base-model + + + + + +## [1.0.10](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.9...@pubsweet/base-model@1.0.10) (2018-11-29) + +**Note:** Version bump only for package @pubsweet/base-model + + + + + +<a name="1.0.9"></a> +## [1.0.9](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.8...@pubsweet/base-model@1.0.9) (2018-11-13) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.8"></a> +## [1.0.8](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.7...@pubsweet/base-model@1.0.8) (2018-11-05) + + +### Bug Fixes + +* **base-model:** support graph inserts ([ff40287](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ff40287)) + + + + +<a name="1.0.7"></a> +## [1.0.7](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.6...@pubsweet/base-model@1.0.7) (2018-10-17) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.6"></a> +## [1.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.5...@pubsweet/base-model@1.0.6) (2018-10-08) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.5"></a> +## [1.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.4...@pubsweet/base-model@1.0.5) (2018-09-29) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.4"></a> +## [1.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.3...@pubsweet/base-model@1.0.4) (2018-09-28) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.3"></a> +## [1.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.2...@pubsweet/base-model@1.0.3) (2018-09-27) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.2"></a> +## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.1...@pubsweet/base-model@1.0.2) (2018-09-27) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.1"></a> +## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/base-model@1.0.0...@pubsweet/base-model@1.0.1) (2018-09-25) + + + + +**Note:** Version bump only for package @pubsweet/base-model + +<a name="1.0.0"></a> +# 1.0.0 (2018-09-20) + + +### Features + +* add base-model package for standalone data models ([fc446e8](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/fc446e8)), closes [#395](https://gitlab.coko.foundation/pubsweet/pubsweet/issues/395) + + +### BREAKING CHANGES + +* In PubSweet server, the exported thing is no longer startServer directly, but it's +now part of the exported object. This will break applications that use the equivalent of const +startServer = require('pubsweet-server'). The new method for getting a startServer is const { +startServer } = require('pubsweet-server'). diff --git a/packages/errors/README.md b/packages/errors/README.md new file mode 100644 index 0000000000000000000000000000000000000000..0e34366b44381cd8c696d72c52b8fb09325d458f --- /dev/null +++ b/packages/errors/README.md @@ -0,0 +1,9 @@ +# Errors + +Use like so: + +``` +import { NotFoundError } from '@pubsweet/errors' + +throw new NotFoundError() +``` diff --git a/packages/errors/package.json b/packages/errors/package.json new file mode 100644 index 0000000000000000000000000000000000000000..1101f4d4e914be3fbcc48116f81a7b13d3d7a33c --- /dev/null +++ b/packages/errors/package.json @@ -0,0 +1,17 @@ +{ + "name": "@pubsweet/errors", + "version": "2.0.1", + "description": "", + "main": "src/index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Adam Hyde", + "license": "MIT", + "dependencies": { + "http-status-codes": "^1.3.0" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/packages/server/src/errors/AuthorizationError.js b/packages/errors/src/AuthorizationError.js similarity index 100% rename from packages/server/src/errors/AuthorizationError.js rename to packages/errors/src/AuthorizationError.js diff --git a/packages/server/src/errors/ConflictError.js b/packages/errors/src/ConflictError.js similarity index 100% rename from packages/server/src/errors/ConflictError.js rename to packages/errors/src/ConflictError.js diff --git a/packages/server/src/errors/NotFoundError.js b/packages/errors/src/NotFoundError.js similarity index 100% rename from packages/server/src/errors/NotFoundError.js rename to packages/errors/src/NotFoundError.js diff --git a/packages/server/src/errors/ValidationError.js b/packages/errors/src/ValidationError.js similarity index 100% rename from packages/server/src/errors/ValidationError.js rename to packages/errors/src/ValidationError.js diff --git a/packages/server/src/errors/index.js b/packages/errors/src/index.js similarity index 100% rename from packages/server/src/errors/index.js rename to packages/errors/src/index.js diff --git a/packages/jest-environment-db/CHANGELOG.md b/packages/jest-environment-db/CHANGELOG.md index 4c25ff957bfde791aede274765bfa2ce92187b14..e2c5ba05cacf50ce9021a20a5a28c980fd19fc14 100644 --- a/packages/jest-environment-db/CHANGELOG.md +++ b/packages/jest-environment-db/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/jest-environment-db@2.0.1...jest-environment-db@2.0.2) (2019-01-14) + +**Note:** Version bump only for package jest-environment-db + + + + + +## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/jest-environment-db@2.0.0...jest-environment-db@2.0.1) (2019-01-13) + +**Note:** Version bump only for package jest-environment-db + + + + + <a name="2.0.0"></a> # [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/jest-environment-db@1.0.1...jest-environment-db@2.0.0) (2018-09-20) diff --git a/packages/jest-environment-db/package.json b/packages/jest-environment-db/package.json index 3814a66985cb8bff7ae5ed25cd9d8c2061cc3e4a..57375bb6d088013983e5f6aac6e2f5775c562687 100644 --- a/packages/jest-environment-db/package.json +++ b/packages/jest-environment-db/package.json @@ -1,6 +1,6 @@ { "name": "jest-environment-db", - "version": "2.0.0", + "version": "2.0.2", "description": "", "main": "index.js", "private": true, @@ -11,6 +11,10 @@ "author": "", "license": "MIT", "dependencies": { - "jest-environment-node": "^22.1.4" + "jest-environment-node": "^22.1.4", + "pg": "^7.7.1" + }, + "peerDependencies": { + "config": "^3.0.1" } } diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index 1a7341d85896c813fda169900e6e4c5b3019ee72..c80a3daa4c555747dc83d1b712532b3284bce677 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.11](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/logger@0.2.10...@pubsweet/logger@0.2.11) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/logger + + + + + +## [0.2.10](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/logger@0.2.9...@pubsweet/logger@0.2.10) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/logger + + + + + ## [0.2.9](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/logger@0.2.8...@pubsweet/logger@0.2.9) (2019-01-09) **Note:** Version bump only for package @pubsweet/logger diff --git a/packages/logger/package.json b/packages/logger/package.json index 24c7060eb7c16f1dc512bfe670c09eefd2b2d14a..cb2124f407aecfd6ed701ce5889270d808568b62 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/logger", - "version": "0.2.9", + "version": "0.2.11", "description": "A module encapsulating standard logging features for pubsweet components and services.", "main": "src/index.js", "scripts": { diff --git a/packages/models/CHANGELOG.md b/packages/models/CHANGELOG.md index 0a4fff5f03f14f6a4ebaf6bfc45667a439785b91..93d19c6a10728fbc6e59e7cd4292e7255df1d455 100644 --- a/packages/models/CHANGELOG.md +++ b/packages/models/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/models@0.1.1...@pubsweet/models@0.1.2) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/models + + + + + +## [0.1.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/models@0.1.0...@pubsweet/models@0.1.1) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/models + + + + + # 0.1.0 (2019-01-09) diff --git a/packages/models/package.json b/packages/models/package.json index 8d21d13635dcbdbd216cb778fb29dfafa7b56894..9d1f39f7a47a132326e16639e7438c9c910a0aea 100644 --- a/packages/models/package.json +++ b/packages/models/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/models", - "version": "0.1.0", + "version": "0.1.2", "description": "A simple package that brings models together", "main": "src/index.js", "scripts": { @@ -10,9 +10,12 @@ "license": "MIT", "dependencies": { "objection": "^1.2.3", - "pubsweet-server": "^11.0.0" + "pubsweet-server": "^12.0.1" }, "publishConfig": { "access": "public" + }, + "peerDependencies": { + "config": "^3.0.1" } } diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 72d2884b46fed2270fdf75e012e15ba70de1f7ab..6ebc2ffd06a26356c53b0e6cfc7d0c75bd6a0d06 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [12.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-server@12.0.0...pubsweet-server@12.0.1) (2019-01-14) + +**Note:** Version bump only for package pubsweet-server + + + + + +# [12.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-server@11.0.0...pubsweet-server@12.0.0) (2019-01-13) + + +### Features + +* add [@pubsweet](https://gitlab.coko.foundation/pubsweet)/errors ([2969bf6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2969bf6)) + + +### BREAKING CHANGES + +* If you required errors deeply from pubsweet-server before, i.e. +`pubsweet-server/src/errors`, this will no longer work, and you need to change your require to +`@pubsweet/errors`. + + + + + # [11.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-server@10.1.4...pubsweet-server@11.0.0) (2019-01-09) diff --git a/packages/server/package.json b/packages/server/package.json index 1268ff821a34abaa62c9808a23a02024ffae2200..73f1175487f80c24208fe71c512f8fc42675cee6 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-server", - "version": "11.0.0", + "version": "12.0.1", "scripts": { "test": "jest", "vuln-test": "nsp check" @@ -12,11 +12,14 @@ "license": "MIT", "main": "src/index.js", "dependencies": { - "@pubsweet/logger": "^0.2.9", + "@pubsweet/db-manager": "^2.2.2", + "@pubsweet/errors": "^2.0.1", + "@pubsweet/logger": "^0.2.11", + "@pubsweet/model-user": "^3.0.1", + "@pubsweet/models": "^0.1.2", "apollo-server-express": "^1.3.2", "apollo-upload-server": "^4.0.2", "authsome": "^0.1.0", - "bcrypt": "^3.0.2", "bluebird": "^3.5.1", "body-parser": "^1.15.2", "colors": "^1.1.2", @@ -24,6 +27,7 @@ "cookie-parser": "^1.4.3", "dotenv": "^4.0.0", "express": "^4.16.1", + "fs-extra": "^7.0.1", "graphql": "^14.0.2", "graphql-postgres-subscriptions": "^1.0.4", "graphql-tools": "^4.0.0", @@ -36,7 +40,7 @@ "morgan": "^1.8.2", "multer": "^1.1.0", "objection": "^1.3.0", - "passport": "^0.3.2", + "passport": "^0.4.0", "passport-anonymous": "^1.0.1", "passport-http-bearer": "^1.0.1", "passport-local": "^1.0.0", @@ -44,17 +48,16 @@ "pg-boss": "^3.1.2", "promise-queue": "^2.2.3", "prompt": "^1.0.0", - "pubsweet-sse": "^1.0.3", + "pubsweet-sse": "^1.0.5", "subscriptions-transport-ws": "^0.9.12", "uuid": "^3.0.1", "waait": "^1.0.2", "winston": "^2.2.0" }, "devDependencies": { - "@pubsweet/db-manager": "^2.2.0", "eventsource": "^1.0.4", "jest-cli": "^23.5.0", - "jest-environment-db": "^2.0.0", + "jest-environment-db": "^2.0.2", "nsp": "^2.7.0", "supertest": "^3.1.0" }, diff --git a/packages/server/src/helpers/authorization.js b/packages/server/src/helpers/authorization.js index facc15e8c81d092ff3a0f640f1d251cd1c0d91ad..f4b044fa74d16f87f5fdca43896d064b63fbba7a 100644 --- a/packages/server/src/helpers/authorization.js +++ b/packages/server/src/helpers/authorization.js @@ -1,5 +1,4 @@ -const AuthorizationError = require('../errors/AuthorizationError') -const NotFoundError = require('../errors/NotFoundError') +const { AuthorizationError, NotFoundError } = require('@pubsweet/errors') // check permissions or throw authorization error const can = async (userId, verb, entity) => { diff --git a/packages/server/src/routes/util.js b/packages/server/src/routes/util.js index 36e5facd7168c5e31fa6b59936fdc26e42df992c..3e0fe76f8d0be3522aa04d9eb697798830975cc9 100644 --- a/packages/server/src/routes/util.js +++ b/packages/server/src/routes/util.js @@ -1,6 +1,5 @@ const _ = require('lodash') -const AuthorizationError = require('../errors/AuthorizationError') -const NotFoundError = require('../errors/NotFoundError') +const { AuthorizationError, NotFoundError } = require('@pubsweet/errors') const Util = {} Util.authorizationError = (username, operation, object) => { diff --git a/packages/sse/CHANGELOG.md b/packages/sse/CHANGELOG.md index e527dc7b90ff94a1628b92fbd9271f3dc95ce069..8344a94befc30166555c132db89cd03d29f57fa7 100644 --- a/packages/sse/CHANGELOG.md +++ b/packages/sse/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](http://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-sse@1.0.4...pubsweet-sse@1.0.5) (2019-01-14) + +**Note:** Version bump only for package pubsweet-sse + + + + + +## [1.0.4](http://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-sse@1.0.3...pubsweet-sse@1.0.4) (2019-01-13) + +**Note:** Version bump only for package pubsweet-sse + + + + + ## [1.0.3](http://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-sse@1.0.2...pubsweet-sse@1.0.3) (2019-01-09) **Note:** Version bump only for package pubsweet-sse diff --git a/packages/sse/package.json b/packages/sse/package.json index 625808d5afb8d9717b556e45eee9b960510777e9..bcd139fae5a83c028817ff79139252b457717e5c 100644 --- a/packages/sse/package.json +++ b/packages/sse/package.json @@ -1,7 +1,7 @@ { "name": "pubsweet-sse", "description": "Broadcast server-sent events to connected Express clients", - "version": "1.0.3", + "version": "1.0.5", "homepage": "https://gitlab.coko.foundation/pubsweet/pubsweet", "repository": { "type": "git", diff --git a/packages/styleguide/CHANGELOG.md b/packages/styleguide/CHANGELOG.md index d8e5283c1e0acbc873867c5066c091cc4c53ad07..684d22b4bf0f3d5e3c923aaa933242e7f75a2947 100644 --- a/packages/styleguide/CHANGELOG.md +++ b/packages/styleguide/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/styleguide@5.0.1...@pubsweet/styleguide@5.0.2) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/styleguide + + + + + +## [5.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/styleguide@5.0.0...@pubsweet/styleguide@5.0.1) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/styleguide + + + + + # [5.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/styleguide@4.0.3...@pubsweet/styleguide@5.0.0) (2019-01-09) diff --git a/packages/styleguide/package.json b/packages/styleguide/package.json index e39d50f84afccdfe4d44627641a283ccedec3ad5..9bf9f59ad8276b859544f93793d4d0970220262e 100644 --- a/packages/styleguide/package.json +++ b/packages/styleguide/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/styleguide", - "version": "5.0.0", + "version": "5.0.2", "license": "MIT", "files": [ "src", @@ -9,12 +9,23 @@ "main": "src", "dependencies": { "@elifesciences/elife-theme": "^1.0.0", - "@pubsweet/default-theme": "^4.0.4", - "@pubsweet/ui": "^9.1.0", - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/coko-theme": "^5.0.6", + "@pubsweet/default-theme": "^4.0.6", + "@pubsweet/ui": "^9.1.2", + "@pubsweet/ui-toolkit": "^2.0.6", + "babel-preset-env": "^1.6.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-2": "^6.24.1", + "config": "^3.0.1", "faker": "^4.1.0", + "fs-extra": "^7.0.1", + "graphql-tag": "^2.10.0", + "joi": "^14.3.1", + "joi-browser": "^13.4.0", "lodash": "^4.17.5", + "pubsweet-client": "^8.0.3", "react": "^16.2.0", + "react-apollo": "^2.3.3", "react-dom": "^16.2.0", "react-redux": "^5.0.2", "react-router-dom": "^4.2.2", @@ -22,22 +33,20 @@ "recompose": "^0.26.0", "redux": "^3.6.0", "redux-form": "^7.0.3", + "regenerator-runtime": "^0.13.1", "styled-components": "^4.1.1", "styled-normalize": "^8.0.4", + "webpack": "^4.16.0", "xpub-journal": "^0.0.3" }, "devDependencies": { "babel-core": "^6.26.0", "babel-loader": "^7.1.2", - "babel-preset-env": "^1.6.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-2": "^6.24.1", "css-loader": "^0.28.4", "node-sass": "^4.5.3", "rimraf": "^2.6.1", "sass-loader": "^6.0.6", "style-loader": "^0.19.0", - "webpack": "^4.16.0", "webpack-node-externals": "^1.6.0" }, "scripts": { diff --git a/packages/ui-toolkit/CHANGELOG.md b/packages/ui-toolkit/CHANGELOG.md index 54d06ff9f46163e4e5f7e04417044b78ff0ed139..683f26c29daa6c2af9a304d3c2c40c1aff81e8e6 100644 --- a/packages/ui-toolkit/CHANGELOG.md +++ b/packages/ui-toolkit/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui-toolkit@2.0.5...@pubsweet/ui-toolkit@2.0.6) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/ui-toolkit + + + + + +## [2.0.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui-toolkit@2.0.4...@pubsweet/ui-toolkit@2.0.5) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/ui-toolkit + + + + + ## [2.0.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui-toolkit@2.0.3...@pubsweet/ui-toolkit@2.0.4) (2019-01-09) **Note:** Version bump only for package @pubsweet/ui-toolkit diff --git a/packages/ui-toolkit/package.json b/packages/ui-toolkit/package.json index 9313b238f94efc0f88b29992bc1917f6be00ba03..deae63562a7d3000534a784df01e275135aa1342 100644 --- a/packages/ui-toolkit/package.json +++ b/packages/ui-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/ui-toolkit", - "version": "2.0.4", + "version": "2.0.6", "description": "Helper functions and reusable blocks for use with @pubsweet/ui", "repository": { "type": "git", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index dc10aa5a6a6857aeebdc435e4fd41b08c29dd9dc..cef70e0cfac0965c7b5c0e00a4fdcdde7b0f48cb 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.1.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui@9.1.1...@pubsweet/ui@9.1.2) (2019-01-14) + +**Note:** Version bump only for package @pubsweet/ui + + + + + +## [9.1.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui@9.1.0...@pubsweet/ui@9.1.1) (2019-01-13) + +**Note:** Version bump only for package @pubsweet/ui + + + + + # [9.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui@9.0.3...@pubsweet/ui@9.1.0) (2019-01-09) diff --git a/packages/ui/package.json b/packages/ui/package.json index e8104b9e96799c4c010f8993b99498a66cf626cd..e9f792b0693da5ed0a4fc6daa101b31f1f398c52 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/ui", - "version": "9.1.0", + "version": "9.1.2", "license": "MIT", "files": [ "docs", @@ -15,11 +15,12 @@ "url": "https://gitlab.coko.foundation/pubsweet/pubsweet" }, "dependencies": { - "@pubsweet/ui-toolkit": "^2.0.4", + "@pubsweet/ui-toolkit": "^2.0.6", "babel-jest": "^21.2.0", "classnames": "^2.2.5", "enzyme": "^3.7.0", - "enzyme-adapter-react-16": "^1.6.0", + "enzyme-adapter-react-16": "^1.1.1", + "formik": "^1.4.2", "invariant": "^2.2.3", "lodash": "^4.17.4", "moment": "^2.22.1", diff --git a/packages/ui/src/molecules/Menu.js b/packages/ui/src/molecules/Menu.js index ac196dc35502f2019c09419bde4779d54eb0d3fe..e805cc27b1d87b6c490bc91e906a77522b670c6f 100644 --- a/packages/ui/src/molecules/Menu.js +++ b/packages/ui/src/molecules/Menu.js @@ -2,7 +2,7 @@ import React from 'react' import PropTypes from 'prop-types' import styled from 'styled-components' import { th, override } from '@pubsweet/ui-toolkit' -import { Button } from '@pubsweet/ui' +import Button from '../atoms/Button' // TODO: match the width of the container to the width of the widest option? // TODO: use a <select> element instead of divs? diff --git a/packages/ui/test/__snapshots__/List.test.js.snap b/packages/ui/test/__snapshots__/List.test.js.snap index ee34f8c944de2153311ae5348d1695fc0fb9b6cc..72ca7e15574919e2343a5fa81fa7190440ea627f 100644 --- a/packages/ui/test/__snapshots__/List.test.js.snap +++ b/packages/ui/test/__snapshots__/List.test.js.snap @@ -43,6 +43,7 @@ ShallowWrapper { ], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-cIShpX", "target": "div", @@ -83,6 +84,7 @@ ShallowWrapper { ], }, "displayName": "styled.div", + "foldedComponentIds": Array [], "render": [Function], "styledComponentId": "sc-cIShpX", "target": "div", diff --git a/yarn.lock b/yarn.lock index 6fedd4c7557325d73004144b2e0b08334f8a21d6..0c0381f5f4f8d6cdc548ccc498a184894ce5a18e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -84,6 +84,13 @@ dependencies: "@babel/types" "7.0.0-beta.51" +"@babel/helper-module-imports@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" + integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== + dependencies: + "@babel/types" "^7.0.0" + "@babel/helper-split-export-declaration@7.0.0-beta.44": version "7.0.0-beta.44" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc" @@ -229,9 +236,9 @@ to-fast-properties "^2.0.0" "@babel/types@^7.0.0": - version "7.1.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.1.6.tgz#0adb330c3a281348a190263aceb540e10f04bcce" - integrity sha512-DMiUzlY9DSjVsOylJssxLHSgj6tWM9PRFJOGW/RaOglVOK9nzTxoOMfTfRQXGUCUQ/HmlG2efwC+XqUEJ5ay4w== + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.2.tgz#44e10fc24e33af524488b716cdaee5360ea8ed1e" + integrity sha512-fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg== dependencies: esutils "^2.0.2" lodash "^4.17.10" @@ -382,17 +389,17 @@ "@pubsweet/ui-toolkit" "^1.1.2" styled-components "^3.2.5" -"@emotion/is-prop-valid@^0.6.8": - version "0.6.8" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz#68ad02831da41213a2089d2cab4e8ac8b30cbd85" - integrity sha512-IMSL7ekYhmFlILXcouA6ket3vV7u9BqStlXzbKOF9HBtpUPMMlHU+bBxrLOa2NvleVwNIxeq/zL8LafLbeUXcA== +"@emotion/is-prop-valid@^0.7.3": + version "0.7.3" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.7.3.tgz#a6bf4fa5387cbba59d44e698a4680f481a8da6cc" + integrity sha512-uxJqm/sqwXw3YPA5GXX365OBcJGFtxUVkB6WyezqFHlNe9jqUWH5ur2O2M8dGBz61kn1g3ZBlzUunFQXQIClhA== dependencies: - "@emotion/memoize" "^0.6.6" + "@emotion/memoize" "0.7.1" -"@emotion/memoize@^0.6.6": - version "0.6.6" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz#004b98298d04c7ca3b4f50ca2035d4f60d2eed1b" - integrity sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ== +"@emotion/memoize@0.7.1": + version "0.7.1" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.1.tgz#e93c13942592cf5ef01aa8297444dc192beee52f" + integrity sha512-Qv4LTqO11jepd5Qmlp3M1YEjBumoTHcHFdgPTQ+sFlIL5myi/7xu/POwP7IRu6odBdmLXdtIs1D6TuW6kbwbbg== "@emotion/unitless@^0.7.0": version "0.7.3" @@ -425,53 +432,52 @@ dependencies: humps "^2.0.1" -"@lerna/add@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.4.1.tgz#d41068317e30f530df48220d256b5e79690b1877" - integrity sha512-Vf54B42jlD6G52qnv/cAGH70cVQIa+LX//lfsbkxHvzkhIqBl5J4KsnTOPkA9uq3R+zP58ayicCHB9ReiEWGJg== - dependencies: - "@lerna/bootstrap" "^3.4.1" - "@lerna/command" "^3.3.0" - "@lerna/filter-options" "^3.3.2" - "@lerna/npm-conf" "^3.4.1" - "@lerna/validation-error" "^3.0.0" +"@lerna/add@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.10.5.tgz#10dcd1069eee18a84432f826a38d6791af8a2fef" + integrity sha512-T3d9FnSyBOYnM/a1j5Sa65SGOTgnv04HG7Y2lRWJcF6PvOoTsozYW0izi/vLAnAt/DvGhYf2morXkWS8AbIeDg== + dependencies: + "@lerna/bootstrap" "3.10.5" + "@lerna/command" "3.10.0" + "@lerna/filter-options" "3.10.1" + "@lerna/npm-conf" "3.7.0" + "@lerna/validation-error" "3.6.0" dedent "^0.7.0" - npm-package-arg "^6.0.0" + libnpm "^2.0.1" p-map "^1.2.0" - pacote "^9.1.0" semver "^5.5.0" -"@lerna/batch-packages@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@lerna/batch-packages/-/batch-packages-3.1.2.tgz#74b5312a01a8916204cbc71237ffbe93144b99df" - integrity sha512-HAkpptrYeUVlBYbLScXgeCgk6BsNVXxDd53HVWgzzTWpXV4MHpbpeKrByyt7viXlNhW0w73jJbipb/QlFsHIhQ== - dependencies: - "@lerna/package-graph" "^3.1.2" - "@lerna/validation-error" "^3.0.0" - npmlog "^4.1.2" - -"@lerna/bootstrap@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-3.4.1.tgz#10635e9b547fb7d685949ac78e0923f73da2f52a" - integrity sha512-yZDJgNm/KDoRH2klzmQGmpWMg/XMzWgeWvauXkrfW/mj1wwmufOuh5pN4fBFxVmUUa/RFZdfMeaaJt3+W3PPBw== - dependencies: - "@lerna/batch-packages" "^3.1.2" - "@lerna/command" "^3.3.0" - "@lerna/filter-options" "^3.3.2" - "@lerna/has-npm-version" "^3.3.0" - "@lerna/npm-conf" "^3.4.1" - "@lerna/npm-install" "^3.3.0" - "@lerna/rimraf-dir" "^3.3.0" - "@lerna/run-lifecycle" "^3.4.1" - "@lerna/run-parallel-batches" "^3.0.0" - "@lerna/symlink-binary" "^3.3.0" - "@lerna/symlink-dependencies" "^3.3.0" - "@lerna/validation-error" "^3.0.0" +"@lerna/batch-packages@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/batch-packages/-/batch-packages-3.10.0.tgz#64635b522d6277b98ae7bfe23f9300dca44d02b8" + integrity sha512-ERvnpmmfV8H+3B+9FmHqmzfgz0xVe3ktW/e4WZZXYMGpqSGToILZlai4PsBrW5gUtnXA77LSskME+aRdkZaKsQ== + dependencies: + "@lerna/package-graph" "3.10.0" + "@lerna/validation-error" "3.6.0" + libnpm "^2.0.1" + +"@lerna/bootstrap@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-3.10.5.tgz#f0f40de3d1f993ee835b93632fb181aeea7cc2ea" + integrity sha512-WMUfysmX2WFkOzWcpv0mW6Kw91Zsuq9Ecz/TIT4q3FywvABD0mrWbcDXSyrxMspxDEOtPqM/Lk9nm6F9M98kbg== + dependencies: + "@lerna/batch-packages" "3.10.0" + "@lerna/command" "3.10.0" + "@lerna/filter-options" "3.10.1" + "@lerna/has-npm-version" "3.10.0" + "@lerna/npm-install" "3.10.0" + "@lerna/package-graph" "3.10.0" + "@lerna/pulse-till-done" "3.7.1" + "@lerna/rimraf-dir" "3.10.0" + "@lerna/run-lifecycle" "3.10.5" + "@lerna/run-parallel-batches" "3.0.0" + "@lerna/symlink-binary" "3.10.0" + "@lerna/symlink-dependencies" "3.10.0" + "@lerna/validation-error" "3.6.0" dedent "^0.7.0" get-port "^3.2.0" + libnpm "^2.0.1" multimatch "^2.1.0" - npm-package-arg "^6.0.0" - npmlog "^4.1.2" p-finally "^1.0.0" p-map "^1.2.0" p-map-series "^1.0.0" @@ -479,26 +485,26 @@ read-package-tree "^5.1.6" semver "^5.5.0" -"@lerna/changed@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-3.4.1.tgz#84a049359a53b8812c3a07a664bd41b1768f5938" - integrity sha512-gT7fhl4zQWyGETDO4Yy5wsFnqNlBSsezncS1nkMW1uO6jwnolwYqcr1KbrMR8HdmsZBn/00Y0mRnbtbpPPey8w== +"@lerna/changed@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-3.10.5.tgz#8bba2782d2871c4ba1eca5c2a682cc9f18f2103a" + integrity sha512-Uy3VWzjmGg2CjKRTW9os+R6Itg3LVJ6CjczeOsOFwSN4JMdNoObUnCTSdCCTUF/+hQNAoSnkw3+C8dC5FPL1Zw== dependencies: - "@lerna/collect-updates" "^3.3.2" - "@lerna/command" "^3.3.0" - "@lerna/listable" "^3.0.0" - "@lerna/output" "^3.0.0" - "@lerna/version" "^3.4.1" + "@lerna/collect-updates" "3.10.1" + "@lerna/command" "3.10.0" + "@lerna/listable" "3.10.0" + "@lerna/output" "3.6.0" + "@lerna/version" "3.10.5" -"@lerna/check-working-tree@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-3.3.0.tgz#2118f301f28ccb530812e5b27a341b1e6b3c84e2" - integrity sha512-oeEP1dNhiiKUaO0pmcIi73YXJpaD0n5JczNctvVNZ8fGZmrALZtEnmC28o6Z7JgQaqq5nd2kO7xbnjoitrC51g== +"@lerna/check-working-tree@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-3.10.0.tgz#5ed9f2c5c942bee92afcd8cb5361be44ed0251e3" + integrity sha512-NdIPhDgEtGHfeGjB9F0oAoPLywgMpjnJhLLwTNQkelDHo2xNAVpG8kV+A2UJ+cU5UXCZA4RZFxKNmw86rO+Drw== dependencies: - "@lerna/describe-ref" "^3.3.0" - "@lerna/validation-error" "^3.0.0" + "@lerna/describe-ref" "3.10.0" + "@lerna/validation-error" "3.6.0" -"@lerna/child-process@^3.3.0": +"@lerna/child-process@3.3.0": version "3.3.0" resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-3.3.0.tgz#71184a763105b6c8ece27f43f166498d90fe680f" integrity sha512-q2d/OPlNX/cBXB6Iz1932RFzOmOHq6ZzPjqebkINNaTojHWuuRpvJJY4Uz3NGpJ3kEtPDvBemkZqUBTSO5wb1g== @@ -507,95 +513,96 @@ execa "^1.0.0" strong-log-transformer "^2.0.0" -"@lerna/clean@^3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-3.3.2.tgz#9a7e8a1e400e580de260fa124945b2939a025069" - integrity sha512-mvqusgSp2ou5SGqQgTEoTvGJpGfH4+L6XSeN+Ims+eNFGXuMazmKCf+rz2PZBMFufaHJ/Os+JF0vPCcWI1Fzqg== +"@lerna/clean@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-3.10.1.tgz#abf0cb3b19935d5931ad4c46c7cab79503be3f0e" + integrity sha512-eYSNSD4xD//OIDe0r4r/HhEMEXriIuKqp4BMDhrO7pJmYhk7FvznJUSc4jc85wdA4Y0ooqSs9gF/w2lgLGgUxw== dependencies: - "@lerna/command" "^3.3.0" - "@lerna/filter-options" "^3.3.2" - "@lerna/prompt" "^3.3.1" - "@lerna/rimraf-dir" "^3.3.0" + "@lerna/command" "3.10.0" + "@lerna/filter-options" "3.10.1" + "@lerna/prompt" "3.6.0" + "@lerna/pulse-till-done" "3.7.1" + "@lerna/rimraf-dir" "3.10.0" p-map "^1.2.0" p-map-series "^1.0.0" p-waterfall "^1.0.0" -"@lerna/cli@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-3.2.0.tgz#3ed25bcbc0b8f0878bc6a102ee0296f01476cfdf" - integrity sha512-JdbLyTxHqxUlrkI+Ke+ltXbtyA+MPu9zR6kg/n8Fl6uaez/2fZWtReXzYi8MgLxfUFa7+1OHWJv4eAMZlByJ+Q== +"@lerna/cli@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-3.10.0.tgz#48ab57a450eaec0401db082319f1bc11939b6d5e" + integrity sha512-OTO8GlD6Rf298hxml3/Y3OE8yMDuW3NNqumbroiUb/KdkrnyjZl5F6aSMXJEySq+OSoBboZJMwj2IWglc/7fuw== dependencies: - "@lerna/global-options" "^3.1.3" + "@lerna/global-options" "3.1.3" dedent "^0.7.0" - npmlog "^4.1.2" + libnpm "^2.0.1" yargs "^12.0.1" -"@lerna/collect-updates@^3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-3.3.2.tgz#54df5ce59ca05e8aa04ff8a9299f89cc253a9304" - integrity sha512-9WyBJI2S5sYgEZEScu525Lbi6nknNrdBKop35sCDIC9y6AIGvH6Dr5tkTd+Kg3n1dE+kHwW/xjERkx3+h7th3w== +"@lerna/collect-updates@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-3.10.1.tgz#3ad60aa31826c0c0cfdf8bf41e58e6c5c86aeb3a" + integrity sha512-vb0wEJ8k63G+2CR/ud1WeVHNJ21Fs6Ew6lbdGZXnF4ZvaFWxWJZpoHeWwzjhMdJ75QdTzUaIhTG1hnH9faQNMw== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/describe-ref" "^3.3.0" + "@lerna/child-process" "3.3.0" + "@lerna/describe-ref" "3.10.0" + libnpm "^2.0.1" minimatch "^3.0.4" - npmlog "^4.1.2" slash "^1.0.0" -"@lerna/command@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/command/-/command-3.3.0.tgz#e81c4716a676b02dbe9d3f548d5f45b4ba32c25a" - integrity sha512-NTOkLEKlWcBLHSvUr9tzVpV7RJ4GROLeOuZ6RfztGOW/31JPSwVVBD2kPifEXNZunldOx5GVWukR+7+NpAWhsg== - dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/package-graph" "^3.1.2" - "@lerna/project" "^3.0.0" - "@lerna/validation-error" "^3.0.0" - "@lerna/write-log-file" "^3.0.0" +"@lerna/command@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/command/-/command-3.10.0.tgz#d1229dc8efa5b6f793492bcab8f9e514175826b6" + integrity sha512-TTtCDQ5+bDdA/RnBuDtkfqzUV8Mr61KBHxEZL8YLAmHZtY/HsnNpZzbAZ0STPxcFB96dhxVWbRDGP+yBgRfemQ== + dependencies: + "@lerna/child-process" "3.3.0" + "@lerna/package-graph" "3.10.0" + "@lerna/project" "3.10.0" + "@lerna/validation-error" "3.6.0" + "@lerna/write-log-file" "3.6.0" dedent "^0.7.0" execa "^1.0.0" is-ci "^1.0.10" + libnpm "^2.0.1" lodash "^4.17.5" - npmlog "^4.1.2" -"@lerna/conventional-commits@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-3.4.1.tgz#0b47f9fc0c4a10951883e949d939188da1b527bc" - integrity sha512-3NETrA58aUkaEW3RdwdJ766Bg9NVpLzb26mtdlsJQcvB5sQBWH5dJSHIVQH1QsGloBeH2pE/mDUEVY8ZJXuR4w== +"@lerna/conventional-commits@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-3.10.0.tgz#284cc16bd3c387f841ff6bec42bcadaa2d13d8e4" + integrity sha512-8FvO0eR8g/tEgkb6eRVYaD39TsqMKsOXp17EV48jciciEqcrF/d1Ypu6ilK1GDp6R/1m2mbjt/b52a/qrO+xaw== dependencies: - "@lerna/validation-error" "^3.0.0" - conventional-changelog-angular "^5.0.1" - conventional-changelog-core "^3.1.0" - conventional-recommended-bump "^4.0.1" + "@lerna/validation-error" "3.6.0" + conventional-changelog-angular "^5.0.2" + conventional-changelog-core "^3.1.5" + conventional-recommended-bump "^4.0.4" fs-extra "^7.0.0" get-stream "^4.0.0" - npm-package-arg "^6.0.0" - npmlog "^4.1.2" + libnpm "^2.0.1" semver "^5.5.0" -"@lerna/create-symlink@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-3.3.0.tgz#91de00fd576018ba4251f0c6a5b4b7f768f22a82" - integrity sha512-0lb88Nnq1c/GG+fwybuReOnw3+ah4dB81PuWwWwuqUNPE0n50qUf/M/7FfSb5JEh/93fcdbZI0La8t3iysNW1w== +"@lerna/create-symlink@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-3.6.0.tgz#f1815cde2fc9d8d2315dfea44ee880f2f1bc65f1" + integrity sha512-YG3lTb6zylvmGqKU+QYA3ylSnoLn+FyLH5XZmUsD0i85R884+EyJJeHx/zUk+yrL2ZwHS4RBUgJfC24fqzgPoA== dependencies: cmd-shim "^2.0.2" fs-extra "^7.0.0" - npmlog "^4.1.2" + libnpm "^2.0.1" -"@lerna/create@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-3.4.1.tgz#7cad78a5701d7666a0f5d0fe0e325acd8d8f5b63" - integrity sha512-l+4t2SRO5nvW0MNYY+EWxbaMHsAN8bkWH3nyt7EzhBjs4+TlRAJRIEqd8o9NWznheE3pzwczFz1Qfl3BWbyM5A== +"@lerna/create@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/create/-/create-3.10.0.tgz#67293ca242ed5ec180469c34d0f073c297be6799" + integrity sha512-1EQbhyGx/J+gwlxFPecpmrztyEfBRm/sNei95UJlJWLuturSv2Ax2nCa49tcerbPlYhhlJ6lyintukL5STOzdg== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/command" "^3.3.0" - "@lerna/npm-conf" "^3.4.1" - "@lerna/validation-error" "^3.0.0" + "@lerna/child-process" "3.3.0" + "@lerna/command" "3.10.0" + "@lerna/npm-conf" "3.7.0" + "@lerna/validation-error" "3.6.0" camelcase "^4.1.0" dedent "^0.7.0" fs-extra "^7.0.0" globby "^8.0.1" init-package-json "^1.10.3" - npm-package-arg "^6.0.0" + libnpm "^2.0.1" + p-reduce "^1.0.0" pify "^3.0.0" semver "^5.5.0" slash "^1.0.0" @@ -603,300 +610,328 @@ validate-npm-package-name "^3.0.0" whatwg-url "^7.0.0" -"@lerna/describe-ref@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-3.3.0.tgz#d373adb530d5428ab91e303ccbfcf51a98374a3a" - integrity sha512-4t7M4OupnYMSPNLrLUau8qkS+dgLEi4w+DkRkV0+A+KNYga1W0jVgNLPIIsxta7OHfodPkCNAqZCzNCw/dmAwA== - dependencies: - "@lerna/child-process" "^3.3.0" - npmlog "^4.1.2" - -"@lerna/diff@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-3.3.0.tgz#c8130a5f508b47fad5fec81404498bc3acdf9cb5" - integrity sha512-sIoMjsm3NVxvmt6ofx8Uu/2fxgldQqLl0zmC9X1xW00j831o5hBffx1EoKj9CnmaEvoSP6j/KFjxy2RWjebCIg== - dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/command" "^3.3.0" - "@lerna/validation-error" "^3.0.0" - npmlog "^4.1.2" - -"@lerna/exec@^3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-3.3.2.tgz#95ecaca617fd85abdb91e9a378ed06ec1763d665" - integrity sha512-mN6vGxNir7JOGvWLwKr3DW3LNy1ecCo2ziZj5rO9Mw5Rew3carUu1XLmhF/4judtsvXViUY+rvGIcqHe0vvb+w== +"@lerna/describe-ref@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-3.10.0.tgz#266380feece6013ab9674f52bd35bf0be5b0460d" + integrity sha512-fouh3FQS07QxJJp/mW8LkGnH0xMRAzpBlejtZaiRwfDkW2kd6EuHaj8I/2/p21Wsprcvuu4dqmyia2YS1xFb/w== dependencies: - "@lerna/batch-packages" "^3.1.2" - "@lerna/child-process" "^3.3.0" - "@lerna/command" "^3.3.0" - "@lerna/filter-options" "^3.3.2" - "@lerna/run-parallel-batches" "^3.0.0" - "@lerna/validation-error" "^3.0.0" + "@lerna/child-process" "3.3.0" + libnpm "^2.0.1" -"@lerna/filter-options@^3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-3.3.2.tgz#ac90702b7876ff4980dcdeaeac049c433dd01773" - integrity sha512-0WHqdDgAnt5WKoByi1q+lFw8HWt5tEKP2DnLlGqWv3YFwVF5DsPRlO7xbzjY9sJgvyJtZcnkMtccdBPFhGGyIQ== - dependencies: - "@lerna/collect-updates" "^3.3.2" - "@lerna/filter-packages" "^3.0.0" +"@lerna/diff@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-3.10.0.tgz#343403a6700063e5b264c013ee500b76c3bcf156" + integrity sha512-MU6P9uAND+dZ15Cm4onJakEYMC6xXZApLuPpWJf0kZtVoF2Feoo3mvQASdb17fe0jvvmWDS0RLCzq9Zhzrgm0A== + dependencies: + "@lerna/child-process" "3.3.0" + "@lerna/command" "3.10.0" + "@lerna/validation-error" "3.6.0" + libnpm "^2.0.1" + +"@lerna/exec@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-3.10.1.tgz#3047b04418060d109724ab4468abea22e8ffa992" + integrity sha512-MM5/OMP4FrVH4PIlG+3xk3jpKq+trgu/eAPttaYZBHAumCOjrDVYdyk5O68+YLz+uLkM31ixTmsiAP9f77HTsg== + dependencies: + "@lerna/batch-packages" "3.10.0" + "@lerna/child-process" "3.3.0" + "@lerna/command" "3.10.0" + "@lerna/filter-options" "3.10.1" + "@lerna/run-parallel-batches" "3.0.0" + "@lerna/validation-error" "3.6.0" + +"@lerna/filter-options@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-3.10.1.tgz#12ecda84577e50d508a8cf696df7e20abbc2304d" + integrity sha512-34q7P0/AA+omVk9uwv99i+4qmj5uGuj383RzqIcK8JDYL0JSzlmW0+c4IkxunCfRrWft8OFhSwZdOOmXtDSDYg== + dependencies: + "@lerna/collect-updates" "3.10.1" + "@lerna/filter-packages" "3.10.0" dedent "^0.7.0" -"@lerna/filter-packages@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-3.0.0.tgz#5eb25ad1610f3e2ab845133d1f8d7d40314e838f" - integrity sha512-zwbY1J4uRjWRZ/FgYbtVkq7I3Nduwsg2V2HwLKSzwV2vPglfGqgovYOVkND6/xqe2BHwDX4IyA2+e7OJmLaLSA== +"@lerna/filter-packages@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-3.10.0.tgz#75f9a08184fc4046da2057e0218253cd6f493f05" + integrity sha512-3Acdj+jbany6LnQSuImU4ttcK5ULHSVug8Gh/EvwTewKCDpHAuoI3eyuzZOnSBdMvDOjE03uIESQK0dNNsn6Ow== dependencies: - "@lerna/validation-error" "^3.0.0" + "@lerna/validation-error" "3.6.0" + libnpm "^2.0.1" multimatch "^2.1.0" - npmlog "^4.1.2" -"@lerna/get-npm-exec-opts@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.0.0.tgz#8fc7866e8d8e9a2f2dc385287ba32eb44de8bdeb" - integrity sha512-arcYUm+4xS8J3Palhl+5rRJXnZnFHsLFKHBxznkPIxjwGQeAEw7df38uHdVjEQ+HNeFmHnBgSqfbxl1VIw5DHg== +"@lerna/get-npm-exec-opts@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.6.0.tgz#ea595eb28d1f34ba61a92ee8391f374282b4b76e" + integrity sha512-ruH6KuLlt75aCObXfUIdVJqmfVq7sgWGq5mXa05vc1MEqxTIiU23YiJdWzofQOOUOACaZkzZ4K4Nu7wXEg4Xgg== dependencies: - npmlog "^4.1.2" + libnpm "^2.0.1" + +"@lerna/get-packed@3.7.0": + version "3.7.0" + resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-3.7.0.tgz#549c7738f7be5e3b1433e82ed9cda9123bcd1ed5" + integrity sha512-yuFtjsUZIHjeIvIYQ/QuytC+FQcHwo3peB+yGBST2uWCLUCR5rx6knoQcPzbxdFDCuUb5IFccFGd3B1fHFg3RQ== + dependencies: + fs-extra "^7.0.0" + ssri "^6.0.1" + tar "^4.4.8" -"@lerna/global-options@^3.1.3": +"@lerna/global-options@3.1.3": version "3.1.3" resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-3.1.3.tgz#cf85e24655a91d04d4efc9a80c1f83fc768d08ae" integrity sha512-LVeZU/Zgc0XkHdGMRYn+EmHfDmmYNwYRv3ta59iCVFXLVp7FRFWF7oB1ss/WRa9x/pYU0o6L8as/5DomLUGASA== -"@lerna/has-npm-version@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-3.3.0.tgz#8a73c2c437a0e1e68a19ccbd0dd3c014d4d39135" - integrity sha512-GX7omRep1eBRZHgjZLRw3MpBJSdA5gPZFz95P7rxhpvsiG384Tdrr/cKFMhm0A09yq27Tk/nuYTaZIj7HsVE6g== +"@lerna/has-npm-version@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-3.10.0.tgz#d3a73c0fedd2f2e9c6fbe166c41809131dc939d2" + integrity sha512-N4RRYxGeivuaKgPDzrhkQOQs1Sg4tOnxnEe3akfqu1wDA4Ng5V6Y2uW3DbkAjFL3aNJhWF5Vbf7sBsGtfgDQ8w== dependencies: - "@lerna/child-process" "^3.3.0" + "@lerna/child-process" "3.3.0" semver "^5.5.0" -"@lerna/import@^3.3.1": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@lerna/import/-/import-3.3.1.tgz#deca8c93c9cc03c5844b975c6da9937dd7530440" - integrity sha512-2OzTQDkYKbBPpyP2iOI1sWfcvMjNLjjHjmREq/uOWJaSIk5J3Ukt71OPpcOHh4V2CBOlXidCcO+Hyb4FVIy8fw== - dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/command" "^3.3.0" - "@lerna/prompt" "^3.3.1" - "@lerna/validation-error" "^3.0.0" +"@lerna/import@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/import/-/import-3.10.0.tgz#701f47c2717bf47cdca0a31ed409ed6fbe973591" + integrity sha512-c8/s/ldaNVGuKnu600B3nbkwJTNElp1duJiZQ7EBChF+szbQBAiQUGNLvBbwClLBzVJhKTw6E4ku17HafQ4vqg== + dependencies: + "@lerna/child-process" "3.3.0" + "@lerna/command" "3.10.0" + "@lerna/prompt" "3.6.0" + "@lerna/pulse-till-done" "3.7.1" + "@lerna/validation-error" "3.6.0" dedent "^0.7.0" fs-extra "^7.0.0" p-map-series "^1.0.0" -"@lerna/init@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/init/-/init-3.3.0.tgz#998f3497da3d891867c593b808b6db4b8fc4ccb9" - integrity sha512-HvgRLkIG6nDIeAO6ix5sUVIVV+W9UMk2rSSmFT66CDOefRi7S028amiyYnFUK1QkIAaUbVUyOnYaErtbJwICuw== +"@lerna/init@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/init/-/init-3.10.0.tgz#073bd12dfeb222b920d848c05f840adcbc23ef63" + integrity sha512-+zU1A870OOOqy3MPLcEoicN6dnIGZv/q0aqCVRRfCHAICciaswuIvdX0uDJx0NrUe0sW40dzIllxuUA39nPqcw== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/command" "^3.3.0" + "@lerna/child-process" "3.3.0" + "@lerna/command" "3.10.0" fs-extra "^7.0.0" p-map "^1.2.0" write-json-file "^2.3.0" -"@lerna/link@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/link/-/link-3.3.0.tgz#c0c05ff52d0f0c659fcf221627edfcd58e477a5c" - integrity sha512-8CeXzGL7okrsVXsy2sHXI2KuBaczw3cblAnA2+FJPUqSKMPNbUTRzeU3bOlCjYtK0LbxC4ngENJTL3jJ8RaYQQ== +"@lerna/link@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/link/-/link-3.10.0.tgz#28b82197907f2622d154070a65fe92c9f67e075c" + integrity sha512-uZvLxTSekqV8Kx0zMPgcxpTWyRkjnqnUzRiff9HQtOq+gBBifX079jGT7X73CO5eXFzp2TkOJtI1KNL0BNoNtA== dependencies: - "@lerna/command" "^3.3.0" - "@lerna/package-graph" "^3.1.2" - "@lerna/symlink-dependencies" "^3.3.0" + "@lerna/command" "3.10.0" + "@lerna/package-graph" "3.10.0" + "@lerna/symlink-dependencies" "3.10.0" p-map "^1.2.0" slash "^1.0.0" -"@lerna/list@^3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@lerna/list/-/list-3.3.2.tgz#1412b3cce2a83b1baa4ff6fb962d50b46c28ec98" - integrity sha512-XXEVy7w+i/xx8NeJmGirw4upEoEF9OfD6XPLjISNQc24VgQV+frXdVJ02QcP7Y/PkY1rdIVrOjvo3ipKVLUxaQ== +"@lerna/list@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@lerna/list/-/list-3.10.1.tgz#09fdf4d394caa23e9fc32c2557c5de480ba0252a" + integrity sha512-y2VwTeJ8tcQ0dmJJNhloGfhmCBUG3RXafqNkUVUG/ItoJlfzVniQOMdIDlkre86ZtnQv9yrB2vFaC2Vg++PklQ== dependencies: - "@lerna/command" "^3.3.0" - "@lerna/filter-options" "^3.3.2" - "@lerna/listable" "^3.0.0" - "@lerna/output" "^3.0.0" + "@lerna/command" "3.10.0" + "@lerna/filter-options" "3.10.1" + "@lerna/listable" "3.10.0" + "@lerna/output" "3.6.0" -"@lerna/listable@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-3.0.0.tgz#27209b1382c87abdbc964220e75c247d803d4199" - integrity sha512-HX/9hyx1HLg2kpiKXIUc1EimlkK1T58aKQ7ovO7rQdTx9ForpefoMzyLnHE1n4XrUtEszcSWJIICJ/F898M6Ag== +"@lerna/listable@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-3.10.0.tgz#ac59671407725d662ed6d9234616c0fbbb0163f6" + integrity sha512-95EwogHBqJxrXOCkf3DAZQAzJes+I668Lg5BJDotfp9eZeJAbgGl6GPz5U+szPq0PrYfK+2kJv9xNXVnbfCZAw== dependencies: + "@lerna/batch-packages" "3.10.0" chalk "^2.3.1" columnify "^1.5.4" -"@lerna/log-packed@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-3.0.4.tgz#6d1f6ce5ca68b9971f2a27f0ecf3c50684be174a" - integrity sha512-vVQHgMagE2wnbxhNY9nFkdu+Cx2TsyWalkJfkxbNzmo6gOCrDsxCBDj9vTEV8Q+4aWx0C0Bsc0sB2Eb8y/+ofA== +"@lerna/log-packed@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-3.6.0.tgz#bed96c2bdd47f076d9957d0c6069b2edc1518145" + integrity sha512-T/J41zMkzpWB5nbiTRS5PmYTFn74mJXe6RQA2qhkdLi0UqnTp97Pux1loz3jsJf2yJtiQUnyMM7KuKIAge0Vlw== dependencies: byte-size "^4.0.3" columnify "^1.5.4" has-unicode "^2.0.1" - npmlog "^4.1.2" + libnpm "^2.0.1" -"@lerna/npm-conf@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-3.4.1.tgz#859e931b0bc9a5eed86309cc09508810c1e7d121" - integrity sha512-i9G6DnbCqiAqxKx2rSXej/n14qxlV/XOebL6QZonxJKzNTB+Q2wglnhTXmfZXTPJfoqimLaY4NfAEtbOXRWOXQ== +"@lerna/npm-conf@3.7.0": + version "3.7.0" + resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-3.7.0.tgz#f101d4fdf07cefcf1161bcfaf3c0f105b420a450" + integrity sha512-+WSMDfPKcKzMfqq283ydz9RRpOU6p9wfx0wy4hVSUY/6YUpsyuk8SShjcRtY8zTM5AOrxvFBuuV90H4YpZ5+Ng== dependencies: config-chain "^1.1.11" pify "^3.0.0" -"@lerna/npm-dist-tag@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-3.3.0.tgz#e1c5ab67674216d901266a16846b21cc81ff6afd" - integrity sha512-EtZJXzh3w5tqXEev+EBBPrWKWWn0WgJfxm4FihfS9VgyaAW8udIVZHGkIQ3f+tBtupcAzA9Q8cQNUkGF2efwmA== +"@lerna/npm-dist-tag@3.8.5": + version "3.8.5" + resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-3.8.5.tgz#5ce22a72576badc8cb6baf85550043d63e66ea44" + integrity sha512-VO57yKTB4NC2LZuTd4w0LmlRpoFm/gejQ1gqqLGzSJuSZaBXmieElFovzl21S07cqiy7FNVdz75x7/a6WCZ6XA== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/get-npm-exec-opts" "^3.0.0" - npmlog "^4.1.2" + figgy-pudding "^3.5.1" + libnpm "^2.0.1" -"@lerna/npm-install@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-3.3.0.tgz#16d00ffd668d11b2386b3ac68bdac2cf8320e533" - integrity sha512-WoVvKdS8ltROTGSNQwo6NDq0YKnjwhvTG4li1okcN/eHKOS3tL9bxbgPx7No0wOq5DKBpdeS9KhAfee6LFAZ5g== +"@lerna/npm-install@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-3.10.0.tgz#fcd6688a3a2cd0e702a03c54c22eb7ae8b3dacb0" + integrity sha512-/6/XyLY9/4jaMPBOVYUr4wZxQURIfwoELY0qCQ8gZ5zv4cOiFiiCUxZ0i4fxqFtD7nJ084zq1DsZW0aH0CIWYw== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/get-npm-exec-opts" "^3.0.0" + "@lerna/child-process" "3.3.0" + "@lerna/get-npm-exec-opts" "3.6.0" fs-extra "^7.0.0" - npm-package-arg "^6.0.0" - npmlog "^4.1.2" + libnpm "^2.0.1" signal-exit "^3.0.2" write-pkg "^3.1.0" -"@lerna/npm-publish@^3.3.1": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-3.3.1.tgz#30384665d7ee387343332ece62ca231207bbabea" - integrity sha512-bVTlWIcBL6Zpyzqvr9C7rxXYcoPw+l7IPz5eqQDNREj1R39Wj18OWB2KTJq8l7LIX7Wf4C2A1uT5hJaEf9BuvA== +"@lerna/npm-publish@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-3.10.5.tgz#b2eb47cd7f3d1cdbfe32a13140017348ffe0e204" + integrity sha512-6wpgTfu5A5jJeB8RnH2n01HzfaB4Y9aKC0Tq0AAkw37PZ12LTgEL9I+ZZPqhUVFIFLB8/Ekpnj3AcKznJLG5xQ== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/get-npm-exec-opts" "^3.0.0" - "@lerna/has-npm-version" "^3.3.0" - "@lerna/log-packed" "^3.0.4" + "@lerna/run-lifecycle" "3.10.5" + figgy-pudding "^3.5.1" fs-extra "^7.0.0" - npmlog "^4.1.2" - p-map "^1.2.0" + libnpm "^2.0.1" -"@lerna/npm-run-script@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-3.3.0.tgz#3c79601c27c67121155b20e039be53130217db72" - integrity sha512-YqDguWZzp4jIomaE4aWMUP7MIAJAFvRAf6ziQLpqwoQskfWLqK5mW0CcszT1oLjhfb3cY3MMfSTFaqwbdKmICg== +"@lerna/npm-run-script@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-3.10.0.tgz#49a9204eddea136da15a8d8d9eba2c3175b77ddd" + integrity sha512-c21tBXLF1Wje4tx/Td9jKIMrlZo/8QQiyyadjdKpwyyo7orSMsVNXGyJwvZ4JVVDcwC3GPU6HQvkt63v7rcyaw== dependencies: - "@lerna/child-process" "^3.3.0" - "@lerna/get-npm-exec-opts" "^3.0.0" - npmlog "^4.1.2" + "@lerna/child-process" "3.3.0" + "@lerna/get-npm-exec-opts" "3.6.0" + libnpm "^2.0.1" -"@lerna/output@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/output/-/output-3.0.0.tgz#4ed4a30ed2f311046b714b3840a090990ba3ce35" - integrity sha512-EFxnSbO0zDEVKkTKpoCUAFcZjc3gn3DwPlyTDxbeqPU7neCfxP4rA4+0a6pcOfTlRS5kLBRMx79F2TRCaMM3DA== +"@lerna/output@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/output/-/output-3.6.0.tgz#a69384bc685cf3b21aa1bfc697eb2b9db3333d0b" + integrity sha512-9sjQouf6p7VQtVCRnzoTGlZyURd48i3ha3WBHC/UBJnHZFuXMqWVPKNuvnMf2kRXDyoQD+2mNywpmEJg5jOnRg== dependencies: - npmlog "^4.1.2" + libnpm "^2.0.1" -"@lerna/package-graph@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-3.1.2.tgz#b70298a3a8c82e12090da33233bf242223a38f20" - integrity sha512-9wIWb49I1IJmyjPdEVZQ13IAi9biGfH/OZHOC04U2zXGA0GLiY+B3CAx6FQvqkZ8xEGfqzmXnv3LvZ0bQfc1aQ== +"@lerna/pack-directory@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-3.10.5.tgz#9bdabceacb74e1f54e47bae925e193978f2aae51" + integrity sha512-Ulj24L9XdgjJIxBr6ZjRJEoBULVH3c10lqunUdW41bswXhzhirRtQIxv0+5shngNjDwgMmJfOBcuCVKPSez4tg== dependencies: - "@lerna/validation-error" "^3.0.0" - npm-package-arg "^6.0.0" + "@lerna/get-packed" "3.7.0" + "@lerna/package" "3.7.2" + "@lerna/run-lifecycle" "3.10.5" + figgy-pudding "^3.5.1" + libnpm "^2.0.1" + npm-packlist "^1.1.12" + tar "^4.4.8" + temp-write "^3.4.0" + +"@lerna/package-graph@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-3.10.0.tgz#e457900d52164b9640e6a425ce679f73afb49246" + integrity sha512-9LX8I8KxzCMjfNPWvN/CxHW51s89S3Mnx2EYsbo8c8Gh8I6InA6e+Xur6uuCyZ6/0LKqQ/cXwrP3J81A4nIDSQ== + dependencies: + "@lerna/validation-error" "3.6.0" + libnpm "^2.0.1" semver "^5.5.0" -"@lerna/package@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/package/-/package-3.0.0.tgz#14afc9a6cb1f7f7b23c1d7c7aa81bdac7d44c0e5" - integrity sha512-djzEJxzn212wS8d9znBnlXkeRlPL7GqeAYBykAmsuq51YGvaQK67Umh5ejdO0uxexF/4r7yRwgrlRHpQs8Rfqg== +"@lerna/package@3.7.2": + version "3.7.2" + resolved "https://registry.yarnpkg.com/@lerna/package/-/package-3.7.2.tgz#03c69fd7fb965c372c8c969165a2f7d6dfe2dfcb" + integrity sha512-8A5hN2CekM1a0Ix4VUO/g+REo+MsnXb8lnQ0bGjr1YGWzSL5NxYJ0Z9+0pwTfDpvRDYlFYO0rMVwBUW44b4dUw== dependencies: - npm-package-arg "^6.0.0" + libnpm "^2.0.1" + load-json-file "^4.0.0" write-pkg "^3.1.0" -"@lerna/project@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/project/-/project-3.0.0.tgz#4320d2a2b4080cabcf95161d9c48475217d8a545" - integrity sha512-XhDFVfqj79jG2Speggd15RpYaE8uiR25UKcQBDmumbmqvTS7xf2cvl2pq2UTvDafaJ0YwFF3xkxQZeZnFMwdkw== +"@lerna/project@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/project/-/project-3.10.0.tgz#98272bf2eb93e9b21850edae568d696bf7fdebda" + integrity sha512-9QRl8aGHuyU4zVEELQmNPnJTlS7XHqX7w9I9isCXdnilKc2R0MyvUs21lj6Yyt6xTuQnqD158TR9tbS4QufYQQ== dependencies: - "@lerna/package" "^3.0.0" - "@lerna/validation-error" "^3.0.0" + "@lerna/package" "3.7.2" + "@lerna/validation-error" "3.6.0" cosmiconfig "^5.0.2" dedent "^0.7.0" dot-prop "^4.2.0" glob-parent "^3.1.0" globby "^8.0.1" + libnpm "^2.0.1" load-json-file "^4.0.0" - npmlog "^4.1.2" p-map "^1.2.0" resolve-from "^4.0.0" write-json-file "^2.3.0" -"@lerna/prompt@^3.3.1": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-3.3.1.tgz#ec53f9034a7a02a671627241682947f65078ab88" - integrity sha512-eJhofrUCUaItMIH6et8kI7YqHfhjWqGZoTsE+40NRCfAraOMWx+pDzfRfeoAl3qeRAH2HhNj1bkYn70FbUOxuQ== +"@lerna/prompt@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-3.6.0.tgz#b17cc464dec9d830619723e879dc747367378217" + integrity sha512-nyAjPMolJ/ZRAAVcXrUH89C4n1SiWvLh4xWNvWYKLcf3PI5yges35sDFP/HYrM4+cEbkNFuJCRq6CxaET4PRsg== dependencies: inquirer "^6.2.0" - npmlog "^4.1.2" - -"@lerna/publish@^3.4.3": - version "3.4.3" - resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-3.4.3.tgz#fb956ca2a871729982022889f90d0e8eb8528340" - integrity sha512-baeRL8xmOR25p86cAaS9mL0jdRzdv4dUo04PlK2Wes+YlL705F55cSXeC9npNie+9rGwFyLzCTQe18WdbZyLuw== - dependencies: - "@lerna/batch-packages" "^3.1.2" - "@lerna/check-working-tree" "^3.3.0" - "@lerna/child-process" "^3.3.0" - "@lerna/collect-updates" "^3.3.2" - "@lerna/command" "^3.3.0" - "@lerna/describe-ref" "^3.3.0" - "@lerna/get-npm-exec-opts" "^3.0.0" - "@lerna/npm-conf" "^3.4.1" - "@lerna/npm-dist-tag" "^3.3.0" - "@lerna/npm-publish" "^3.3.1" - "@lerna/output" "^3.0.0" - "@lerna/prompt" "^3.3.1" - "@lerna/run-lifecycle" "^3.4.1" - "@lerna/run-parallel-batches" "^3.0.0" - "@lerna/validation-error" "^3.0.0" - "@lerna/version" "^3.4.1" + libnpm "^2.0.1" + +"@lerna/publish@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-3.10.5.tgz#70da53112325172a109707a21ecf5b1d6fb40e0a" + integrity sha512-26wjTtRbcUXlG8Na7goI0X1trMYivbuLT1bAXHNvuDaHYs7iE6LRjU4NCTNAmrdVnqagHkTxMuGRFn3r1NgcKg== + dependencies: + "@lerna/batch-packages" "3.10.0" + "@lerna/check-working-tree" "3.10.0" + "@lerna/child-process" "3.3.0" + "@lerna/collect-updates" "3.10.1" + "@lerna/command" "3.10.0" + "@lerna/describe-ref" "3.10.0" + "@lerna/log-packed" "3.6.0" + "@lerna/npm-conf" "3.7.0" + "@lerna/npm-dist-tag" "3.8.5" + "@lerna/npm-publish" "3.10.5" + "@lerna/output" "3.6.0" + "@lerna/pack-directory" "3.10.5" + "@lerna/prompt" "3.6.0" + "@lerna/pulse-till-done" "3.7.1" + "@lerna/run-lifecycle" "3.10.5" + "@lerna/run-parallel-batches" "3.0.0" + "@lerna/validation-error" "3.6.0" + "@lerna/version" "3.10.5" + figgy-pudding "^3.5.1" fs-extra "^7.0.0" - libnpmaccess "^3.0.0" - npm-package-arg "^6.0.0" - npm-registry-fetch "^3.8.0" - npmlog "^4.1.2" + libnpm "^2.0.1" p-finally "^1.0.0" p-map "^1.2.0" p-pipe "^1.2.0" p-reduce "^1.0.0" semver "^5.5.0" -"@lerna/resolve-symlink@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-3.3.0.tgz#c5d99a60cb17e2ea90b3521a0ba445478d194a44" - integrity sha512-KmoPDcFJ2aOK2inYHbrsiO9SodedUj0L1JDvDgirVNIjMUaQe2Q6Vi4Gh+VCJcyB27JtfHioV9R2NxU72Pk2hg== +"@lerna/pulse-till-done@3.7.1": + version "3.7.1" + resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-3.7.1.tgz#a9e55380fa18f6896a3e5b23621a4227adfb8f85" + integrity sha512-MzpesZeW3Mc+CiAq4zUt9qTXI9uEBBKrubYHE36voQTSkHvu/Rox6YOvfUr+U7P6k8frFPeCgGpfMDTLhiqe6w== + dependencies: + libnpm "^2.0.1" + +"@lerna/resolve-symlink@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-3.6.0.tgz#985344796b704ff32afa923901e795e80741b86e" + integrity sha512-TVOAEqHJSQVhNDMFCwEUZPaOETqHDQV1TQWQfC8ZlOqyaUQ7veZUbg0yfG7RPNzlSpvF0ZaGFeR0YhYDAW03GA== dependencies: fs-extra "^7.0.0" - npmlog "^4.1.2" + libnpm "^2.0.1" read-cmd-shim "^1.0.1" -"@lerna/rimraf-dir@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-3.3.0.tgz#687e9bb3668a9e540e281302a52d9a573860f5db" - integrity sha512-vSqOcZ4kZduiSprbt+y40qziyN3VKYh+ygiCdnbBbsaxpdKB6CfrSMUtrLhVFrqUfBHIZRzHIzgjTdtQex1KLw== +"@lerna/rimraf-dir@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-3.10.0.tgz#2d9435054ab7bbc5519db0a2654c5d8cacd27f98" + integrity sha512-RSKSfxPURc58ERCD/PuzorR86lWEvIWNclXYGvIYM76yNGrWiDF44pGHQvB4J+Lxa5M+52ZtZC/eOC7A7YCH4g== dependencies: - "@lerna/child-process" "^3.3.0" - npmlog "^4.1.2" + "@lerna/child-process" "3.3.0" + libnpm "^2.0.1" path-exists "^3.0.0" rimraf "^2.6.2" -"@lerna/run-lifecycle@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-3.4.1.tgz#6d7e44eada31cb4ec78b18ef050da0d86f6c892b" - integrity sha512-N/hi2srM9A4BWEkXccP7vCEbf4MmIuALF00DTBMvc0A/ccItwUpl3XNuM7+ADDRK0mkwE3hDw89lJ3A7f8oUQw== +"@lerna/run-lifecycle@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-3.10.5.tgz#ea4422bb70c0f8d4382ecb2a626c8ba0ca88550b" + integrity sha512-YPmXviaxVlhcKM6IkDTIpTq24mxOuMCilo+MTr1RLoafgB9ZTmP2AHRiFt/sy14wOsq2Zqr0wJyj8KFlDYLTkA== dependencies: - "@lerna/npm-conf" "^3.4.1" - npm-lifecycle "^2.0.0" - npmlog "^4.1.2" + "@lerna/npm-conf" "3.7.0" + figgy-pudding "^3.5.1" + libnpm "^2.0.1" -"@lerna/run-parallel-batches@^3.0.0": +"@lerna/run-parallel-batches@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@lerna/run-parallel-batches/-/run-parallel-batches-3.0.0.tgz#468704934084c74991d3124d80607857d4dfa840" integrity sha512-Mj1ravlXF7AkkewKd9YFq9BtVrsStNrvVLedD/b2wIVbNqcxp8lS68vehXVOzoL/VWNEDotvqCQtyDBilCodGw== @@ -904,70 +939,75 @@ p-map "^1.2.0" p-map-series "^1.0.0" -"@lerna/run@^3.3.2": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@lerna/run/-/run-3.3.2.tgz#f521f4a22585c90758f34a584cb1871f8bb2a83e" - integrity sha512-cruwRGZZWnQ5I0M+AqcoT3Xpq2wj3135iVw4n59/Op6dZu50sMFXZNLiTTTZ15k8rTKjydcccJMdPSpTHbH7/A== - dependencies: - "@lerna/batch-packages" "^3.1.2" - "@lerna/command" "^3.3.0" - "@lerna/filter-options" "^3.3.2" - "@lerna/npm-run-script" "^3.3.0" - "@lerna/output" "^3.0.0" - "@lerna/run-parallel-batches" "^3.0.0" - "@lerna/validation-error" "^3.0.0" +"@lerna/run@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@lerna/run/-/run-3.10.1.tgz#2b9eb2cff455de588a77a3d9b192bfe03ad866d7" + integrity sha512-g9YIcpk87Gok+zjicru/KsuZ1lcyuG5oERyAii3RSmpLaiwTh/SOSnxilrvDOYWwxYU5rPzvaCalkQI/i31Itw== + dependencies: + "@lerna/batch-packages" "3.10.0" + "@lerna/command" "3.10.0" + "@lerna/filter-options" "3.10.1" + "@lerna/npm-run-script" "3.10.0" + "@lerna/output" "3.6.0" + "@lerna/run-parallel-batches" "3.0.0" + "@lerna/timer" "3.5.0" + "@lerna/validation-error" "3.6.0" p-map "^1.2.0" -"@lerna/symlink-binary@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-3.3.0.tgz#99ea570b21baabd61ecab27582eeb1d7b2c5f9cf" - integrity sha512-zRo6CimhvH/VJqCFl9T4IC6syjpWyQIxEfO2sBhrapEcfwjtwbhoGgKwucsvt4rIpFazCw63jQ/AXMT27KUIHg== +"@lerna/symlink-binary@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-3.10.0.tgz#5acdde86dfd50c9270d7d2a93bade203cff41b3d" + integrity sha512-6mQsG+iVjBo8cD8s24O+YgFrwDyUGfUQbK4ryalAXFHI817Zd4xlI3tjg3W99whCt6rt6D0s1fpf8eslMN6dSw== dependencies: - "@lerna/create-symlink" "^3.3.0" - "@lerna/package" "^3.0.0" + "@lerna/create-symlink" "3.6.0" + "@lerna/package" "3.7.2" fs-extra "^7.0.0" p-map "^1.2.0" - read-pkg "^3.0.0" -"@lerna/symlink-dependencies@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-3.3.0.tgz#13bcaed3e37986ab01b13498a459c7f609397dc3" - integrity sha512-IRngSNCmuD5uBKVv23tHMvr7Mplti0lKHilFKcvhbvhAfu6m/Vclxhkfs/uLyHzG+DeRpl/9o86SQET3h4XDhg== +"@lerna/symlink-dependencies@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-3.10.0.tgz#a20226e8e97af6a6bc4b416bfc28c0c5e3ba9ddd" + integrity sha512-vGpg5ydwGgQCuWNX5y7CRL38mGpuLhf1GRq9wMm7IGwnctEsdSNqvvE+LDgqtwEZASu5+vffYUkL0VlFXl8uWA== dependencies: - "@lerna/create-symlink" "^3.3.0" - "@lerna/resolve-symlink" "^3.3.0" - "@lerna/symlink-binary" "^3.3.0" + "@lerna/create-symlink" "3.6.0" + "@lerna/resolve-symlink" "3.6.0" + "@lerna/symlink-binary" "3.10.0" fs-extra "^7.0.0" p-finally "^1.0.0" p-map "^1.2.0" p-map-series "^1.0.0" -"@lerna/validation-error@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-3.0.0.tgz#a27e90051c3ba71995e2a800a43d94ad04b3e3f4" - integrity sha512-5wjkd2PszV0kWvH+EOKZJWlHEqCTTKrWsvfHnHhcUaKBe/NagPZFWs+0xlsDPZ3DJt5FNfbAPAnEBQ05zLirFA== - dependencies: - npmlog "^4.1.2" +"@lerna/timer@3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-3.5.0.tgz#8dee6acf002c55de64678c66ef37ca52143f1b9b" + integrity sha512-TAb99hqQN6E3JBGtG9iyZNPq1/DbmqgBOeNrKtdJsGvIeX/NGLgUDWMrj2h04V4O+jpBFmSf6HIld6triKmxCA== -"@lerna/version@^3.4.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@lerna/version/-/version-3.4.1.tgz#029448cccd3ccefb4d5f666933bd13cfb37edab0" - integrity sha512-oefNaQLBJSI2WLZXw5XxDXk4NyF5/ct0V9ys/J308NpgZthPgwRPjk9ZR0o1IOxW1ABi6z3E317W/dxHDjvAkg== - dependencies: - "@lerna/batch-packages" "^3.1.2" - "@lerna/check-working-tree" "^3.3.0" - "@lerna/child-process" "^3.3.0" - "@lerna/collect-updates" "^3.3.2" - "@lerna/command" "^3.3.0" - "@lerna/conventional-commits" "^3.4.1" - "@lerna/output" "^3.0.0" - "@lerna/prompt" "^3.3.1" - "@lerna/run-lifecycle" "^3.4.1" - "@lerna/validation-error" "^3.0.0" +"@lerna/validation-error@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-3.6.0.tgz#550cf66bb2ef88edc02e36017b575a7a9100d5d8" + integrity sha512-MWltncGO5VgMS0QedTlZCjFUMF/evRjDMMHrtVorkIB2Cp5xy0rkKa8iDBG43qpUWeG1giwi58yUlETBcWfILw== + dependencies: + libnpm "^2.0.1" + +"@lerna/version@3.10.5": + version "3.10.5" + resolved "https://registry.yarnpkg.com/@lerna/version/-/version-3.10.5.tgz#233b41a679d3ec020ea85d00d45cba8c22a27ba7" + integrity sha512-I6KynsrWvtusylggw+XmlfUud26ncfUctbn8hUQsofkxiouuElx1fUU4rEsOaonxvNk09bwlsGmfbIFsPeN6Hg== + dependencies: + "@lerna/batch-packages" "3.10.0" + "@lerna/check-working-tree" "3.10.0" + "@lerna/child-process" "3.3.0" + "@lerna/collect-updates" "3.10.1" + "@lerna/command" "3.10.0" + "@lerna/conventional-commits" "3.10.0" + "@lerna/output" "3.6.0" + "@lerna/prompt" "3.6.0" + "@lerna/run-lifecycle" "3.10.5" + "@lerna/validation-error" "3.6.0" chalk "^2.3.1" dedent "^0.7.0" + libnpm "^2.0.1" minimatch "^3.0.4" - npmlog "^4.1.2" p-map "^1.2.0" p-pipe "^1.2.0" p-reduce "^1.0.0" @@ -976,12 +1016,12 @@ slash "^1.0.0" temp-write "^3.4.0" -"@lerna/write-log-file@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-3.0.0.tgz#2f95fee80c6821fe1ee6ccf8173d2b4079debbd2" - integrity sha512-SfbPp29lMeEVOb/M16lJwn4nnx5y+TwCdd7Uom9umd7KcZP0NOvpnX0PHehdonl7TyHZ1Xx2maklYuCLbQrd/A== +"@lerna/write-log-file@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-3.6.0.tgz#b8d5a7efc84fa93cbd67d724d11120343b2a849a" + integrity sha512-OkLK99V6sYXsJsYg+O9wtiFS3z6eUPaiz2e6cXJt80mfIIdI1t2dnmyua0Ib5cZWExQvx2z6Y32Wlf0MnsoNsA== dependencies: - npmlog "^4.1.2" + libnpm "^2.0.1" write-file-atomic "^2.3.0" "@marionebl/sander@^0.6.0": @@ -1026,9 +1066,9 @@ integrity sha512-yfhIBix+AIFTmYGtkC0Bi+XGjSkOINykqKvO/Wqdz/DuXlAKK7HmhLAXdPIGsV4xzKcL3ev/zYc4yLNo+OvGaw== "@types/node@*": - version "10.12.10" - resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.10.tgz#4fa76e6598b7de3f0cb6ec3abacc4f59e5b3a2ce" - integrity sha512-8xZEYckCbUVgK8Eg7lf5Iy4COKJ5uXlnIOnePN0WUwSQggy9tolM+tDJf7wMOnT/JT/W9xDYIaYggt3mRV2O5w== + version "10.12.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" + integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== "@types/zen-observable@^0.8.0": version "0.8.0" @@ -1310,9 +1350,9 @@ agentkeepalive@^3.4.1: humanize-ms "^1.2.1" ajv-errors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.0.tgz#ecf021fa108fd17dfb5e6b383f2dd233e31ffc59" - integrity sha1-7PAh+hCP0X37Xms4Py3SM+Mf/Fk= + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== ajv-keywords@^2.1.0: version "2.1.1" @@ -1334,7 +1374,7 @@ ajv@^5.0.0, ajv@^5.2.3, ajv@^5.3.0: fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.3.0" -ajv@^6.0.1, ajv@^6.1.0, ajv@^6.1.1, ajv@^6.5.5: +ajv@^6.0.1, ajv@^6.1.1: version "6.5.5" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.5.tgz#cf97cdade71c6399a92c6d6c4177381291b781a1" integrity sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg== @@ -1344,6 +1384,16 @@ ajv@^6.0.1, ajv@^6.1.0, ajv@^6.1.1, ajv@^6.5.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^6.1.0, ajv@^6.5.5: + version "6.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.6.2.tgz#caceccf474bf3fc3ce3b147443711a24063cc30d" + integrity sha512-FBHEW6Jf5TB9MGBgUUA9XHkTbjXYfAUjY43ACMfmdMRHniyoMHjHjzD50OK8LGDWQwp4rWEsIq5kEqq7rvIM1g== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" @@ -1393,6 +1443,11 @@ ansi-regex@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= +ansi-regex@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9" + integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w== + ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" @@ -1433,7 +1488,7 @@ apollo-cache-control@^0.1.0: dependencies: graphql-extensions "^0.0.x" -apollo-cache-inmemory@^1.1.7, apollo-cache-inmemory@^1.2.4: +apollo-cache-inmemory@^1.1.7: version "1.3.11" resolved "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.3.11.tgz#6cb8f24ec812715169f9acbb0b67833f9a19ec90" integrity sha512-fSoyjBV5RV57J3i/VHDDB74ZgXc0PFiogheNFHEhC0mL6rg5e/DjTx0Vg+csIBk23gvlzTvV+eypx7Q2NJ+dYg== @@ -1442,13 +1497,29 @@ apollo-cache-inmemory@^1.1.7, apollo-cache-inmemory@^1.2.4: apollo-utilities "^1.0.26" optimism "^0.6.6" -apollo-cache@1.1.21, apollo-cache@^1.1.21: +apollo-cache-inmemory@^1.2.4: + version "1.3.12" + resolved "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.3.12.tgz#cf7ef7c15730d0b6787d79047d5c06087ac31991" + integrity sha512-jxWcW64QoYQZ09UH6v3syvCCl3MWr6bsxT3wYYL6ORi8svdJUpnNrHTcv5qXqJYVg/a+NHhfEt+eGjJUG2ytXA== + dependencies: + apollo-cache "^1.1.22" + apollo-utilities "^1.0.27" + optimism "^0.6.8" + +apollo-cache@1.1.21: version "1.1.21" resolved "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.1.21.tgz#950025e2272741ba8e5064419906e3ac4072925d" integrity sha512-5ErNb78KHtrJNimkDBTEigcvHkIqUmS7QJIk4lpZZ+XLVVgvk2fD+GhD1PLP+s8vHfAKVbO6vdbRxCCjGGrh5w== dependencies: apollo-utilities "^1.0.26" +apollo-cache@1.1.22, apollo-cache@^1.1.21, apollo-cache@^1.1.22: + version "1.1.22" + resolved "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.1.22.tgz#d4682ea6e8b2508a934f61c2fd9e36b4a65041d9" + integrity sha512-8PoxhQLISj2oHwT7i/r4l+ly4y3RKZls+dtXzAewu3U77P9dNZKhYkRNAhx9iEfsrNoHgXBV8vMp64hb1uYh+g== + dependencies: + apollo-utilities "^1.0.27" + apollo-client-preset@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/apollo-client-preset/-/apollo-client-preset-1.0.8.tgz#23bd7176849d0d815f12c648774d009b258a449e" @@ -1460,7 +1531,7 @@ apollo-client-preset@^1.0.8: apollo-link-http "^1.3.1" graphql-tag "^2.4.2" -apollo-client@^2.2.2, apollo-client@^2.3.4: +apollo-client@^2.2.2: version "2.4.7" resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.4.7.tgz#b6712fd4c9ba346e3c44cfec7e6868e532b6a957" integrity sha512-6aAm+16AFBYZhJF8eKxrup6AbYni01InDiwTfZhMMTP2xaXQWjsQnfaHbI2oE+hd3+AZFy1drkse8RZKghR/WQ== @@ -1475,28 +1546,50 @@ apollo-client@^2.2.2, apollo-client@^2.3.4: optionalDependencies: "@types/async" "2.0.50" +apollo-client@^2.3.4: + version "2.4.8" + resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.4.8.tgz#3a798f1076243465a59061d44d11bd030b68deb9" + integrity sha512-OAFbCTnGPtaIv0j+EZYzY20d+MD2JNbJ/YXZ4s0/oZlSg87bb0gjcIbccw2lnytipymZcZNr5ArFFeh0saGEwA== + dependencies: + "@types/zen-observable" "^0.8.0" + apollo-cache "1.1.22" + apollo-link "^1.0.0" + apollo-link-dedup "^1.0.0" + apollo-utilities "1.0.27" + symbol-observable "^1.0.2" + zen-observable "^0.8.0" + optionalDependencies: + "@types/async" "2.0.50" + apollo-link-context@^1.0.5: - version "1.0.10" - resolved "https://registry.yarnpkg.com/apollo-link-context/-/apollo-link-context-1.0.10.tgz#c20b0b32c6e4e08c0d3967174f9c2a897c8431fe" - integrity sha512-HX3BEmkANs2A8AcYCy92SFJrW+0SbGrhDTSHV6ZwKIJ9ZrsOtly8cMrRLzEw1emjHIz5SP7XJEn3ko7BwhBBSw== + version "1.0.12" + resolved "https://registry.yarnpkg.com/apollo-link-context/-/apollo-link-context-1.0.12.tgz#02d72e621a3b75239d4419a9bfd38d8bd9bb0d3f" + integrity sha512-gb4UptV9O6Kp3i5b2TlDEfPSL2LG//mTSb3zyuR5U2cAzu/huw98f1CCxcjUKTrlIMsQuE6G/hbaThDxnoIThQ== dependencies: - apollo-link "^1.2.4" + apollo-link "^1.2.6" apollo-link-dedup@^1.0.0: - version "1.0.11" - resolved "https://registry.yarnpkg.com/apollo-link-dedup/-/apollo-link-dedup-1.0.11.tgz#6f34ea748d2834850329ad03111ef18445232b05" - integrity sha512-RcvkXR0CNbQcsw6LdrPksGa+9YjZ1ghk0k2PKal6rSBCyyqzokcBawXOtoMN8q+0FLR1dGs5GnAQVeucQuY28g== + version "1.0.13" + resolved "https://registry.yarnpkg.com/apollo-link-dedup/-/apollo-link-dedup-1.0.13.tgz#bb22957e18b6125ae8bfb46cab6bda8d33ba8046" + integrity sha512-i4NuqT3DSFczFcC7NMUzmnYjKX7NggLY+rqYVf+kE9JjqKOQhT6wqhaWsVIABfIUGE/N0DTgYJBCMu/18aXmYA== dependencies: - apollo-link "^1.2.4" + apollo-link "^1.2.6" -apollo-link-http-common@^0.2.4, apollo-link-http-common@^0.2.6: +apollo-link-http-common@^0.2.4: version "0.2.6" resolved "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.6.tgz#47b9012500599fe343e2e87378026384b4fc8c1f" integrity sha512-LUOMWvrZuBP1hyWLBXyaW0KyFeKo79j+k3N+Q4HSkXKbLibnllXQ+JxxoSKGhm0bhREygiLtJAG9JnGlhxGO/Q== dependencies: apollo-link "^1.2.4" -apollo-link-http@^1.3.1, apollo-link-http@^1.5.4: +apollo-link-http-common@^0.2.6, apollo-link-http-common@^0.2.8: + version "0.2.8" + resolved "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.8.tgz#c6deedfc2739db8b11013c3c2d2ccd657152941f" + integrity sha512-gGmXZN8mr7e9zjopzKQfZ7IKnh8H12NxBDzvp9nXI3U82aCVb72p+plgoYLcpMY8w6krvoYjgicFmf8LO20TCQ== + dependencies: + apollo-link "^1.2.6" + +apollo-link-http@^1.3.1: version "1.5.7" resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.7.tgz#098615c427a910ec8c5817476bbabe68c586b339" integrity sha512-EZ9nynHjwYCpGYP5IsRrZGTWidUVpshk7MuSG4joqGtJMwpFCgMQz+y3BHdUhowHtfAd9z60XmeOTG9FJolb8A== @@ -1504,14 +1597,30 @@ apollo-link-http@^1.3.1, apollo-link-http@^1.5.4: apollo-link "^1.2.4" apollo-link-http-common "^0.2.6" +apollo-link-http@^1.5.4: + version "1.5.9" + resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.9.tgz#9046f5640a94c8a8b508a39e0f2c628b781baecc" + integrity sha512-9tJy2zGm4Cm/1ycScDNZJe51dgnTSfKx7pKIgPZmcxkdDpgUY2DZitDH6ZBv4yp9z8MC9Xr9wgwc29s6hcadUQ== + dependencies: + apollo-link "^1.2.6" + apollo-link-http-common "^0.2.8" + apollo-link-ws@^1.0.8: - version "1.0.10" - resolved "https://registry.yarnpkg.com/apollo-link-ws/-/apollo-link-ws-1.0.10.tgz#9fb5489a36f5fcb0d139b6ada0eea979ecad3967" - integrity sha512-1Yx4iIUsWS8wuAdVJ2LF+LdIYAsqHSto8eShwJ/d2SovocsMCwN9hyS+JkaOPD/KHAkavTWzN6l3XwSOdOwevQ== + version "1.0.12" + resolved "https://registry.yarnpkg.com/apollo-link-ws/-/apollo-link-ws-1.0.12.tgz#e343bb0c071f2db0ae147a2327f03cc1740d0c2d" + integrity sha512-BjbskhfuuIgk9e4XHdrqmjxkY+RkD1tuerrs4PLiPTkJYcQrvA8t27lGBSrDUKHWH4esCdhQF1UhKPwhlouEHw== dependencies: - apollo-link "^1.2.4" + apollo-link "^1.2.6" + +apollo-link@^1.0.0, apollo-link@^1.2.1, apollo-link@^1.2.4, apollo-link@^1.2.6: + version "1.2.6" + resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.6.tgz#d9b5676d79c01eb4e424b95c7171697f6ad2b8da" + integrity sha512-sUNlA20nqIF3gG3F8eyMD+mO80fmf3dPZX+GUOs3MI9oZR8ug09H3F0UsWJMcpEg6h55Yy5wZ+BMmAjrbenF/Q== + dependencies: + apollo-utilities "^1.0.0" + zen-observable-ts "^0.8.13" -apollo-link@^1.0.0, apollo-link@^1.0.6, apollo-link@^1.2.1, apollo-link@^1.2.3, apollo-link@^1.2.4: +apollo-link@^1.0.6, apollo-link@^1.2.3: version "1.2.4" resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.4.tgz#ab4d21d2e428db848e88b5e8f4adc717b19c954b" integrity sha512-B1z+9H2nTyWEhMXRFSnoZ1vSuAYP+V/EdUJvRx9uZ8yuIBZMm6reyVtr1n0BWlKeSFyPieKJy2RLzmITAAQAMQ== @@ -1566,13 +1675,20 @@ apollo-upload-server@^4.0.2: busboy "^0.2.14" object-path "^0.11.4" -apollo-utilities@1.0.26, apollo-utilities@^1.0.0, apollo-utilities@^1.0.1, apollo-utilities@^1.0.26: +apollo-utilities@1.0.26, apollo-utilities@^1.0.1: version "1.0.26" resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.26.tgz#589c66bf4d16223531351cf667a230c787def1da" integrity sha512-URw7o3phymliqYCYatcird2YRPUU2eWCNvip64U9gQrX56mEfK4m99yBIDCMTpmcvOFsKLii1sIEZsHIs/bvnw== dependencies: fast-json-stable-stringify "^2.0.0" +apollo-utilities@1.0.27, apollo-utilities@^1.0.0, apollo-utilities@^1.0.26, apollo-utilities@^1.0.27: + version "1.0.27" + resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.27.tgz#77c550f9086552376eca3a48e234a1466b5b057e" + integrity sha512-nzrMQ89JMpNmYnVGJ4t8zN75gQbql27UDhlxNi+3OModp0Masx5g+fQmQJ5B4w2dpRuYOsdwFLmj3lQbwOKV1Q== + dependencies: + fast-json-stable-stringify "^2.0.0" + app-root-path@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.1.0.tgz#98bf6599327ecea199309866e8140368fd2e646a" @@ -1590,12 +1706,12 @@ append-transform@^0.4.0: dependencies: default-require-extensions "^1.0.0" -aproba@^1.0.3, aproba@^1.1.1: +aproba@^1.0.3, aproba@^1.1.1, aproba@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -aproba@^2.0.0: +"aproba@^1.1.2 || 2", aproba@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== @@ -1942,9 +2058,9 @@ autoprefixer@^7.1.2: postcss-value-parser "^3.2.3" aws-sdk@^2.185.0: - version "2.363.0" - resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.363.0.tgz#6d366a78d5b008fd927d6ff24815d39d78b54778" - integrity sha512-kQOfjzCEllH45OFN0z3fvhpSWDFWu19715A7TztHx6IEWKwwIEyd3b2XhTZtQLJrI1Giv7iGALwH46gybH9HJw== + version "2.386.0" + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.386.0.tgz#59c94086a69c4580ffce061d81972d3c1e20d9a1" + integrity sha512-ZQOa2KK2f7X0vxgQPeoRIWoBgU20pSMXUDRWF8vjHUacj34CTtGE5lurp2OLYFyiucLOp9OxP0R/zosYgecxPw== dependencies: buffer "4.9.1" events "1.1.1" @@ -1953,7 +2069,7 @@ aws-sdk@^2.185.0: querystring "0.2.0" sax "1.2.1" url "0.10.3" - uuid "3.1.0" + uuid "3.3.2" xml2js "0.4.19" aws-sign2@~0.7.0: @@ -2254,11 +2370,12 @@ babel-plugin-jest-hoist@^23.2.0: integrity sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc= "babel-plugin-styled-components@>= 1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.9.1.tgz#53dde7a9cdff22a16db197129b1e68160c926e8b" - integrity sha512-mn7vI7ueBzr7ntLbDAhvILxjOnFPO/JzZsnU1wakgSh4YNrgLZ+oMnycRnC8xpZut3Kuwcz8dZJDsWJBl1OXVA== + version "1.10.0" + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.10.0.tgz#ff1f42ad2cc78c21f26b62266b8f564dbc862939" + integrity sha512-sQVKG8irFXx14ZfaK1bBePirfkacl3j8nZwSZK+ZjsbnadRHKQTbhXbe/RB1vT6Vgkz45E+V95LBq4KqdhZUNw== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-module-imports" "^7.0.0" babel-plugin-syntax-jsx "^6.18.0" lodash "^4.17.10" @@ -2847,7 +2964,7 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -bcrypt@^3.0.2: +bcrypt@3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/bcrypt/-/bcrypt-3.0.2.tgz#3c575c49ccbfdf0875eb42aa1453f5654092a33d" integrity sha512-kE1IaaRchCgdrmzQX/eBQKcsuL4jRHZ+O11sMvEUrI/HgFTQYAGvxlj9z7kb3zfFuwljQ5y8/NrbnXtgx5oJLg== @@ -2865,6 +2982,22 @@ big.js@^3.1.3: resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +bin-links@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-1.1.2.tgz#fb74bd54bae6b7befc6c6221f25322ac830d9757" + integrity sha512-8eEHVgYP03nILphilltWjeIjMbKyJo3wvp9K816pHbhP301ismzw15mxAAEVQ/USUwcP++1uNrbERbp8lOA6Fg== + dependencies: + bluebird "^3.5.0" + cmd-shim "^2.0.2" + gentle-fs "^2.0.0" + graceful-fs "^4.1.11" + write-file-atomic "^2.3.0" + binary-extensions@^1.0.0: version "1.12.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" @@ -2949,9 +3082,9 @@ boom@2.x.x: hoek "2.x.x" bootstrap-sass@^3.3.7: - version "3.3.7" - resolved "https://registry.yarnpkg.com/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz#6596c7ab40f6637393323ab0bc80d064fc630498" - integrity sha1-ZZbHq0D2Y3OTMjqwvIDQZPxjBJg= + version "3.4.0" + resolved "https://registry.yarnpkg.com/bootstrap-sass/-/bootstrap-sass-3.4.0.tgz#b1c330a56782347f626d31d497fa4aea16b3f99b" + integrity sha512-qdUyw4KmNNPSIdBadn+eyuuQFH0LsZlRCs6tor1zN8sQas7mnY5JNfemauraOdNPiFQd2gFeeo3gZjZZCuohZg== brace-expansion@^1.1.7: version "1.1.11" @@ -3265,24 +3398,24 @@ cacache@^10.0.4: unique-filename "^1.1.0" y18n "^4.0.0" -cacache@^11.0.1, cacache@^11.0.2, cacache@^11.2.0: - version "11.3.1" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.1.tgz#d09d25f6c4aca7a6d305d141ae332613aa1d515f" - integrity sha512-2PEw4cRRDu+iQvBTTuttQifacYjLPhET+SYO/gEFMy8uhi+jlJREDAjSF5FWSdV/Aw5h18caHA7vMTw2c+wDzA== +cacache@^11.0.1, cacache@^11.0.2, cacache@^11.3.2: + version "11.3.2" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa" + integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg== dependencies: - bluebird "^3.5.1" - chownr "^1.0.1" - figgy-pudding "^3.1.0" - glob "^7.1.2" - graceful-fs "^4.1.11" - lru-cache "^4.1.3" + bluebird "^3.5.3" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.3" + graceful-fs "^4.1.15" + lru-cache "^5.1.1" mississippi "^3.0.0" mkdirp "^0.5.1" move-concurrently "^1.0.1" promise-inflight "^1.0.1" rimraf "^2.6.2" - ssri "^6.0.0" - unique-filename "^1.1.0" + ssri "^6.0.1" + unique-filename "^1.1.1" y18n "^4.0.0" cache-base@^1.0.1: @@ -3479,7 +3612,7 @@ chalk@2.3.1: escape-string-regexp "^1.0.5" supports-color "^5.2.0" -chalk@2.4.1, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1: +chalk@2.4.1, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== @@ -3488,6 +3621,15 @@ chalk@2.4.1, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4. escape-string-regexp "^1.0.5" supports-color "^5.3.0" +chalk@^2.0.0, chalk@^2.3.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + change-emitter@^0.1.2: version "0.1.6" resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515" @@ -3877,11 +4019,6 @@ colormin@^1.0.5: css-color-names "0.0.4" has "^1.0.1" -colors@0.5.x: - version "0.5.1" - resolved "https://registry.yarnpkg.com/colors/-/colors-0.5.1.tgz#7d0023eaeb154e8ee9fce75dcb923d0ed1667774" - integrity sha1-fQAj6usVTo7p/Oddy5I9DtFmd3Q= - colors@0.6.x, colors@0.x.x, colors@~0.6.0-1: version "0.6.2" resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" @@ -3893,9 +4030,9 @@ colors@1.0.3, colors@1.0.x: integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs= colors@^1.1.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.2.tgz#2df8ff573dfbf255af562f8ce7181d6b971a359b" - integrity sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ== + version "1.3.3" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" + integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== colors@~1.1.2: version "1.1.2" @@ -4049,6 +4186,13 @@ config@^2.0.1: dependencies: json5 "^1.0.1" +config@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/config/-/config-3.0.1.tgz#c3118e2eb45fdfd135277339f87e2492559cb147" + integrity sha512-TBNrrk2b6AybUohqXw2AydglFBL9b/+1GG93Di6Fm6x1SyVJ5PYgo+mqY2X0KpU9m0PJDSbFaC5H95utSphtLw== + dependencies: + json5 "^1.0.1" + connect-history-api-fallback@^1.3.0: version "1.5.0" resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a" @@ -4099,7 +4243,7 @@ conventional-changelog-angular@^1.3.3: compare-func "^1.3.1" q "^1.5.1" -conventional-changelog-angular@^5.0.1: +conventional-changelog-angular@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.2.tgz#39d945635e03b6d0c9d4078b1df74e06163dc66a" integrity sha512-yx7m7lVrXmt4nKWQgWZqxSALEiAKZhOAcbxdUaU9575mB0CzXVbgrgpfSnSP7OqWDUTYGD0YVJ0MSRdyOPgAwA== @@ -4107,7 +4251,7 @@ conventional-changelog-angular@^5.0.1: compare-func "^1.3.1" q "^1.5.1" -conventional-changelog-core@^3.1.0: +conventional-changelog-core@^3.1.5: version "3.1.5" resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-3.1.5.tgz#c2edf928539308b54fe1b90a2fc731abc021852c" integrity sha512-iwqAotS4zk0wA4S84YY1JCUG7X3LxaRjJxuUo6GI4dZuIy243j5nOg/Ora35ExT4DOiw5dQbMMQvw2SUjh6moQ== @@ -4186,7 +4330,7 @@ conventional-commits-parser@^3.0.1: through2 "^2.0.0" trim-off-newlines "^1.0.0" -conventional-recommended-bump@^4.0.1: +conventional-recommended-bump@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-4.0.4.tgz#05540584641d3da758c8863c09788fcaeb586872" integrity sha512-9mY5Yoblq+ZMqJpBzgS+RpSq+SUfP2miOR3H/NR9drGf08WCrY9B6HAGJZEm6+ThsVP917VHAahSOjM6k1vhPg== @@ -4266,11 +4410,16 @@ core-js@^1.0.0: resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= -core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.3, core-js@^2.5.7: +core-js@^2.4.0, core-js@^2.5.0, core-js@^2.5.3, core-js@^2.5.7: version "2.5.7" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" integrity sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw== +core-js@^2.4.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.2.tgz#267988d7268323b349e20b4588211655f0e83944" + integrity sha512-NdBPF/RVwPW6jr0NCILuyN9RiqLo2b1mddWHkUL+VnvcB7dzlnBJ1bXYntjpTGOgkZiiLWj2JxmOr7eGE3qK6g== + core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -4803,7 +4952,7 @@ defaults@^1.0.3: dependencies: clone "^1.0.2" -define-properties@^1.1.2: +define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== @@ -4971,7 +5120,7 @@ diffie-hellman@^5.0.0: miller-rabin "^4.0.0" randombytes "^2.0.0" -dir-glob@^2.0.0: +dir-glob@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== @@ -4979,6 +5128,13 @@ dir-glob@^2.0.0: arrify "^1.0.1" path-type "^3.0.0" +dir-glob@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.1.tgz#ce8413234ffe8452b76b7741c32f116cf2a7b1a7" + integrity sha512-UN6X6XwRjllabfRhBdkVSo63uurJ8nSvMGrwl94EYVz6g+exhTV+yVSYk5VC/xl3MBFBTtC0J20uFKce4Brrng== + dependencies: + path-type "^3.0.0" + discontinuous-range@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" @@ -4999,10 +5155,10 @@ dnd-core@^2.6.0: lodash "^4.2.0" redux "^3.7.1" -dnd-core@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-7.0.0.tgz#2eca34d5f166c5c9546e7c117fd7029be03b110b" - integrity sha512-U8WqPcFZl09xdC9W+91eChXET2h8RR2cUVG9ZbZrThka902AgIdyH1lODfs/JWgcMRvbysVcdl5Ka+Jsh0rM6Q== +dnd-core@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-7.0.2.tgz#6c080eb57243fa0372fd083b3db242d9eb525010" + integrity sha512-InwRBi6zTndtE3+3nTYpLJkYMEr7utSR7OziAoSFhtQsbUfJE1KeqxM+ZFRIMKn6ehxUTAC+QU6QC7IG9u86Mg== dependencies: asap "^2.0.6" invariant "^2.2.4" @@ -5074,15 +5230,10 @@ domain-browser@^1.1.1: resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== -domelementtype@1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.2.1.tgz#578558ef23befac043a1abb0db07635509393479" - integrity sha512-SQVCLFS2E7G5CRCMdn6K9bIhRj1bS6QBWZfF0TUPh4V/BbqrQ619IdSS3/izn0FZ+9l+uODzaZjb08fjOfablA== - -domelementtype@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" - integrity sha1-sXrtguirWeUt2cGbF1bg/BhyBMI= +domelementtype@1, domelementtype@^1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== domelementtype@~1.1.1: version "1.1.3" @@ -5143,6 +5294,11 @@ dotenv@^4.0.0: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" integrity sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0= +dotenv@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064" + integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== + duplexer2@~0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" @@ -5267,14 +5423,14 @@ enhanced-resolve@^4.1.0: tapable "^1.0.0" entities@^1.1.1, entities@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" - integrity sha1-blwtClYhtdra7O+AuQ7ftc13cvA= + version "1.1.2" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== enzyme-adapter-react-16@^1.1.1, enzyme-adapter-react-16@^1.6.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.7.0.tgz#90344395a89624edbe7f0e443bc19fef62bf1f9f" - integrity sha512-rDr0xlnnFPffAPYrvG97QYJaRl9unVDslKee33wTStsBEwZTkESX1H7VHGT5eUc6ifNzPgOJGvSh2zpHT4gXjA== + version "1.7.1" + resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.7.1.tgz#c37c4cb0fd75e88a063154a7a88096474914496a" + integrity sha512-OQXKgfHWyHN3sFu2nKj3mhgRcqIPIJX6aOzq5AHVFES4R9Dw/vCBZFMPyaG81g2AZ5DogVh39P3MMNUbqNLTcw== dependencies: enzyme-adapter-utils "^1.9.0" function.prototype.name "^1.1.0" @@ -5285,9 +5441,9 @@ enzyme-adapter-react-16@^1.1.1, enzyme-adapter-react-16@^1.6.0: react-test-renderer "^16.0.0-0" enzyme-adapter-utils@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.9.0.tgz#3997c20f3387fdcd932b155b3740829ea10aa86c" - integrity sha512-uMe4xw4l/Iloh2Fz+EO23XUYMEQXj5k/5ioLUXCNOUCI8Dml5XQMO9+QwUq962hBsY5qftfHHns+d990byWHvg== + version "1.9.1" + resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.9.1.tgz#68196fdaf2a9f51f31603cbae874618661233d72" + integrity sha512-LWc88BbKztLXlpRf5Ba/pSMJRaNezAwZBvis3N/IuB65ltZEh2E2obWU9B36pAbw7rORYeBUuqc79OL17ZzN1A== dependencies: function.prototype.name "^1.1.0" object.assign "^4.1.0" @@ -5295,9 +5451,9 @@ enzyme-adapter-utils@^1.9.0: semver "^5.6.0" enzyme@^3.7.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.7.0.tgz#9b499e8ca155df44fef64d9f1558961ba1385a46" - integrity sha512-QLWx+krGK6iDNyR1KlH5YPZqxZCQaVF6ike1eDJAOg0HvSkSCVImPsdWaNw6v+VrnK92Kg8jIOYhuOSS9sBpyg== + version "3.8.0" + resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.8.0.tgz#646d2d5d0798cb98fdec39afcee8a53237b47ad5" + integrity sha512-bfsWo5nHyZm1O1vnIsbwdfhU989jk+squU9NKvB+Puwo5j6/Wg9pN5CO0YJelm98Dao3NPjkDZk+vvgwpMwYxw== dependencies: array.prototype.flat "^1.2.1" cheerio "^1.0.0-rc.2" @@ -5338,7 +5494,19 @@ error-ex@^1.2.0, error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.10.0, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.6.1, es-abstract@^1.7.0: +es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.5.0, es-abstract@^1.7.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" + integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-keys "^1.0.12" + +es-abstract@^1.5.1: version "1.12.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA== @@ -5349,7 +5517,7 @@ es-abstract@^1.10.0, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.6.1, is-callable "^1.1.3" is-regex "^1.0.4" -es-to-primitive@^1.1.1: +es-to-primitive@^1.1.1, es-to-primitive@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== @@ -5635,15 +5803,17 @@ eslint-plugin-promise@~3.7.0: integrity sha512-2WO+ZFh7vxUKRfR0cOIMrWgYKdR6S1AlOezw6pC52B6oYpd5WFghN+QHxvrRdZMtbo8h3dfUZ2o1rWb0UPbKtg== eslint-plugin-react@^7.4.0: - version "7.11.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz#c01a7af6f17519457d6116aa94fc6d2ccad5443c" - integrity sha512-cVVyMadRyW7qsIUh3FHp3u6QHNhOgVrLQYdQEB1bPWBsgbNCHdFAeNMquBMCcZJu59eNthX053L70l7gRt4SCw== + version "7.12.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.3.tgz#b9ca4cd7cd3f5d927db418a1950366a12d4568fd" + integrity sha512-WTIA3cS8OzkPeCi4KWuPmjR33lgG9r9Y/7RmnLTRw08MZKgAfnK/n3BO4X0S67MPkVLazdfCNT/XWqcDu4BLTA== dependencies: array-includes "^3.0.3" doctrine "^2.1.0" has "^1.0.3" jsx-ast-utils "^2.0.1" + object.fromentries "^2.0.0" prop-types "^15.6.2" + resolve "^1.9.0" eslint-plugin-react@~7.7.0: version "7.7.0" @@ -6181,9 +6351,9 @@ fast-diff@^1.1.1: integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== fast-glob@^2.0.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.4.tgz#e54f4b66d378040e0e4d6a68ec36bbc5b04363c0" - integrity sha512-FjK2nCGI/McyzgNtTESqaWP3trPvHyRyoyY70hxjc3oKPNmDe8taohLZpoVKoUjW85tbU5txaYUZCNtVzygl1g== + version "2.2.6" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz#a5d5b697ec8deda468d85a74035290a025a95295" + integrity sha512-0BvMaZc1k9F+MeWWMe8pL6YltFzZYcJsYU7D4JyDA6PAczaXvxqQQ/z+mDF7/4Mw01DeUc+i3CTKajnkANkV4w== dependencies: "@mrmlnc/readdir-enhanced" "^2.2.1" "@nodelib/fs.stat" "^1.1.2" @@ -6236,9 +6406,9 @@ fb-watchman@^2.0.0: bser "^2.0.0" fbjs-css-vars@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.1.tgz#836d876e887d702f45610f5ebd2fbeef649527fc" - integrity sha512-IM+v/C40MNZWqsLErc32e0TyIk/NhkkQZL0QmjBh6zi1eXv0/GeVKmKmueQX7nn9SXQBQbTUcB8zuexIF3/88w== + version "1.0.2" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== fbjs@^0.8.0, fbjs@^0.8.1, fbjs@^0.8.16, fbjs@^0.8.5: version "0.8.17" @@ -6272,7 +6442,7 @@ feature-policy@0.2.0: resolved "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.2.0.tgz#22096de49ab240176878ffe2bde2f6ff04d48c43" integrity sha512-2hGrlv6efG4hscYVZeaYjpzpT6I2OZgYqE2yDUzeAcKj2D1SH0AsEzqJNXzdoglEddcIXQQYop3lD97XpG75Jw== -figgy-pudding@^3.1.0, figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: +figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: version "3.5.1" resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== @@ -6391,6 +6561,11 @@ find-node-modules@1.0.4: findup-sync "0.4.2" merge "^1.2.0" +find-npm-prefix@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/find-npm-prefix/-/find-npm-prefix-1.0.2.tgz#8d8ce2c78b3b4b9e66c8acc6a37c231eb841cfdf" + integrity sha512-KEftzJ+H90x6pcKtdXZEPsQse8/y/UnvzRKrOSQFprnrGaFuJ62fVkP34Iu2IYuMvyauCyoLTNkJZgrrGA2wkA== + find-parent-dir@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" @@ -6570,20 +6745,20 @@ formidable@^1.2.0: resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.1.tgz#70fb7ca0290ee6ff961090415f4b3df3d2082659" integrity sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg== -formik@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/formik/-/formik-1.3.0.tgz#0ef20938f40c3b4bd46003c0b069bdd2d5a90118" - integrity sha512-vW72DluHwQPmCkkSQGlFRAsuVaNElO/zT71FApr7yFHSEA6qBf1socKWcw0muQDp6fvD/Z6wo2itlQLnggP4UA== +formik@^1.3.0, formik@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/formik/-/formik-1.4.2.tgz#684e6e9fb0c8309a17b0d8f3f57993ee83bf96f2" + integrity sha512-ZssZJmR15wEE+gepEUQQjNoyUIfpc+zwLFZiWNnC4ZolhBM7EQO7wjip+gIC9y/1k3c4tDeEite+CMCwk4ti4Q== dependencies: create-react-context "^0.2.2" deepmerge "^2.1.1" hoist-non-react-statics "^2.5.5" - lodash.clonedeep "^4.5.0" - lodash.topath "4.5.2" + lodash "^4.17.11" + lodash-es "^4.17.11" prop-types "^15.6.1" - react-fast-compare "^1.0.0" + react-fast-compare "^2.0.1" + tiny-warning "^1.0.2" tslib "^1.9.3" - warning "^3.0.0" forwarded@~0.1.2: version "0.1.2" @@ -6643,7 +6818,7 @@ fs-extra@^4.0.2: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^7.0.0: +fs-extra@^7.0.0, fs-extra@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== @@ -6664,6 +6839,15 @@ fs-readdir-recursive@^1.0.0: resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== +fs-vacuum@^1.2.10: + version "1.2.10" + resolved "https://registry.yarnpkg.com/fs-vacuum/-/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36" + integrity sha1-t2Kb7AekAxolSP35n17PHMizHjY= + dependencies: + graceful-fs "^4.1.2" + path-is-inside "^1.0.1" + rimraf "^2.5.2" + fs-write-stream-atomic@^1.0.8: version "1.0.10" resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" @@ -6697,7 +6881,7 @@ fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: mkdirp ">=0.5 0" rimraf "2" -function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1: +function-bind@^1.0.2, function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== @@ -6747,6 +6931,20 @@ genfun@^5.0.0: resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537" integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA== +gentle-fs@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/gentle-fs/-/gentle-fs-2.0.1.tgz#585cfd612bfc5cd52471fdb42537f016a5ce3687" + integrity sha512-cEng5+3fuARewXktTEGbwsktcldA+YsnUEaXZwcK/3pjSE1X9ObnTs+/8rYf8s+RnIcQm2D5x3rwpN7Zom8Bew== + dependencies: + aproba "^1.1.2" + fs-vacuum "^1.2.10" + graceful-fs "^4.1.11" + iferr "^0.1.5" + mkdirp "^0.5.1" + path-is-inside "^1.0.2" + read-cmd-shim "^1.0.1" + slide "^1.1.6" + get-caller-file@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" @@ -6984,7 +7182,7 @@ globals@^9.18.0: resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== -globby@8.0.1, globby@^8.0.1: +globby@8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50" integrity sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw== @@ -7020,6 +7218,19 @@ globby@^7.0.0, globby@^7.1.1: pify "^3.0.0" slash "^1.0.0" +globby@^8.0.1: + version "8.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" + integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== + dependencies: + array-union "^1.0.1" + dir-glob "2.0.0" + fast-glob "^2.0.2" + glob "^7.1.2" + ignore "^3.3.5" + pify "^3.0.0" + slash "^1.0.0" + globjoin@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" @@ -7048,7 +7259,7 @@ gonzales-pe@^4.0.3: dependencies: minimist "1.1.x" -graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: +graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: version "4.1.15" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== @@ -7078,7 +7289,7 @@ graphql-subscriptions@^0.5.8: dependencies: iterall "^1.2.1" -graphql-tag@^2.4.2, graphql-tag@^2.7.3: +graphql-tag@^2.10.0, graphql-tag@^2.4.2, graphql-tag@^2.7.3: version "2.10.0" resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.10.0.tgz#87da024be863e357551b2b8700e496ee2d4353ae" integrity sha512-9FD6cw976TLLf9WYIUPCaaTpniawIjHWZSwIRZSjrfufJamcXbVVYfN2TWvJYbw0Xf2JjYbl1/f2+wDnBVw3/w== @@ -7232,9 +7443,9 @@ hash-base@^3.0.0: safe-buffer "^5.0.1" hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.5" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.5.tgz#e38ab4b85dfb1e0c40fe9265c0e9b54854c23812" - integrity sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA== + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== dependencies: inherits "^2.0.3" minimalistic-assert "^1.0.1" @@ -7315,16 +7526,23 @@ hoek@2.x.x: integrity sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0= hoek@6.x.x: - version "6.0.4" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-6.0.4.tgz#8db638130825534575e8e4e80f97ca66108e6382" - integrity sha512-9D47elppcwrTx2x9B6TrovxnUtlTBYFcHGgo0+LRA1+YfUkCecT//41ovdh6zbl7whB9Hc2whRO1c6lzPoTgww== + version "6.1.2" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-6.1.2.tgz#99e6d070561839de74ee427b61aa476bd6bddfd6" + integrity sha512-6qhh/wahGYZHFSFw12tBbJw5fsAhhwrrG/y3Cs0YMTv2WzMnL0oLPnQJjv1QJvEfylRSOFuP+xCu+tdx0tD16Q== hoist-non-react-statics@^2.1.0, hoist-non-react-statics@^2.3.1, hoist-non-react-statics@^2.5.0, hoist-non-react-statics@^2.5.4, hoist-non-react-statics@^2.5.5: version "2.5.5" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw== -hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0: +hoist-non-react-statics@^3.0.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.2.1.tgz#c09c0555c84b38a7ede6912b61efddafd6e75e1e" + integrity sha512-TFsu3TV3YLY+zFTZDrN8L2DTFanObwmBLpWvJs1qfUuEQ5bTAdFcwfx2T/bsCXfM9QHSLvjfP+nihEl0yvozxw== + dependencies: + react-is "^16.3.2" + +hoist-non-react-statics@^3.1.0: version "3.2.0" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.2.0.tgz#d21b9fc72b50fdc38c5d88f6e2c52f2c2dbe5ee2" integrity sha512-3IascCRfaEkbmHjJnUxWSspIUE1okLPjGTMVXW8zraUo1t3yg1BadKAxAGILHwgoBzmMnzrgeeaDGBvpuPz6dA== @@ -7477,7 +7695,7 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" -http-status-codes@^1.0.6: +http-status-codes@^1.0.6, http-status-codes@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/http-status-codes/-/http-status-codes-1.3.0.tgz#9cd0e71391773d0671b489d41cbc5094aa4163b6" integrity sha1-nNDnE5F3PQZxtInUHLxQlKpBY7Y= @@ -7689,7 +7907,7 @@ inherits@2.0.1: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= -ini@1.x.x, ini@^1.3.2, ini@^1.3.4, ini@~1.3.0: +ini@1.x.x, ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== @@ -7747,7 +7965,7 @@ inquirer@3.0.6: strip-ansi "^3.0.0" through "^2.3.6" -inquirer@6.2.0, inquirer@^6.2.0: +inquirer@6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8" integrity sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg== @@ -7786,6 +8004,25 @@ inquirer@^3.0.6: strip-ansi "^4.0.0" through "^2.3.6" +inquirer@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz#9943fc4882161bdb0b0c9276769c75b32dbfcd52" + integrity sha512-088kl3DRT2dLU5riVMKKr1DlImd6X7smDhpXUCkJDCKvTEJeRiXh0G132HG9u5a+6Ylw9plFRY7RuTnwohYSpg== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^3.0.0" + figures "^2.0.0" + lodash "^4.17.10" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^6.1.0" + string-width "^2.1.0" + strip-ansi "^5.0.0" + through "^2.3.6" + internal-ip@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-3.0.1.tgz#df5c99876e1d2eb2ea2d74f520e3f669a00ece27" @@ -8805,10 +9042,10 @@ joi-browser@^13.4.0: resolved "https://registry.yarnpkg.com/joi-browser/-/joi-browser-13.4.0.tgz#b72ba61b610e3f58e51b563a14e0f5225cfb6896" integrity sha512-TfzJd2JaJ/lg/gU+q5j9rLAjnfUNF9DUmXTP9w+GfmG79LjFOXFeM7hIFuXCBcZCivUDFwd9l1btTV9rhHumtQ== -joi@^14.3.0: - version "14.3.0" - resolved "https://registry.yarnpkg.com/joi/-/joi-14.3.0.tgz#55f7c5caa8256de74ccb12eb22ab1c19eea02db3" - integrity sha512-0HKd1z8MWogez4GaU0LkY1FgW30vR2Kwy414GISfCU41OYgUC2GWpNe5amsvBZtDqPtt7DohykfOOMIw1Z5hvQ== +joi@^14.3.0, joi@^14.3.1: + version "14.3.1" + resolved "https://registry.yarnpkg.com/joi/-/joi-14.3.1.tgz#164a262ec0b855466e0c35eea2a885ae8b6c703c" + integrity sha512-LQDdM+pkOrpAn4Lp+neNIFV3axv1Vna3j38bisbQhETPMANYRbFJFUyOZcOClYvM/hppMhGWuKSFEK9vjrB+bQ== dependencies: hoek "6.x.x" isemail "3.x.x" @@ -8824,7 +9061,12 @@ joi@^6.9.1: moment "2.x.x" topo "1.x.x" -js-base64@^2.1.8, js-base64@^2.1.9: +js-base64@^2.1.8: + version "2.5.0" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.0.tgz#42255ba183ab67ce59a0dee640afdc00ab5ae93e" + integrity sha512-wlEBIZ5LP8usDylWbDNhKPEFVFdI5hCHpnVoT/Ysvoi/PRhJENm/Rlh9TvjYB38HFfKZN7OzEbRjmjvLkFw11g== + +js-base64@^2.1.9: version "2.4.9" resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.9.tgz#748911fb04f48a60c4771b375cac45a80df11c03" integrity sha512-xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ== @@ -8839,7 +9081,7 @@ js-tokens@^3.0.0, js-tokens@^3.0.2: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.7.0, js-yaml@^3.9.0, js-yaml@^3.9.1: +js-yaml@^3.7.0, js-yaml@^3.9.1: version "3.12.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A== @@ -8847,6 +9089,14 @@ js-yaml@^3.7.0, js-yaml@^3.9.0, js-yaml@^3.9.1: argparse "^1.0.7" esprima "^4.0.0" +js-yaml@^3.9.0: + version "3.12.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600" + integrity sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + js-yaml@~3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" @@ -9185,27 +9435,27 @@ left-pad@^1.3.0: integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== lerna@^3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.4.3.tgz#501454efb453c65c305802d370ee337f7298787e" - integrity sha512-tWq1LvpHqkyB+FaJCmkEweivr88yShDMmauofPVdh0M5gU1cVucszYnIgWafulKYu2LMQ3IfUMUU5Pp3+MvADQ== - dependencies: - "@lerna/add" "^3.4.1" - "@lerna/bootstrap" "^3.4.1" - "@lerna/changed" "^3.4.1" - "@lerna/clean" "^3.3.2" - "@lerna/cli" "^3.2.0" - "@lerna/create" "^3.4.1" - "@lerna/diff" "^3.3.0" - "@lerna/exec" "^3.3.2" - "@lerna/import" "^3.3.1" - "@lerna/init" "^3.3.0" - "@lerna/link" "^3.3.0" - "@lerna/list" "^3.3.2" - "@lerna/publish" "^3.4.3" - "@lerna/run" "^3.3.2" - "@lerna/version" "^3.4.1" + version "3.10.5" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.10.5.tgz#6cc0ba2919bb4da016714ec53451b301d78be783" + integrity sha512-rJ67oqEiF8AVw+9phKbGkC0k0oqu1rdnmzrIfVS40EQCwEtzBC1ABX1886PBV0N40Pt9wCy6a0Jhrd+PV4IiIQ== + dependencies: + "@lerna/add" "3.10.5" + "@lerna/bootstrap" "3.10.5" + "@lerna/changed" "3.10.5" + "@lerna/clean" "3.10.1" + "@lerna/cli" "3.10.0" + "@lerna/create" "3.10.0" + "@lerna/diff" "3.10.0" + "@lerna/exec" "3.10.1" + "@lerna/import" "3.10.0" + "@lerna/init" "3.10.0" + "@lerna/link" "3.10.0" + "@lerna/list" "3.10.1" + "@lerna/publish" "3.10.5" + "@lerna/run" "3.10.1" + "@lerna/version" "3.10.5" import-local "^1.0.0" - npmlog "^4.1.2" + libnpm "^2.0.1" leven@^2.1.0: version "2.1.0" @@ -9220,7 +9470,33 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -libnpmaccess@^3.0.0: +libnpm@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/libnpm/-/libnpm-2.0.1.tgz#a48fcdee3c25e13c77eb7c60a0efe561d7fb0d8f" + integrity sha512-qTKoxyJvpBxHZQB6k0AhSLajyXq9ZE/lUsZzuHAplr2Bpv9G+k4YuYlExYdUCeVRRGqcJt8hvkPh4tBwKoV98w== + dependencies: + bin-links "^1.1.2" + bluebird "^3.5.3" + find-npm-prefix "^1.0.2" + libnpmaccess "^3.0.1" + libnpmconfig "^1.2.1" + libnpmhook "^5.0.2" + libnpmorg "^1.0.0" + libnpmpublish "^1.1.0" + libnpmsearch "^2.0.0" + libnpmteam "^1.0.1" + lock-verify "^2.0.2" + npm-lifecycle "^2.1.0" + npm-logical-tree "^1.2.1" + npm-package-arg "^6.1.0" + npm-profile "^4.0.1" + npm-registry-fetch "^3.8.0" + npmlog "^4.1.2" + pacote "^9.2.3" + read-package-json "^2.0.13" + stringify-package "^1.0.0" + +libnpmaccess@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-3.0.1.tgz#5b3a9de621f293d425191aa2e779102f84167fa8" integrity sha512-RlZ7PNarCBt+XbnP7R6PoVgOq9t+kou5rvhaInoNibhPO7eMlRfS0B8yjatgn2yaHIwWNyoJDolC/6Lc5L/IQA== @@ -9230,6 +9506,69 @@ libnpmaccess@^3.0.0: npm-package-arg "^6.1.0" npm-registry-fetch "^3.8.0" +libnpmconfig@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/libnpmconfig/-/libnpmconfig-1.2.1.tgz#c0c2f793a74e67d4825e5039e7a02a0044dfcbc0" + integrity sha512-9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA== + dependencies: + figgy-pudding "^3.5.1" + find-up "^3.0.0" + ini "^1.3.5" + +libnpmhook@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-5.0.2.tgz#d12817b0fb893f36f1d5be20017f2aea25825d94" + integrity sha512-vLenmdFWhRfnnZiNFPNMog6CK7Ujofy2TWiM2CrpZUjBRIhHkJeDaAbJdYCT6W4lcHtyrJR8yXW8KFyq6UAp1g== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.4.1" + get-stream "^4.0.0" + npm-registry-fetch "^3.8.0" + +libnpmorg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-1.0.0.tgz#979b868c48ba28c5820e3bb9d9e73c883c16a232" + integrity sha512-o+4eVJBoDGMgRwh2lJY0a8pRV2c/tQM/SxlqXezjcAg26Qe9jigYVs+Xk0vvlYDWCDhP0g74J8UwWeAgsB7gGw== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.4.1" + get-stream "^4.0.0" + npm-registry-fetch "^3.8.0" + +libnpmpublish@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-1.1.0.tgz#773bd6fc9ed247e4a41a68ebd69fdc096ea630a3" + integrity sha512-mQ3LT2EWlpJ6Q8mgHTNqarQVCgcY32l6xadPVPMcjWLtVLz7II4WlWkzlbYg1nHGAf+xyABDwS+3aNUiRLkyaA== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.5.1" + get-stream "^4.0.0" + lodash.clonedeep "^4.5.0" + normalize-package-data "^2.4.0" + npm-package-arg "^6.1.0" + npm-registry-fetch "^3.8.0" + semver "^5.5.1" + ssri "^6.0.1" + +libnpmsearch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-2.0.0.tgz#de05af47ada81554a5f64276a69599070d4a5685" + integrity sha512-vd+JWbTGzOSfiOc+72MU6y7WqmBXn49egCCrIXp27iE/88bX8EpG64ST1blWQI1bSMUr9l1AKPMVsqa2tS5KWA== + dependencies: + figgy-pudding "^3.5.1" + get-stream "^4.0.0" + npm-registry-fetch "^3.8.0" + +libnpmteam@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-1.0.1.tgz#ff704b1b6c06ea674b3b1101ac3e305f5114f213" + integrity sha512-gDdrflKFCX7TNwOMX1snWojCoDE5LoRWcfOC0C/fqF7mBq8Uz9zWAX4B2RllYETNO7pBupBaSyBDkTAC15cAMg== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.4.1" + get-stream "^4.0.0" + npm-registry-fetch "^3.8.0" + libtidy-updated@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/libtidy-updated/-/libtidy-updated-0.4.0.tgz#7e34dd4087fb8d721b95354f8d4380d07bfe3be9" @@ -9376,7 +9715,7 @@ loader-runner@^2.3.0: resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.1.tgz#026f12fe7c3115992896ac02ba022ba92971b979" integrity sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw== -loader-utils@1.1.0, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0: +loader-utils@1.1.0, loader-utils@^1.0.1, loader-utils@^1.0.2: version "1.1.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" integrity sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0= @@ -9385,6 +9724,15 @@ loader-utils@1.1.0, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1. emojis-list "^2.0.0" json5 "^0.5.0" +loader-utils@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -9401,7 +9749,15 @@ locate-path@^3.0.0: p-locate "^3.0.0" path-exists "^3.0.0" -lodash-es@^4.17.10, lodash-es@^4.2.1: +lock-verify@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lock-verify/-/lock-verify-2.0.2.tgz#148e4f85974915c9e3c34d694b7de9ecb18ee7a8" + integrity sha512-QNVwK0EGZBS4R3YQ7F1Ox8p41Po9VGl2QG/2GsuvTbkJZYSsPeWHKMbbH6iZMCHWSMww5nrJroZYnGzI4cePuw== + dependencies: + npm-package-arg "^5.1.2 || 6" + semver "^5.4.1" + +lodash-es@^4.17.10, lodash-es@^4.17.11, lodash-es@^4.2.1: version "4.17.11" resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.11.tgz#145ab4a7ac5c5e52a3531fb4f310255a152b4be0" integrity sha512-DHb1ub+rMjjrxqlB3H56/6MXtm1lSksDp2rA2cNWjG8mlDUYFhUj3Di2Zn5IwSU87xLv8tNIQ7sSwE/YOX/D/Q== @@ -9606,11 +9962,6 @@ lodash.topairs@4.3.0: resolved "https://registry.yarnpkg.com/lodash.topairs/-/lodash.topairs-4.3.0.tgz#3b6deaa37d60fb116713c46c5f17ea190ec48d64" integrity sha1-O23qo31g+xFnE8RsXxfqGQ7EjWQ= -lodash.topath@4.5.2: - version "4.5.2" - resolved "https://registry.yarnpkg.com/lodash.topath/-/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009" - integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak= - lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" @@ -9688,7 +10039,15 @@ lowercase-keys@^1.0.1: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== -lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.2, lru-cache@^4.1.3: +lru-cache@^4.0.1, lru-cache@^4.1.2, lru-cache@^4.1.3: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^4.1.1: version "4.1.4" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.4.tgz#51cc46e8e6d9530771c857e24ccc720ecdbcc031" integrity sha512-EPstzZ23znHUVLKj+lcXO1KvZkrlw+ZirdwvOmnAnA/1PB4ggyXJ77LRkCqkff+ShQ+cqoxCxLQOh4cKITO5iA== @@ -9696,6 +10055,13 @@ lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.2, lru-cache@^4.1.3: pseudomap "^1.0.2" yallist "^3.0.2" +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + magic-string@^0.22.4: version "0.22.5" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e" @@ -9841,9 +10207,9 @@ mem@^4.0.0: p-is-promise "^1.1.0" memoize-one@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-4.0.3.tgz#cdfdd942853f1a1b4c71c5336b8c49da0bf0273c" - integrity sha512-QmpUu4KqDmX0plH4u+tf0riMc1KHE1+lw95cMrLlXQAFOx/xnBtwhZ52XJxd9X2O6kwKBqX32kmhbhlobD0cuw== + version "4.1.0" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-4.1.0.tgz#a2387c58c03fff27ca390c31b764a79addf3f906" + integrity sha512-2GApq0yI/b22J2j9rhbrAlsHb0Qcz+7yWxeLG8h+95sl1XPUgeLimQSOdur4Vw7cUhrBHwaUZxWFZueojqNRzA== memory-fs@^0.4.0, memory-fs@~0.4.1: version "0.4.1" @@ -10072,9 +10438,9 @@ minipass@^2.2.1, minipass@^2.3.4, minipass@^2.3.5: yallist "^3.0.0" minizlib@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.1.tgz#6734acc045a46e61d596a43bb9d9cd326e19cc42" - integrity sha512-TrfjCjk4jLhcJyGMYymBH6oTXcWjYbUAXTHDbtnWHjZC25h0cdajHuPE1zxb4DVmu8crfh+HwH/WMuyLG0nHBg== + version "1.2.1" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" + integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== dependencies: minipass "^2.2.1" @@ -10138,11 +10504,16 @@ modify-values@^1.0.0: resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== -moment@2.x.x, moment@^2.18.1, moment@^2.22.1: +moment@2.x.x: version "2.22.2" resolved "https://registry.yarnpkg.com/moment/-/moment-2.22.2.tgz#3c257f9839fc0e93ff53149632239eb90783ff66" integrity sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y= +moment@^2.18.1, moment@^2.22.1, moment@^2.23.0: + version "2.23.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.23.0.tgz#759ea491ac97d54bac5ad776996e2a58cc1bc225" + integrity sha512-3IE39bHVqFbWWaPOMHZF98Q9c3LDKGTmypMiTM2QygGXXElkFWIH7GxfmlwmY2vwa+wmNsoYZmG2iusf1ZjJoA== + moo@^0.4.3: version "0.4.3" resolved "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e" @@ -10232,16 +10603,26 @@ mute-stream@0.0.6: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" integrity sha1-SJYrGeFp/R38JAs/HnMXYnu8R9s= -mute-stream@0.0.7, mute-stream@~0.0.4: +mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= -nan@2.11.1, nan@^2.10.0, nan@^2.11.0, nan@^2.9.2: +mute-stream@~0.0.4: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nan@2.11.1, nan@^2.11.0: version "2.11.1" resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" integrity sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA== +nan@^2.10.0, nan@^2.9.2: + version "2.12.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" + integrity sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -10284,12 +10665,12 @@ ncp@1.0.x: integrity sha1-0VNn5cuHQyuhF9K/gP30Wuz7QkY= nearley@^2.7.10: - version "2.15.1" - resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.15.1.tgz#965e4e6ec9ed6b80fc81453e161efbcebb36d247" - integrity sha512-8IUY/rUrKz2mIynUGh8k+tul1awMKEjeHHC5G3FHvvyAW6oq4mQfNp2c0BMea+sYZJvYcrrM6GmZVIle/GRXGw== + version "2.16.0" + resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.16.0.tgz#77c297d041941d268290ec84b739d0ee297e83a7" + integrity sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg== dependencies: + commander "^2.19.0" moo "^0.4.3" - nomnom "~1.6.2" railroad-diagrams "^1.0.0" randexp "0.4.6" semver "^5.4.1" @@ -10503,9 +10884,9 @@ node-releases@^1.0.0-alpha.11: semver "^5.3.0" node-sass@^4.5.3: - version "4.10.0" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.10.0.tgz#dcc2b364c0913630945ccbf7a2bbf1f926effca4" - integrity sha512-fDQJfXszw6vek63Fe/ldkYXmRYK/QS6NbvM3i5oEo9ntPDy4XX7BcKZyTKv+/kSSxRtXXc7l+MSwEmYc0CSy6Q== + version "4.11.0" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.11.0.tgz#183faec398e9cbe93ba43362e2768ca988a6369a" + integrity sha512-bHUdHTphgQJZaF1LASx0kAviPH7sGlcyNhWade4eVIpFp6tsn7SV8xNMTbsQFpEV9VXpnwTTnNYlfsZXgGgmkA== dependencies: async-foreach "^0.1.3" chalk "^1.1.1" @@ -10537,14 +10918,6 @@ nodesecurity-npm-utils@^5.0.0: resolved "https://registry.yarnpkg.com/nodesecurity-npm-utils/-/nodesecurity-npm-utils-5.0.0.tgz#05aa30de30ca8c845c4048e94fd78e5e08b55ed9" integrity sha1-Baow3jDKjIRcQEjpT9eOXgi1Xtk= -nomnom@~1.6.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.6.2.tgz#84a66a260174408fc5b77a18f888eccc44fb6971" - integrity sha1-hKZqJgF0QI/Ft3oY+IjszET7aXE= - dependencies: - colors "0.5.x" - underscore "~1.4.4" - "nopt@2 || 3": version "3.0.6" resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" @@ -10607,7 +10980,7 @@ npm-bundled@^1.0.1: resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" integrity sha512-m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g== -npm-lifecycle@^2.0.0: +npm-lifecycle@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-2.1.0.tgz#1eda2eedb82db929e3a0c50341ab0aad140ed569" integrity sha512-QbBfLlGBKsktwBZLj6AviHC6Q9Y3R/AY4a2PYSIRhSKSS0/CxRyD/PfxEX6tPeOCXQgMSNdwGeECacstgptc+g== @@ -10621,7 +10994,12 @@ npm-lifecycle@^2.0.0: umask "^1.1.0" which "^1.3.1" -"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0: +npm-logical-tree@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/npm-logical-tree/-/npm-logical-tree-1.2.1.tgz#44610141ca24664cad35d1e607176193fd8f5b88" + integrity sha512-AJI/qxDB2PWI4LG1CYN579AY1vCiNyWfkiquCsJWqntRu/WwimVrC8yXeILBFHDwxfOejxewlmnvW9XXjMlYIg== + +"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", "npm-package-arg@^5.1.2 || 6", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1" integrity sha512-zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA== @@ -10632,9 +11010,9 @@ npm-lifecycle@^2.0.0: validate-npm-package-name "^3.0.0" npm-packlist@^1.1.12, npm-packlist@^1.1.6: - version "1.1.12" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" - integrity sha512-WJKFOVMeAlsU/pjXuqVdzU0WfgtIBCupkEVwn+1Y0ERAbUfWw8R4GjgVbaKnUjRoD2FoQbHOCbOyT5Mbs9Lw4g== + version "1.2.0" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f" + integrity sha512-7Mni4Z8Xkx0/oegoqlcao/JpPCPEMtUvsmB0q7mgvlMinykJLSRTYuFqoQLYgGY8biuxIeiHO+QNJKbCfljewQ== dependencies: ignore-walk "^3.0.1" npm-bundled "^1.0.1" @@ -10655,6 +11033,15 @@ npm-pick-manifest@^2.2.3: npm-package-arg "^6.0.0" semver "^5.4.1" +npm-profile@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-4.0.1.tgz#d350f7a5e6b60691c7168fbb8392c3603583f5aa" + integrity sha512-NQ1I/1Q7YRtHZXkcuU1/IyHeLy6pd+ScKg4+DQHdfsm769TGq6HPrkbuNJVJS4zwE+0mvvmeULzQdWn2L2EsVA== + dependencies: + aproba "^1.1.2 || 2" + figgy-pudding "^3.4.1" + npm-registry-fetch "^3.8.0" + npm-registry-fetch@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-3.8.0.tgz#aa7d9a7c92aff94f48dba0984bdef4bd131c88cc" @@ -10799,13 +11186,23 @@ object.defaults@^1.1.0: isobject "^3.0.0" object.entries@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" - integrity sha1-G/mk3SKI9bM/Opk9JXZh8F0WGl8= + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" + integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" + +object.fromentries@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab" + integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA== dependencies: define-properties "^1.1.2" - es-abstract "^1.6.1" - function-bind "^1.1.0" + es-abstract "^1.11.0" + function-bind "^1.1.1" has "^1.0.1" object.getownpropertydescriptors@^2.0.3: @@ -10840,14 +11237,14 @@ object.pick@^1.2.0, object.pick@^1.3.0: isobject "^3.0.1" object.values@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" - integrity sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo= + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" + integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== dependencies: - define-properties "^1.1.2" - es-abstract "^1.6.1" - function-bind "^1.1.0" - has "^1.0.1" + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" objection@^1.2.3, objection@^1.3.0: version "1.4.0" @@ -10921,7 +11318,7 @@ opn@5.4.0, opn@^5.1.0: dependencies: is-wsl "^1.1.0" -optimism@^0.6.6: +optimism@^0.6.6, optimism@^0.6.8: version "0.6.8" resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.6.8.tgz#0780b546da8cd0a72e5207e0c3706c990c8673a6" integrity sha512-bN5n1KCxSqwBDnmgDnzMtQTHdL+uea2HYFx1smvtE+w2AMl0Uy31g0aXnP/Nt85OINnMJPRpJyfRQLTCqn5Weg== @@ -11024,11 +11421,11 @@ os-locale@^2.0.0: mem "^1.1.0" os-locale@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.0.1.tgz#3b014fbf01d87f60a1e5348d80fe870dc82c4620" - integrity sha512-7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw== + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== dependencies: - execa "^0.10.0" + execa "^1.0.0" lcid "^2.0.0" mem "^4.0.0" @@ -11082,9 +11479,9 @@ p-limit@^1.0.0, p-limit@^1.1.0: p-try "^1.0.0" p-limit@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.0.0.tgz#e624ed54ee8c460a778b3c9f3670496ff8a57aec" - integrity sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A== + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68" + integrity sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g== dependencies: p-try "^2.0.0" @@ -11146,17 +11543,17 @@ packet-reader@0.3.1: resolved "https://registry.yarnpkg.com/packet-reader/-/packet-reader-0.3.1.tgz#cd62e60af8d7fea8a705ec4ff990871c46871f27" integrity sha1-zWLmCvjX/qinBexP+ZCHHEaHHyc= -pacote@^9.1.0: - version "9.2.3" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.2.3.tgz#48cfe87beb9177acd6594355a584a538835424b3" - integrity sha512-Y3+yY3nBRAxMlZWvr62XLJxOwCmG9UmkGZkFurWHoCjqF0cZL72cTOCRJTvWw8T4OhJS2RTg13x4oYYriauvEw== +pacote@^9.2.3: + version "9.3.0" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.3.0.tgz#ec0d21b739a625d81a19ae546386fedee3300bc1" + integrity sha512-uy5xghB5wUtmFS+uNhQGhlsIF9rfsfxw6Zsu2VpmSz4/f+8D2+5V1HwjHdSn7W6aQTrxNNmmoUF5qNE10/EVdA== dependencies: - bluebird "^3.5.2" - cacache "^11.2.0" + bluebird "^3.5.3" + cacache "^11.3.2" figgy-pudding "^3.5.1" get-stream "^4.1.0" glob "^7.1.3" - lru-cache "^4.1.3" + lru-cache "^5.1.1" make-fetch-happen "^4.0.1" minimatch "^3.0.4" minipass "^2.3.5" @@ -11175,7 +11572,7 @@ pacote@^9.1.0: safe-buffer "^5.1.2" semver "^5.6.0" ssri "^6.0.1" - tar "^4.4.6" + tar "^4.4.8" unique-filename "^1.1.1" which "^1.3.1" @@ -11187,9 +11584,9 @@ pad-right@^0.2.2: repeat-string "^1.5.2" pako@~1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" - integrity sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg== + version "1.0.7" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.7.tgz#2473439021b57f1516c82f58be7275ad8ef1bb27" + integrity sha512-3HNK5tW4x8o5mO8RuHZp3Ydw9icZXx0RANAOMzlMzx7LVXhMJ4mo3MOBpzyd7r/+RUu8BmndP47LXT+vzjtWcQ== parallel-transform@^1.1.0: version "1.1.0" @@ -11322,10 +11719,10 @@ passport-strategy@1.x.x: resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4" integrity sha1-tVOaqPwiWj0a0XlHbd8ja0QPUuQ= -passport@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/passport/-/passport-0.3.2.tgz#9dd009f915e8fe095b0124a01b8f82da07510102" - integrity sha1-ndAJ+RXo/glbASSgG4+C2gdRAQI= +passport@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/passport/-/passport-0.4.0.tgz#c5095691347bd5ad3b5e180238c3914d16f05811" + integrity sha1-xQlWkTR71a07XhgCOMORTRbwWBE= dependencies: passport-strategy "1.x.x" pause "0.0.1" @@ -11469,10 +11866,10 @@ pg-ipc@^1.0.4: resolved "https://registry.yarnpkg.com/pg-ipc/-/pg-ipc-1.0.4.tgz#e018f5aae417ded8a917878e33c1fe911bcce45f" integrity sha1-4Bj1quQX3tipF4eOM8H+kRvM5F8= -pg-pool@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-2.0.4.tgz#05ad0f2d9437d89c94ccc4f4d0a44ac65ade865b" - integrity sha512-Mi2AsmlFkVMpI28NreaDkz5DkfxLOG16C/HNwi091LDlOiDiQACtAroLxSd1vIS2imBqxdjjO9cQZg2CwsOPbw== +pg-pool@^2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-2.0.6.tgz#7b561a482feb0a0e599b58b5137fd2db3ad8111c" + integrity sha512-hod2zYQxM8Gt482q+qONGTYcg/qVcV32VHVPtktbBJs0us3Dj7xibISw0BAAXVMCzt8A/jhfJvpZaxUlqtqs0g== pg-types@~1.12.1: version "1.12.1" @@ -11484,15 +11881,15 @@ pg-types@~1.12.1: postgres-date "~1.0.0" postgres-interval "^1.1.0" -pg@^7.4.1: - version "7.6.1" - resolved "https://registry.yarnpkg.com/pg/-/pg-7.6.1.tgz#42c68aed37bf38b813616e3d21f4338f350c1b79" - integrity sha512-rAItIkYrRaNGinZN/Hs8F9R5mQjQSPlnzxPF+eCimSl92qnuNGR42gkpOQKP1bnvTwkSjRTBL+VNC5EcFhtCuQ== +pg@^7.4.1, pg@^7.7.1: + version "7.7.1" + resolved "https://registry.yarnpkg.com/pg/-/pg-7.7.1.tgz#546b192ff484322b69689391f885de3ba91a30d4" + integrity sha512-p3I0mXOmUvCoVlCMFW6iYSrnguPol6q8He15NGgSIdM3sPGjFc+8JGCeKclw8ZR4ETd+Jxy2KNiaPUcocHZeMw== dependencies: buffer-writer "2.0.0" packet-reader "0.3.1" pg-connection-string "0.1.3" - pg-pool "~2.0.3" + pg-pool "^2.0.4" pg-types "~1.12.1" pgpass "1.x" semver "4.3.2" @@ -11997,9 +12394,9 @@ preserve@^0.2.0: integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= prettier@^1.8.2: - version "1.15.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.2.tgz#d31abe22afa4351efa14c7f8b94b58bb7452205e" - integrity sha512-YgPLFFA0CdKL4Eg2IHtUSjzj/BWgszDHiNQAe0VAIBse34148whfdzLagRL+QiKS+YfK5ftB6X4v/MBw8yCoug== + version "1.15.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" + integrity sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg== pretty-format@^21.2.1: version "21.2.1" @@ -12172,9 +12569,9 @@ prosemirror-keymap@^1.0.0: w3c-keyname "^1.1.8" prosemirror-model@^1.0.0, prosemirror-model@^1.1.0: - version "1.6.3" - resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.6.3.tgz#9a416f907f5f650dfd6062643ce014bf0d0e8931" - integrity sha512-iqIml664X9MUVGLz2nzK4xfAofX8+o7gs2mi2/k+pVD0qZ7th1Jm5eG3AsqWoEUIZuWeaOWCKpBl/dPnhIIWew== + version "1.6.4" + resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.6.4.tgz#2ac37a629448a7dbfd1635450e2fdd63c3450d7d" + integrity sha512-C2ALle8fZsAza+6stUF9Gv28jH9XtpNeczb33bowGlnb2cpNI4FZf1HHUyZjf6ou4cEvOlbt6fAYsT4NCKmlcQ== dependencies: orderedmap "^1.0.0" @@ -12219,7 +12616,16 @@ prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0: dependencies: prosemirror-model "^1.0.0" -prosemirror-view@^1.0.0, prosemirror-view@^1.1.0: +prosemirror-view@^1.0.0: + version "1.6.8" + resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.6.8.tgz#33fc1a6e2731633e5d6dc1af1967378f15810b74" + integrity sha512-YWX3rfji77xsU5EErt4ZoecVytYW9/4oHBYhV1MUHGMYIcppe+QZEBgRlyPMBUuu0lxdZX4m3sq7fCsDvv/MlQ== + dependencies: + prosemirror-model "^1.1.0" + prosemirror-state "^1.0.0" + prosemirror-transform "^1.1.0" + +prosemirror-view@^1.1.0: version "1.6.7" resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.6.7.tgz#c89f078c7880d44cf5c193e8b1bd289da226fbd9" integrity sha512-M+6HPb6DSe731E3y2wKDlzojhBevIi911650O3ivSucOIcMw0/5M0hLEfN9/1D0RILuiHUjvCvbpTZTnfzBXeg== @@ -12265,7 +12671,12 @@ pseudomap@^1.0.2: resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= -psl@^1.1.24, psl@^1.1.28: +psl@^1.1.24: + version "1.1.31" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" + integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw== + +psl@^1.1.28: version "1.1.29" resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" integrity sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ== @@ -12462,10 +12873,10 @@ rc@^1.1.2, rc@^1.2.7: minimist "^1.2.0" strip-json-comments "~2.0.1" -react-apollo@^2.1.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/react-apollo/-/react-apollo-2.3.1.tgz#f3687062f438b9b40e525d7e1ac2bcf0101b4495" - integrity sha512-xPteQmCzMJT8wE4v0zq38E6JWLhrNcJENl66fP117lwzU2lZA+qoUDcizqKl0z2OY5b+KklmqnPPD+wcWAdy7w== +react-apollo@^2.1.0, react-apollo@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/react-apollo/-/react-apollo-2.3.3.tgz#a4609f3112d4351a1e363090d8cd363b04e2cc91" + integrity sha512-y4CwwmJjp0De/An7vrvEWOJ27lxmS/SXT8z22I8aOEBC2wzdcavDPjKzeLYJKs+hv1MGS3h84PSwFtlU4Em/bA== dependencies: fbjs "^1.0.0" hoist-non-react-statics "^3.0.0" @@ -12528,11 +12939,11 @@ react-dev-utils@^6.0.5: text-table "0.2.0" react-dnd-test-backend@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/react-dnd-test-backend/-/react-dnd-test-backend-7.0.0.tgz#5dc0b90278cfc4000fea6a50de579010dcebec18" - integrity sha512-OfGTw/+Gmz5DiDMzqhENrkXZ7iggCqyB46iI8BD/8EEjG2a9bzS/+i9ip8g6BFXX9DgaxT8l7U4PLeZouRcMgw== + version "7.0.2" + resolved "https://registry.yarnpkg.com/react-dnd-test-backend/-/react-dnd-test-backend-7.0.2.tgz#b92171d1dc643ea1b19c867ceacaf7d2765c3d21" + integrity sha512-M5CuMEoaJecQNsvWKdzsWxtEsuCrI1w/JqU8/xbTKU0+/9p2xayzkb19m3MBalaCJtuRjmWLWl3bVfoF3efdXg== dependencies: - dnd-core "^7.0.0" + dnd-core "^7.0.2" lodash "^4.17.11" react-dnd@^2.5.4: @@ -12573,14 +12984,14 @@ react-docgen@3.0.0-rc.2: recast "^0.16.0" react-dom@^16.2.0: - version "16.6.3" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.6.3.tgz#8fa7ba6883c85211b8da2d0efeffc9d3825cccc0" - integrity sha512-8ugJWRCWLGXy+7PmNh8WJz3g1TaTUt1XyoIcFN+x0Zbkoz+KKdUyx1AQLYJdbFXjuF41Nmjn5+j//rxvhFjgSQ== + version "16.7.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.7.0.tgz#a17b2a7ca89ee7390bc1ed5eb81783c7461748b8" + integrity sha512-D0Ufv1ExCAmF38P2Uh1lwpminZFRXEINJe53zRAbm4KPwSyd6DY/uDoS0Blj9jvPpn1+wivKpZYc8aAAN/nAkg== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.11.2" + scheduler "^0.12.0" react-dom@^16.4.2: version "16.5.0" @@ -12612,15 +13023,15 @@ react-error-overlay@^5.1.0: resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-5.1.0.tgz#c516995a5652e7bfbed8b497910d5280df74a7e8" integrity sha512-akMy/BQT5m1J3iJIHkSb4qycq2wzllWsmmolaaFVnb+LPV9cIJ/nTud40ZsiiT0H3P+/wXIdbjx2fzF61OaeOQ== -react-fast-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-1.0.0.tgz#813a039155e49b43ceffe99528fe5e9d97a6c938" - integrity sha512-dcQpdWr62flXQJuM8/bVEY5/10ad2SYBUafp8H4q4WHR3fTA/MMlp8mpzX12I0CCoEJc1P6QdiMg7U+7lFS6Rw== +react-fast-compare@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" + integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw== react-feather@^1.0.8: - version "1.1.4" - resolved "https://registry.yarnpkg.com/react-feather/-/react-feather-1.1.4.tgz#d0143da95f9d52843cf13a553091573a7c617897" - integrity sha512-Odke3WUl00+a2scGQKlep4m+qDESl/x+PsTRB3v6fAV/2dteF4EaRjqhX8h7HM3mU3V3v0xGTv8Z5S26bpQ5PQ== + version "1.1.5" + resolved "https://registry.yarnpkg.com/react-feather/-/react-feather-1.1.5.tgz#f7f9384c17d2d061b5b8298f46efc0e497f48469" + integrity sha512-hAPWatSFnhTNp9Ub96B7LMgOnWzXonA/LxqC2ANfUuc57jJocuWyO96yow2flUUDpitodh9mf6iOZzkyGYmAng== react-group@^1.0.6: version "1.0.6" @@ -12655,17 +13066,17 @@ react-input-autosize@^2.1.2: dependencies: prop-types "^15.5.8" -react-is@^16.3.1, react-is@^16.6.0, react-is@^16.6.1, react-is@^16.6.3: +react-is@^16.3.1: version "16.6.3" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.6.3.tgz#d2d7462fcfcbe6ec0da56ad69047e47e56e7eac0" integrity sha512-u7FDWtthB4rWibG/+mFbVd5FvdI20yde86qKGx4lVUTWmPlSWQ4QxbBIrrs+HnXGbxOUlUzTAP/VDmvCwaP2yA== -react-is@^16.3.2: - version "16.4.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.4.0.tgz#cc9fdc855ac34d2e7d9d2eb7059bbc240d35ffcf" - integrity sha512-8ADZg/mBw+t2Fbr5Hm1K64v8q8Q6E+DprV5wQ5A8PSLW6XP0XJFMdUskVEW8efQ5oUgWHn8EYdHEPAMF0Co6hA== +react-is@^16.3.2, react-is@^16.6.0, react-is@^16.6.1, react-is@^16.7.0: + version "16.7.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.7.0.tgz#c1bd21c64f1f1364c6f70695ec02d69392f41bfa" + integrity sha512-Z0VRQdF4NPDoI0tsXVMLkJLiwEBa+RP66g0xDHxgxysxSoCUccSten4RTF/UFvZF1dZvZ9Zu1sx+MDXwcOR34g== -react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.4: +react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== @@ -12824,19 +13235,19 @@ react-styleguidist@^8.0.6: webpack-merge "^4.1.4" react-tag-autocomplete@^5.5.0: - version "5.5.1" - resolved "https://registry.yarnpkg.com/react-tag-autocomplete/-/react-tag-autocomplete-5.5.1.tgz#6b3f253d3d69eb546925118cdf43138a9aafe113" - integrity sha512-/x6izH2OUySduXfJ9pgb3B2IirkE8w9+JEC1TF4QyPvyLTQ2tDFf4hlvTmK7iGEo+ll7oRZbtEHScLDI5YvvEQ== + version "5.8.0" + resolved "https://registry.yarnpkg.com/react-tag-autocomplete/-/react-tag-autocomplete-5.8.0.tgz#af7ffea38915d3312976b01fc4b34b6c7d5159f7" + integrity sha512-1svOlZ6oQWH9ekGxd8sQgwvEg4lpwarcyH0rluWQ290xQ/nY8PNeIvF6VSZwWpTv+1zCkfjzqyO95TnXcwp+YQ== react-test-renderer@^16.0.0-0, react-test-renderer@^16.5.2: - version "16.6.3" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.6.3.tgz#5f3a1a7d5c3379d46f7052b848b4b72e47c89f38" - integrity sha512-B5bCer+qymrQz/wN03lT0LppbZUDRq6AMfzMKrovzkGzfO81a9T+PWQW6MzkWknbwODQH/qpJno/yFQLX5IWrQ== + version "16.7.0" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.7.0.tgz#1ca96c2b450ab47c36ba92cd8c03fcefc52ea01c" + integrity sha512-tFbhSjknSQ6+ttzmuGdv+SjQfmvGcq3PFKyPItohwhhOBmRoTf1We3Mlt3rJtIn85mjPXOkKV+TaKK4irvk9Yg== dependencies: object-assign "^4.1.1" prop-types "^15.6.2" - react-is "^16.6.3" - scheduler "^0.11.2" + react-is "^16.7.0" + scheduler "^0.12.0" react-transition-group@^2.0.0, react-transition-group@^2.2.0: version "2.5.0" @@ -12848,7 +13259,17 @@ react-transition-group@^2.0.0, react-transition-group@^2.2.0: prop-types "^15.6.2" react-lifecycles-compat "^3.0.4" -react@^16.2.0, react@^16.4.2: +react@^16.2.0: + version "16.7.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.7.0.tgz#b674ec396b0a5715873b350446f7ea0802ab6381" + integrity sha512-StCz3QY8lxTb5cl2HJxjwLFOXPIFQp+p+hxQfc8WE0QiLfCtIlKj8/+5tjjKm8uSTlAW+fCPaavGFS06V9Ar3A== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + scheduler "^0.12.0" + +react@^16.4.2: version "16.6.3" resolved "https://registry.yarnpkg.com/react/-/react-16.6.3.tgz#25d77c91911d6bbdd23db41e70fb094cc1e0871c" integrity sha512-zCvmH2vbEolgKxtqXL2wmGCUxUyNheYn/C+PD1YAjfxHC54+MhdruyhO7QieQrYsYeTxrn93PM2y0jRH1zEExw== @@ -12865,7 +13286,7 @@ read-cmd-shim@^1.0.1: dependencies: graceful-fs "^4.1.2" -"read-package-json@1 || 2", read-package-json@^2.0.0: +"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13: version "2.0.13" resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.13.tgz#2e82ebd9f613baa6d2ebe3aa72cefe3f68e41f4a" integrity sha512-/1dZ7TRZvGrYqE0UAfN6qQb5GYBsNcqS1C0tNK601CFOJmtHI7NIGXwetEPU/OtoFHZL3hDxm4rolFFVE9Bnmg== @@ -12978,9 +13399,9 @@ readable-stream@1.1.x: string_decoder "~0.10.x" readable-stream@^3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.0.6.tgz#351302e4c68b5abd6a2ed55376a7f9a25be3057a" - integrity sha512-9E1oLoOWfhSXHGv6QlwXJim7uNzd9EVlWK+21tCU9Ju/kR0/p2AZYPz4qSchgO8PlLIH4FpZYfzwS+rEksZjIg== + version "3.1.1" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.1.1.tgz#ed6bbc6c5ba58b090039ff18ce670515795aeb06" + integrity sha512-DkN66hPyqDhnIQ6Jcsvx9bFjhw214O4poMBcIMgPVpQvNy9a0e0Uhg5SqySyDKAmUlwt8LonTBz1ezOnM8pUdA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -13062,6 +13483,18 @@ recompose@^0.26.0: hoist-non-react-statics "^2.3.1" symbol-observable "^1.0.4" +recompose@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.30.0.tgz#82773641b3927e8c7d24a0d87d65aeeba18aabd0" + integrity sha512-ZTrzzUDa9AqUIhRk4KmVFihH0rapdCSMFXjhHbNrjAWxBuUD/guYlyysMnuHjlZC/KRiOKRtB4jf96yYSkKE8w== + dependencies: + "@babel/runtime" "^7.0.0" + change-emitter "^0.1.2" + fbjs "^0.8.1" + hoist-non-react-statics "^2.3.1" + react-lifecycles-compat "^3.0.2" + symbol-observable "^1.0.4" + recursive-readdir@2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" @@ -13101,7 +13534,7 @@ reduce-function-call@^1.0.1: dependencies: balanced-match "^0.4.2" -redux-form@^7.0.3: +redux-form@^7.0.3, redux-form@^7.4.2: version "7.4.2" resolved "https://registry.yarnpkg.com/redux-form/-/redux-form-7.4.2.tgz#d6061088fb682eb9fc5fb9749bd8b102f03154b0" integrity sha512-QxC36s4Lelx5Cr8dbpxqvl23dwYOydeAX8c6YPmgkz/Dhj053C16S2qoyZN6LO6HJ2oUF00rKsAyE94GwOUhFA== @@ -13184,6 +13617,11 @@ regenerator-runtime@^0.12.0: resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de" integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg== +regenerator-runtime@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.1.tgz#522ea2aafd9200a00eee143dc14219a35a0f3991" + integrity sha512-5KzMIyPLvfdPmvsdlYsHqITrDfK9k7bmvf97HvHSN4810i254ponbxCQ1NukpRWlu6en2MBWzAlhDExEKISwAA== + regenerator-transform@^0.10.0: version "0.10.1" resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" @@ -13536,7 +13974,7 @@ resolve@^1.1.6, resolve@^1.3.3, resolve@^1.5.0, resolve@^1.6.0: dependencies: path-parse "^1.0.5" -resolve@^1.1.7: +resolve@^1.1.7, resolve@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06" integrity sha512-TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ== @@ -13586,7 +14024,14 @@ right-pad@^1.0.1: resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" integrity sha1-jKCMLLtbVedNr6lr9/0aJ9VoyNA= -rimraf@2, rimraf@2.x.x, rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@~2.6.2: +rimraf@2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@2.x.x, rimraf@^2.2.8, rimraf@^2.5.2, rimraf@~2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== @@ -13746,9 +14191,17 @@ schedule@^0.3.0: object-assign "^4.1.1" scheduler@^0.11.2: - version "0.11.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.11.2.tgz#a8db5399d06eba5abac51b705b7151d2319d33d3" - integrity sha512-+WCP3s3wOaW4S7C1tl3TEXp4l9lJn0ZK8G3W3WKRWmw77Z2cIFUW2MiNTMHn5sCjxN+t7N43HAOOgMjyAg5hlg== + version "0.11.3" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.11.3.tgz#b5769b90cf8b1464f3f3cfcafe8e3cd7555a2d6b" + integrity sha512-i9X9VRRVZDd3xZw10NY5Z2cVMbdYg6gqFecfj79USv1CFN+YrJ3gIPRKf1qlY+Sxly4djoKdfx1T+m9dnRB8kQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +scheduler@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.12.0.tgz#8ab17699939c0aedc5a196a657743c496538647b" + integrity sha512-t7MBR28Akcp4Jm+QoR63XgAi9YgCUmgvDHqf5otgAj4QvdoBE4ImCX0ffehefePPG+aitiYHp0g/mW6s4Tp+dw== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -13797,7 +14250,7 @@ selfsigned@^1.9.1: dependencies: node-forge "0.7.5" -"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== @@ -13842,9 +14295,9 @@ send@0.16.2: statuses "~1.4.0" serialize-javascript@^1.4.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe" - integrity sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ== + version "1.6.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.6.1.tgz#4d1f697ec49429a847ca6f442a2a755126c4d879" + integrity sha512-A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw== serve-index@^1.7.2: version "1.9.1" @@ -14160,9 +14613,9 @@ spawn-sync@^1.0.15: os-shim "^0.1.2" spdx-correct@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" - integrity sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ== + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" @@ -14181,9 +14634,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" - integrity sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg== + version "3.0.3" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" + integrity sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g== spdy-transport@^3.0.0: version "3.0.0" @@ -14240,9 +14693,9 @@ sprintf-js@~1.0.2: integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= sshpk@^1.7.0: - version "1.15.2" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.15.2.tgz#c946d6bd9b1a39d0e8635763f5242d6ed6dcb629" - integrity sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA== + version "1.16.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.0.tgz#1d4963a2fbffe58050aa9084ca20be81741c07de" + integrity sha512-Zhev35/y7hRMcID/upReIvRse+I9SVhyVre/KTJSJQWMz3C3+G+HpO7m1wK/yckEtujKZ7dS4hkVxAnmHaIGVQ== dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -14426,10 +14879,10 @@ string.prototype.trim@^1.1.2: es-abstract "^1.5.0" function-bind "^1.0.2" -string_decoder@^1.0.0, string_decoder@^1.1.1, string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" + integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== dependencies: safe-buffer "~5.1.0" @@ -14438,6 +14891,13 @@ string_decoder@~0.10.x: resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + stringify-entities@^1.0.1: version "1.3.2" resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.2.tgz#a98417e5471fd227b3e45d3db1861c11caf668f7" @@ -14457,6 +14917,11 @@ stringify-object@^3.2.0: is-obj "^1.0.1" is-regexp "^1.0.0" +stringify-package@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.0.tgz#e02828089333d7d45cd8c287c30aa9a13375081b" + integrity sha512-JIQqiWmLiEozOC0b0BtxZ/AOUtdUZHCBPgqIZ2kSJJqGwgb9neo44XdTHUC4HZSGqi03hOeB7W/E8rAlKnGe9g== + strip-ansi@4.0.0, strip-ansi@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" @@ -14471,6 +14936,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" +strip-ansi@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz#f78f68b5d0866c20b2c9b8c61b5298508dc8756f" + integrity sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow== + dependencies: + ansi-regex "^4.0.0" + strip-bom@3.0.0, strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -14511,11 +14983,10 @@ striptags@^3.1.0: integrity sha1-yMPn/db7S7OjKjt1LltePjgJPr0= strong-log-transformer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.0.0.tgz#fa6d8e0a9e62b3c168c3cad5ae5d00dc97ba26cc" - integrity sha512-FQmNqAXJgOX8ygOcvPLlGWBNT41mvNJ9ALoYf0GTwVt9t30mGTqpmp/oJx5gLcu52DXK10kS7dVWhx8aPXDTlg== + version "2.1.0" + resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10" + integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA== dependencies: - byline "^5.0.0" duplexer "^0.1.1" minimist "^1.2.0" through "^2.3.4" @@ -14556,12 +15027,13 @@ styled-components@^3.2.5: stylis-rule-sheet "^0.0.10" supports-color "^3.2.3" -styled-components@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-4.1.1.tgz#943922048fae556e286bcbfdd29da4f1399446bc" - integrity sha512-UzT/qyoOyKpYooeLdwKrPHZ85R8KWl8i0fbyH9I3z6B2WT9uGDCV7J4kbfKsBeSWFD9EytBriEODOkybcUFD/Q== +styled-components@^4.1.1, styled-components@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-4.1.3.tgz#4472447208e618b57e84deaaeb6acd34a5e0fe9b" + integrity sha512-0quV4KnSfvq5iMtT0RzpMGl/Dg3XIxIxOl9eJpiqiq4SrAmR1l1DLzNpMzoy3DyzdXVDMJS2HzROnXscWA3SEw== dependencies: - "@emotion/is-prop-valid" "^0.6.8" + "@babel/helper-module-imports" "^7.0.0" + "@emotion/is-prop-valid" "^0.7.3" "@emotion/unitless" "^0.7.0" babel-plugin-styled-components ">= 1" css-to-react-native "^2.2.2" @@ -14839,7 +15311,7 @@ tar@^2.0.0: fstream "^1.0.2" inherits "2" -tar@^4, tar@^4.4.6: +tar@^4, tar@^4.4.8: version "4.4.8" resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== @@ -14883,9 +15355,9 @@ temp@^0.8.3: rimraf "~2.2.6" terser-webpack-plugin@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz#cf7c25a1eee25bf121f4a587bb9e004e3f80e528" - integrity sha512-61lV0DSxMAZ8AyZG7/A4a3UPlrbOBo8NIQ4tJzLPAdGOQ+yoNC7l5ijEow27lBAL2humer01KLS6bGIMYQxKoA== + version "1.2.1" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.1.tgz#7545da9ae5f4f9ae6a0ac961eb46f5e7c845cc26" + integrity sha512-GGSt+gbT0oKcMDmPx4SRSfJPE1XaN3kQRWG4ghxKQw9cn5G9x6aCKSsgYdvyM0na9NJ4Drv0RG6jbBByZ5CMjw== dependencies: cacache "^11.0.2" find-cache-dir "^2.0.0" @@ -14897,9 +15369,9 @@ terser-webpack-plugin@^1.1.0: worker-farm "^1.5.2" terser@^3.8.1: - version "3.10.12" - resolved "https://registry.yarnpkg.com/terser/-/terser-3.10.12.tgz#06d40765e40b33fd97977c0896c75b2b5d42142d" - integrity sha512-3ODPC1eVt25EVNb04s/PkHxOmzKBQUF6bwwuR6h2DbEF8/j265Y1UkwNtOk9am/pRxfJ5HPapOlUlO6c16mKQQ== + version "3.14.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-3.14.1.tgz#cc4764014af570bc79c79742358bd46926018a32" + integrity sha512-NSo3E99QDbYSMeJaEk9YW2lTg3qS9V0aKGlb+PlOrei1X02r1wSBHCNX/O+yeTRFSWPKPIGj6MqvvdqV4rnVGw== dependencies: commander "~2.17.1" source-map "~0.6.1" @@ -14967,6 +15439,11 @@ timers-browserify@^2.0.4: dependencies: setimmediate "^1.0.4" +tiny-warning@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.2.tgz#1dfae771ee1a04396bdfde27a3adcebc6b648b28" + integrity sha512-rru86D9CpQRLvsFG5XFdy0KdLAvjdQDyZCsRcuu60WtzFylDM3eAWSxEVz5kzL2Gp544XiUvPbVKtOA/txLi9Q== + tmp@^0.0.29: version "0.0.29" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" @@ -15297,11 +15774,6 @@ uncontrollable@^5.0.0: dependencies: invariant "^2.2.4" -underscore@~1.4.4: - version "1.4.4" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.4.4.tgz#61a6a32010622afa07963bf325203cf12239d604" - integrity sha1-YaajIBBiKvoHljvzJSA88SI51gQ= - unherit@^1.0.4: version "1.1.1" resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.1.tgz#132748da3e88eab767e08fabfbb89c5e9d28628c" @@ -15562,12 +16034,7 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= -uuid@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" - integrity sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g== - -uuid@^3.0.1, uuid@^3.1.0, uuid@^3.2.1, uuid@^3.3.2: +uuid@3.3.2, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.2.1, uuid@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== @@ -15895,9 +16362,9 @@ webpack@^3.8.1: yargs "^8.0.2" webpack@^4.16.0, webpack@^4.26.1: - version "4.26.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.26.1.tgz#ff3a9283d363c07b3494dfa702d08f4f2ef6cb39" - integrity sha512-i2oOvEvuvLLSuSCkdVrknaxAhtUZ9g+nLSoHCWV0gDzqGX2DXaCrMmMUpbRsTSSLrUqAI56PoEiyMUZIZ1msug== + version "4.28.4" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.28.4.tgz#1ddae6c89887d7efb752adf0c3cd32b9b07eacd0" + integrity sha512-NxjD61WsK/a3JIdwWjtIpimmvE6UrRi3yG54/74Hk9rwNj5FPkA4DJCf1z4ByDWLkvZhTZE+P3C/eh6UD5lDcw== dependencies: "@webassemblyjs/ast" "1.7.11" "@webassemblyjs/helper-module-context" "1.7.11" @@ -16197,6 +16664,11 @@ y18n@^3.2.1: resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + yallist@^3.0.0, yallist@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" @@ -16340,10 +16812,10 @@ yargs@~3.10.0: decamelize "^1.0.0" window-size "0.1.0" -zen-observable-ts@^0.8.11: - version "0.8.11" - resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.11.tgz#d54a27cd17dc4b4bb6bd008e5c096af7fcb068a9" - integrity sha512-8bs7rgGV4kz5iTb9isudkuQjtWwPnQ8lXq6/T76vrepYZVMsDEv6BXaEA+DHdJSK3KVLduagi9jSpSAJ5NgKHw== +zen-observable-ts@^0.8.11, zen-observable-ts@^0.8.13: + version "0.8.13" + resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.13.tgz#ae1fd77c84ef95510188b1f8bca579d7a5448fc2" + integrity sha512-WDb8SM0tHCb6c0l1k60qXWlm1ok3zN9U4VkLdnBKQwIYwUoB9psH7LIFgR+JVCCMmBxUgOjskIid8/N02k/2Bg== dependencies: zen-observable "^0.8.0"