From 104e4b20182c96d6255bbf872969acf4f8d75ab1 Mon Sep 17 00:00:00 2001 From: Sara Cope Date: Wed, 3 Aug 2022 14:26:20 -0400 Subject: [PATCH] v7.61.0 (#2028) --- CHANGELOG.md | 14 ++ docs/apps.md | 2 - docs/ci.md | 10 +- docs/git.md | 4 +- docs/pipelines.md | 28 +-- docs/plugins.md | 34 +++- docs/reviewapps.md | 4 +- docs/update.md | 5 +- lerna.json | 2 +- packages/addons-v5/CHANGELOG.md | 8 + packages/addons-v5/package.json | 2 +- packages/apps-v5/CHANGELOG.md | 11 ++ packages/apps-v5/README.md | 4 +- packages/apps-v5/package.json | 2 +- packages/ci-v5/CHANGELOG.md | 8 + packages/ci-v5/package.json | 2 +- packages/ci/CHANGELOG.md | 8 + packages/ci/README.md | 12 +- packages/ci/package.json | 2 +- packages/cli/CHANGELOG.md | 14 ++ packages/cli/package.json | 16 +- packages/git/CHANGELOG.md | 16 ++ packages/git/README.md | 8 +- packages/git/package.json | 2 +- packages/pipelines/CHANGELOG.md | 8 + packages/pipelines/README.md | 34 ++-- packages/pipelines/package.json | 2 +- packages/redis-v5/CHANGELOG.md | 8 + packages/redis-v5/package.json | 2 +- yarn.lock | 300 ++++++++++++++++++++++++++------ 30 files changed, 439 insertions(+), 133 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52ccdcb8e4..d21c1d1bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + + +### Bug Fixes + +* upgrade @oclif/command from 1.5.18 to 1.8.0 ([#1890](https://github.com/heroku/cli/issues/1890)) ([297531c](https://github.com/heroku/cli/commit/297531cabc2474ddb025f9b952d10bb5345cf11d)) +* upgrade @oclif/command from 1.8.0 to 1.8.16 ([#2026](https://github.com/heroku/cli/issues/2026)) ([cbfdb0c](https://github.com/heroku/cli/commit/cbfdb0c8303d6ed752681203b8f6491a55397b6c)) +* upgrade @oclif/plugin-plugins from 1.7.9 to 1.10.1 ([#1889](https://github.com/heroku/cli/issues/1889)) ([2a135cc](https://github.com/heroku/cli/commit/2a135cc931d714aa9d739b953d6ed056ce215ef2)) +* upgrade @oclif/plugin-update from 1.3.9 to 1.5.0 ([#1892](https://github.com/heroku/cli/issues/1892)) ([ad3c97c](https://github.com/heroku/cli/commit/ad3c97c0a7d16a14d8b50f3f2f3d4bf3a70a662b)) + + + + + ## [7.60.2](https://github.com/heroku/cli/compare/v7.60.1...v7.60.2) (2022-04-27) **Note:** Version bump only for package heroku diff --git a/docs/apps.md b/docs/apps.md index 8b10c2768a..e7aac624e4 100644 --- a/docs/apps.md +++ b/docs/apps.md @@ -73,7 +73,6 @@ OPTIONS --json output in json format --region=region specify region for the app to run in --space=space the private space to create the app in - --ssh-git use SSH git protocol for local git remote EXAMPLES $ heroku apps:create @@ -310,7 +309,6 @@ USAGE OPTIONS -a, --app=app (required) app to run command against -r, --remote=remote git remote of app to use - --ssh-git use ssh git protocol instead of https DESCRIPTION This will locally update the git remote if it is set to the old app. diff --git a/docs/ci.md b/docs/ci.md index 0a5555a5ee..1aa0dd2a07 100644 --- a/docs/ci.md +++ b/docs/ci.md @@ -36,7 +36,7 @@ EXAMPLE $ heroku ci --app murmuring-headland-14719 ``` -_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/index.ts)_ +_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/index.ts)_ ## `heroku ci:config` @@ -206,7 +206,7 @@ EXAMPLE $ heroku ci:info 1288 --app murmuring-headland-14719 ``` -_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/info.ts)_ +_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/info.ts)_ ## `heroku ci:last` @@ -227,7 +227,7 @@ EXAMPLE $ heroku ci:last --pipeline=my-pipeline --node 100 ``` -_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/last.ts)_ +_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/last.ts)_ ## `heroku ci:migrate-manifest` @@ -302,7 +302,7 @@ EXAMPLE $ heroku ci:rerun 985 --app murmuring-headland-14719 ``` -_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/rerun.ts)_ +_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/rerun.ts)_ ## `heroku ci:run` @@ -322,4 +322,4 @@ EXAMPLE $ heroku ci:run --app murmuring-headland-14719 ``` -_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/run.ts)_ +_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/run.ts)_ diff --git a/docs/git.md b/docs/git.md index 7e840cb59a..1f1eca6564 100644 --- a/docs/git.md +++ b/docs/git.md @@ -30,7 +30,7 @@ EXAMPLES ... ``` -_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.60.0/packages/git/src/commands/git/clone.ts)_ +_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.61.0/packages/git/src/commands/git/clone.ts)_ ## `heroku git:remote` @@ -59,4 +59,4 @@ EXAMPLES $ heroku git:remote --remote heroku-staging -a example ``` -_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.60.0/packages/git/src/commands/git/remote.ts)_ +_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.61.0/packages/git/src/commands/git/remote.ts)_ diff --git a/docs/pipelines.md b/docs/pipelines.md index c0e71f4dee..2dbe7648c8 100644 --- a/docs/pipelines.md +++ b/docs/pipelines.md @@ -35,7 +35,7 @@ EXAMPLE $ heroku pipelines ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/index.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/index.ts)_ ## `heroku pipelines:add PIPELINE` @@ -65,7 +65,7 @@ EXAMPLE $ heroku pipelines:add my-pipeline -a my-app -s production ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/add.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/add.ts)_ ## `heroku pipelines:connect NAME` @@ -87,7 +87,7 @@ EXAMPLE $ heroku pipelines:connect my-pipeline -r githuborg/reponame ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/connect.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/connect.ts)_ ## `heroku pipelines:create [NAME]` @@ -123,7 +123,7 @@ EXAMPLES $ heroku pipelines:create my-pipeline -a my-app-staging ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/create.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/create.ts)_ ## `heroku pipelines:destroy PIPELINE` @@ -142,7 +142,7 @@ EXAMPLE $ heroku pipelines:destroy my-pipeline ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/destroy.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/destroy.ts)_ ## `heroku pipelines:diff` @@ -162,7 +162,7 @@ EXAMPLE $ heroku pipelines:diff -a my-app-staging ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/diff.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/diff.ts)_ ## `heroku pipelines:info PIPELINE` @@ -184,7 +184,7 @@ EXAMPLE $ heroku pipelines:info my-pipeline ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/info.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/info.ts)_ ## `heroku pipelines:open PIPELINE` @@ -203,7 +203,7 @@ EXAMPLE $ heroku pipelines:open my-pipeline ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/open.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/open.ts)_ ## `heroku pipelines:promote` @@ -224,7 +224,7 @@ EXAMPLE $ heroku pipelines:promote -a my-app-staging ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/promote.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/promote.ts)_ ## `heroku pipelines:remove` @@ -244,7 +244,7 @@ EXAMPLE $ heroku pipelines:remove -a my-app ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/remove.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/remove.ts)_ ## `heroku pipelines:rename PIPELINE NAME` @@ -264,7 +264,7 @@ EXAMPLE $ heroku pipelines:rename my-pipeline new-pipeline-name ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/rename.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/rename.ts)_ ## `heroku pipelines:setup [NAME] [REPO]` @@ -288,7 +288,7 @@ EXAMPLE $ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/setup.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/setup.ts)_ ## `heroku pipelines:transfer OWNER` @@ -312,7 +312,7 @@ EXAMPLES $ heroku pipelines:transfer admin-team -p my-pipeline ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/transfer.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/transfer.ts)_ ## `heroku pipelines:update` @@ -333,4 +333,4 @@ EXAMPLE $ heroku pipelines:update -s staging -a my-app ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/update.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/update.ts)_ diff --git a/docs/plugins.md b/docs/plugins.md index 163650b2a6..3779f16830 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -4,6 +4,7 @@ list installed plugins * [`heroku plugins`](#heroku-plugins) +* [`heroku plugins:inspect PLUGIN...`](#heroku-pluginsinspect-plugin) * [`heroku plugins:install PLUGIN...`](#heroku-pluginsinstall-plugin) * [`heroku plugins:link PLUGIN`](#heroku-pluginslink-plugin) * [`heroku plugins:uninstall PLUGIN...`](#heroku-pluginsuninstall-plugin) @@ -26,7 +27,30 @@ EXAMPLE $ heroku plugins ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/index.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/index.ts)_ + +## `heroku plugins:inspect PLUGIN...` + +displays installation properties of a plugin + +``` +displays installation properties of a plugin + +USAGE + $ heroku plugins:inspect PLUGIN... + +ARGUMENTS + PLUGIN [default: .] plugin to inspect + +OPTIONS + -h, --help show CLI help + -v, --verbose + +EXAMPLE + $ heroku plugins:inspect myplugin +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/inspect.ts)_ ## `heroku plugins:install PLUGIN...` @@ -70,7 +94,7 @@ EXAMPLES $ heroku plugins:install someuser/someplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/install.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/install.ts)_ ## `heroku plugins:link PLUGIN` @@ -103,7 +127,7 @@ EXAMPLE $ heroku plugins:link myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/link.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/link.ts)_ ## `heroku plugins:uninstall PLUGIN...` @@ -127,7 +151,7 @@ ALIASES $ heroku plugins:remove ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/uninstall.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/uninstall.ts)_ ## `heroku plugins:update` @@ -144,4 +168,4 @@ OPTIONS -v, --verbose ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/update.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/update.ts)_ diff --git a/docs/reviewapps.md b/docs/reviewapps.md index 956bf6e2e6..3edb0a5486 100644 --- a/docs/reviewapps.md +++ b/docs/reviewapps.md @@ -28,7 +28,7 @@ EXAMPLE $ heroku reviewapps:disable -p my-pipeline -a my-app --no-autodeploy ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/reviewapps/disable.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/reviewapps/disable.ts)_ ## `heroku reviewapps:enable` @@ -52,4 +52,4 @@ EXAMPLE $ heroku reviewapps:enable -p my-pipeline -a my-app --autodeploy --autodestroy ``` -_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/reviewapps/enable.ts)_ +_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/reviewapps/enable.ts)_ diff --git a/docs/update.md b/docs/update.md index 30f2d20de2..e751a82751 100644 --- a/docs/update.md +++ b/docs/update.md @@ -14,6 +14,9 @@ update the <%= config.bin %> CLI USAGE $ heroku update [CHANNEL] + +OPTIONS + --from-local interactively choose an already installed version ``` -_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v1.3.9/src/commands/update.ts)_ +_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v1.5.0/src/commands/update.ts)_ diff --git a/lerna.json b/lerna.json index 162133bec0..8f0dad7a25 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "7.60.2", + "version": "7.61.0", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/addons-v5/CHANGELOG.md b/packages/addons-v5/CHANGELOG.md index e923fec903..d4144aca66 100644 --- a/packages/addons-v5/CHANGELOG.md +++ b/packages/addons-v5/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + +**Note:** Version bump only for package @heroku-cli/plugin-addons-v5 + + + + + # [7.54.0](https://github.com/heroku/cli/compare/v7.47.10...v7.54.0) (2021-05-18) diff --git a/packages/addons-v5/package.json b/packages/addons-v5/package.json index c887fd6753..cd35541e09 100644 --- a/packages/addons-v5/package.json +++ b/packages/addons-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-addons-v5", "description": "`heroku addons:*` commands", - "version": "7.54.0", + "version": "7.61.0", "author": "Bo Jeanes @bjeanes", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/apps-v5/CHANGELOG.md b/packages/apps-v5/CHANGELOG.md index 5da93fe2dd..69d0c3e059 100644 --- a/packages/apps-v5/CHANGELOG.md +++ b/packages/apps-v5/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + + +### Features + +* remove git ssh ([#2018](https://github.com/heroku/cli/issues/2018)) ([cabb90f](https://github.com/heroku/cli/commit/cabb90f802cee31059d62c8b4c813452fd78a6f1)) + + + + + ## [7.60.2](https://github.com/heroku/cli/compare/v7.60.1...v7.60.2) (2022-04-27) diff --git a/packages/apps-v5/README.md b/packages/apps-v5/README.md index fc72ec129d..1fe7237bc0 100644 --- a/packages/apps-v5/README.md +++ b/packages/apps-v5/README.md @@ -14,7 +14,7 @@ $ npm install -g @heroku-cli/plugin-apps-v5 $ heroku COMMAND running command... $ heroku (-v|--version|version) -@heroku-cli/plugin-apps-v5/7.60.2 darwin-x64 node-v14.18.0 +@heroku-cli/plugin-apps-v5/7.61.0 darwin-x64 node-v16.14.0 $ heroku --help [COMMAND] USAGE $ heroku COMMAND @@ -116,7 +116,6 @@ OPTIONS --json output in json format --region=region specify region for the app to run in --space=space the private space to create the app in - --ssh-git use SSH git protocol for local git remote EXAMPLES $ heroku apps:create @@ -272,7 +271,6 @@ USAGE OPTIONS -a, --app=app (required) app to run command against -r, --remote=remote git remote of app to use - --ssh-git use ssh git protocol instead of https DESCRIPTION This will locally update the git remote if it is set to the old app. diff --git a/packages/apps-v5/package.json b/packages/apps-v5/package.json index 86637171b0..7cb346e664 100644 --- a/packages/apps-v5/package.json +++ b/packages/apps-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-apps-v5", "description": "Heroku CLI plugin to manage apps.", - "version": "7.60.2", + "version": "7.61.0", "author": "Jeff Dickey (@jdxcode)", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/ci-v5/CHANGELOG.md b/packages/ci-v5/CHANGELOG.md index e3323a8d98..2dec8a9fd2 100644 --- a/packages/ci-v5/CHANGELOG.md +++ b/packages/ci-v5/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + +**Note:** Version bump only for package @heroku-cli/plugin-ci-v5 + + + + + # [7.60.0](https://github.com/heroku/cli/compare/v7.59.1...v7.60.0) (2022-03-23) **Note:** Version bump only for package @heroku-cli/plugin-ci-v5 diff --git a/packages/ci-v5/package.json b/packages/ci-v5/package.json index c0eede2961..06de02e161 100644 --- a/packages/ci-v5/package.json +++ b/packages/ci-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-ci-v5", "description": "Heroku CLI plugin for Heroku CI", - "version": "7.60.0", + "version": "7.61.0", "author": "Andrew Appleton, Gudmundur Bjarni Olafsson, Max Beizer, Ransom Briggs", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/ci/CHANGELOG.md b/packages/ci/CHANGELOG.md index 65bc43213f..8e18e1358b 100644 --- a/packages/ci/CHANGELOG.md +++ b/packages/ci/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + +**Note:** Version bump only for package @heroku-cli/plugin-ci + + + + + # [7.60.0](https://github.com/heroku/cli/compare/v7.59.1...v7.60.0) (2022-03-23) **Note:** Version bump only for package @heroku-cli/plugin-ci diff --git a/packages/ci/README.md b/packages/ci/README.md index ff76ca0bb1..e298793379 100644 --- a/packages/ci/README.md +++ b/packages/ci/README.md @@ -23,7 +23,7 @@ $ npm install -g @heroku-cli/plugin-ci $ heroku COMMAND running command... $ heroku (-v|--version|version) -@heroku-cli/plugin-ci/7.60.0 darwin-x64 node-v14.18.2 +@heroku-cli/plugin-ci/7.61.0 darwin-x64 node-v16.14.0 $ heroku --help [COMMAND] USAGE $ heroku COMMAND @@ -56,7 +56,7 @@ EXAMPLE $ heroku ci --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/index.ts)_ +_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/index.ts)_ ## `heroku ci:info TEST-RUN` @@ -75,7 +75,7 @@ EXAMPLE $ heroku ci:info 1288 --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/info.ts)_ +_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/info.ts)_ ## `heroku ci:last` @@ -94,7 +94,7 @@ EXAMPLE $ heroku ci:last --pipeline=my-pipeline --node 100 ``` -_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/last.ts)_ +_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/last.ts)_ ## `heroku ci:rerun [NUMBER]` @@ -112,7 +112,7 @@ EXAMPLE $ heroku ci:rerun 985 --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/rerun.ts)_ +_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/rerun.ts)_ ## `heroku ci:run` @@ -130,7 +130,7 @@ EXAMPLE $ heroku ci:run --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/run.ts)_ +_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/run.ts)_ * [`heroku ci:info`](#heroku-ci-info) * [`heroku ci:last`](#heroku-ci-last) diff --git a/packages/ci/package.json b/packages/ci/package.json index 5f911b920f..d86d9d3e37 100644 --- a/packages/ci/package.json +++ b/packages/ci/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-ci", "description": "Heroku CLI plugin for Heroku CI", - "version": "7.60.0", + "version": "7.61.0", "author": "Raúl Barroso @raulb", "bugs": "https://github.com/heroku/cli/issues", "dependencies": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 52ccdcb8e4..d21c1d1bfc 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + + +### Bug Fixes + +* upgrade @oclif/command from 1.5.18 to 1.8.0 ([#1890](https://github.com/heroku/cli/issues/1890)) ([297531c](https://github.com/heroku/cli/commit/297531cabc2474ddb025f9b952d10bb5345cf11d)) +* upgrade @oclif/command from 1.8.0 to 1.8.16 ([#2026](https://github.com/heroku/cli/issues/2026)) ([cbfdb0c](https://github.com/heroku/cli/commit/cbfdb0c8303d6ed752681203b8f6491a55397b6c)) +* upgrade @oclif/plugin-plugins from 1.7.9 to 1.10.1 ([#1889](https://github.com/heroku/cli/issues/1889)) ([2a135cc](https://github.com/heroku/cli/commit/2a135cc931d714aa9d739b953d6ed056ce215ef2)) +* upgrade @oclif/plugin-update from 1.3.9 to 1.5.0 ([#1892](https://github.com/heroku/cli/issues/1892)) ([ad3c97c](https://github.com/heroku/cli/commit/ad3c97c0a7d16a14d8b50f3f2f3d4bf3a70a662b)) + + + + + ## [7.60.2](https://github.com/heroku/cli/compare/v7.60.1...v7.60.2) (2022-04-27) **Note:** Version bump only for package heroku diff --git a/packages/cli/package.json b/packages/cli/package.json index b70cb26de1..c329868321 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "heroku", "description": "CLI to interact with Heroku", - "version": "7.60.2", + "version": "7.61.0", "author": "Jeff Dickey @jdxcode", "bin": { "heroku": "./bin/run" @@ -10,27 +10,27 @@ "dependencies": { "@heroku-cli/color": "1.1.14", "@heroku-cli/command": "^8.4.1", - "@heroku-cli/plugin-addons-v5": "^7.54.0", + "@heroku-cli/plugin-addons-v5": "^7.61.0", "@heroku-cli/plugin-apps": "^7.60.0", - "@heroku-cli/plugin-apps-v5": "^7.60.2", + "@heroku-cli/plugin-apps-v5": "^7.61.0", "@heroku-cli/plugin-auth": "^7.60.0", "@heroku-cli/plugin-autocomplete": "^7.60.0", "@heroku-cli/plugin-buildpacks": "^7.60.0", "@heroku-cli/plugin-certs": "^7.60.0", "@heroku-cli/plugin-certs-v5": "^7.60.0", - "@heroku-cli/plugin-ci": "^7.60.0", - "@heroku-cli/plugin-ci-v5": "^7.60.0", + "@heroku-cli/plugin-ci": "^7.61.0", + "@heroku-cli/plugin-ci-v5": "^7.61.0", "@heroku-cli/plugin-config": "^7.60.0", "@heroku-cli/plugin-container-registry-v5": "^7.60.0", - "@heroku-cli/plugin-git": "^7.60.0", + "@heroku-cli/plugin-git": "^7.61.0", "@heroku-cli/plugin-local": "^7.60.0", "@heroku-cli/plugin-oauth-v5": "^7.54.0", "@heroku-cli/plugin-orgs-v5": "^7.54.0", "@heroku-cli/plugin-pg-v5": "^7.60.0", - "@heroku-cli/plugin-pipelines": "^7.54.0", + "@heroku-cli/plugin-pipelines": "^7.61.0", "@heroku-cli/plugin-ps": "^7.60.0", "@heroku-cli/plugin-ps-exec": "2.3.8", - "@heroku-cli/plugin-redis-v5": "^7.59.1", + "@heroku-cli/plugin-redis-v5": "^7.61.0", "@heroku-cli/plugin-run": "^7.60.0", "@heroku-cli/plugin-spaces": "^7.54.0", "@heroku-cli/plugin-status": "^7.60.0", diff --git a/packages/git/CHANGELOG.md b/packages/git/CHANGELOG.md index 117d77eb3c..d049954507 100644 --- a/packages/git/CHANGELOG.md +++ b/packages/git/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. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + + +### Bug Fixes + +* upgrade debug from 4.1.1 to 4.3.4 ([#2024](https://github.com/heroku/cli/issues/2024)) ([14c8752](https://github.com/heroku/cli/commit/14c87526111c6fe86733a0c785045abf6e0c157c)) + + +### Features + +* remove git ssh ([#2018](https://github.com/heroku/cli/issues/2018)) ([cabb90f](https://github.com/heroku/cli/commit/cabb90f802cee31059d62c8b4c813452fd78a6f1)) + + + + + # [7.60.0](https://github.com/heroku/cli/compare/v7.59.1...v7.60.0) (2022-03-23) **Note:** Version bump only for package @heroku-cli/plugin-git diff --git a/packages/git/README.md b/packages/git/README.md index f09d023567..72cacf39f8 100644 --- a/packages/git/README.md +++ b/packages/git/README.md @@ -20,7 +20,7 @@ $ npm install -g @heroku-cli/plugin-git $ oclif-example COMMAND running command... $ oclif-example (-v|--version|version) -@heroku-cli/plugin-git/7.60.0 darwin-x64 node-v14.18.2 +@heroku-cli/plugin-git/7.61.0 darwin-x64 node-v16.14.0 $ oclif-example --help [COMMAND] USAGE $ oclif-example COMMAND @@ -46,7 +46,6 @@ ARGUMENTS OPTIONS -a, --app=app (required) the Heroku app to use -r, --remote=remote the git remote to create, default "heroku" - --ssh-git use SSH git protocol EXAMPLES $ heroku git:clone -a example @@ -55,7 +54,7 @@ EXAMPLES ... ``` -_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/git/src/commands/git/clone.ts)_ +_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/git/src/commands/git/clone.ts)_ ## `oclif-example git:remote` @@ -68,7 +67,6 @@ USAGE OPTIONS -a, --app=app the Heroku app to use -r, --remote=remote the git remote to create - --ssh-git use SSH git protocol DESCRIPTION extra arguments will be passed to git remote add @@ -81,5 +79,5 @@ EXAMPLES $ heroku git:remote --remote heroku-staging -a example ``` -_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v7.60.0/packages/git/src/commands/git/remote.ts)_ +_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v7.61.0/packages/git/src/commands/git/remote.ts)_ diff --git a/packages/git/package.json b/packages/git/package.json index d971f62523..1d1af12957 100644 --- a/packages/git/package.json +++ b/packages/git/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-git", "description": "Heroku CLI plugin to manage local git repos.", - "version": "7.60.0", + "version": "7.61.0", "author": "Jeff Dickey (@jdxcode)", "bugs": "https://github.com/heroku/cli/issues", "dependencies": { diff --git a/packages/pipelines/CHANGELOG.md b/packages/pipelines/CHANGELOG.md index 1a4eff0d23..3a0cd514c1 100644 --- a/packages/pipelines/CHANGELOG.md +++ b/packages/pipelines/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + +**Note:** Version bump only for package @heroku-cli/plugin-pipelines + + + + + # [7.54.0](https://github.com/heroku/cli/compare/v7.47.10...v7.54.0) (2021-05-18) **Note:** Version bump only for package @heroku-cli/plugin-pipelines diff --git a/packages/pipelines/README.md b/packages/pipelines/README.md index 79415241f2..92aa119415 100644 --- a/packages/pipelines/README.md +++ b/packages/pipelines/README.md @@ -21,7 +21,7 @@ $ npm install -g @heroku-cli/plugin-pipelines $ heroku COMMAND running command... $ heroku (-v|--version|version) -@heroku-cli/plugin-pipelines/7.54.0 darwin-x64 node-v12.18.4 +@heroku-cli/plugin-pipelines/7.61.0 darwin-x64 node-v16.14.0 $ heroku --help [COMMAND] USAGE $ heroku COMMAND @@ -62,7 +62,7 @@ EXAMPLE $ heroku pipelines ``` -_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/index.ts)_ +_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/index.ts)_ ## `heroku pipelines:add PIPELINE` @@ -88,7 +88,7 @@ EXAMPLE $ heroku pipelines:add my-pipeline -a my-app -s production ``` -_See code: [src/commands/pipelines/add.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/add.ts)_ +_See code: [src/commands/pipelines/add.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/add.ts)_ ## `heroku pipelines:connect NAME` @@ -108,7 +108,7 @@ EXAMPLE $ heroku pipelines:connect my-pipeline -r githuborg/reponame ``` -_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/connect.ts)_ +_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/connect.ts)_ ## `heroku pipelines:create [NAME]` @@ -138,7 +138,7 @@ EXAMPLES $ heroku pipelines:create my-pipeline -a my-app-staging ``` -_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/create.ts)_ +_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/create.ts)_ ## `heroku pipelines:destroy PIPELINE` @@ -155,7 +155,7 @@ EXAMPLE $ heroku pipelines:destroy my-pipeline ``` -_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/destroy.ts)_ +_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/destroy.ts)_ ## `heroku pipelines:diff` @@ -173,7 +173,7 @@ EXAMPLE $ heroku pipelines:diff -a my-app-staging ``` -_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/diff.ts)_ +_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/diff.ts)_ ## `heroku pipelines:info PIPELINE` @@ -193,7 +193,7 @@ EXAMPLE $ heroku pipelines:info my-pipeline ``` -_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/info.ts)_ +_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/info.ts)_ ## `heroku pipelines:open PIPELINE` @@ -210,7 +210,7 @@ EXAMPLE $ heroku pipelines:open my-pipeline ``` -_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/open.ts)_ +_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/open.ts)_ ## `heroku pipelines:promote` @@ -229,7 +229,7 @@ EXAMPLE $ heroku pipelines:promote -a my-app-staging ``` -_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/promote.ts)_ +_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/promote.ts)_ ## `heroku pipelines:remove` @@ -247,7 +247,7 @@ EXAMPLE $ heroku pipelines:remove -a my-app ``` -_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/remove.ts)_ +_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/remove.ts)_ ## `heroku pipelines:rename PIPELINE NAME` @@ -265,7 +265,7 @@ EXAMPLE $ heroku pipelines:rename my-pipeline new-pipeline-name ``` -_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/rename.ts)_ +_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/rename.ts)_ ## `heroku pipelines:setup [NAME] [REPO]` @@ -287,7 +287,7 @@ EXAMPLE $ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team ``` -_See code: [src/commands/pipelines/setup.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/setup.ts)_ +_See code: [src/commands/pipelines/setup.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/setup.ts)_ ## `heroku pipelines:transfer OWNER` @@ -309,7 +309,7 @@ EXAMPLES $ heroku pipelines:transfer admin-team -p my-pipeline ``` -_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/transfer.ts)_ +_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/transfer.ts)_ ## `heroku pipelines:update` @@ -328,7 +328,7 @@ EXAMPLE $ heroku pipelines:update -s staging -a my-app ``` -_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/update.ts)_ +_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/update.ts)_ ## `heroku reviewapps:disable` @@ -350,7 +350,7 @@ EXAMPLE $ heroku reviewapps:disable -p my-pipeline -a my-app --no-autodeploy ``` -_See code: [src/commands/reviewapps/disable.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/reviewapps/disable.ts)_ +_See code: [src/commands/reviewapps/disable.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/reviewapps/disable.ts)_ ## `heroku reviewapps:enable` @@ -372,5 +372,5 @@ EXAMPLE $ heroku reviewapps:enable -p my-pipeline -a my-app --autodeploy --autodestroy ``` -_See code: [src/commands/reviewapps/enable.ts](https://github.com/heroku/cli/blob/v7.54.0/src/commands/reviewapps/enable.ts)_ +_See code: [src/commands/reviewapps/enable.ts](https://github.com/heroku/cli/blob/v7.61.0/src/commands/reviewapps/enable.ts)_ diff --git a/packages/pipelines/package.json b/packages/pipelines/package.json index 7e8b54e80f..38f648691e 100644 --- a/packages/pipelines/package.json +++ b/packages/pipelines/package.json @@ -1,6 +1,6 @@ { "name": "@heroku-cli/plugin-pipelines", - "version": "7.54.0", + "version": "7.61.0", "author": "James Martinez @jmar910", "bugs": "https://github.com/heroku/cli/issues", "dependencies": { diff --git a/packages/redis-v5/CHANGELOG.md b/packages/redis-v5/CHANGELOG.md index 506a68d7fb..f9978c0e02 100644 --- a/packages/redis-v5/CHANGELOG.md +++ b/packages/redis-v5/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03) + +**Note:** Version bump only for package @heroku-cli/plugin-redis-v5 + + + + + ## [7.59.1](https://github.com/heroku/cli/compare/v7.59.0...v7.59.1) (2021-10-21) **Note:** Version bump only for package @heroku-cli/plugin-redis-v5 diff --git a/packages/redis-v5/package.json b/packages/redis-v5/package.json index f9e3f2cc29..f467664a8f 100644 --- a/packages/redis-v5/package.json +++ b/packages/redis-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-redis-v5", "description": "Heroku plugin to manage Heroku Redis", - "version": "7.59.1", + "version": "7.61.0", "author": "Heroku", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/yarn.lock b/yarn.lock index 2d09c64214..5fe97a9f7b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1119,7 +1119,30 @@ supports-color "^5.4.0" tslib "^1" -"@oclif/command@1.5.18", "@oclif/command@^1", "@oclif/command@^1.5.1", "@oclif/command@^1.5.10", "@oclif/command@^1.5.11", "@oclif/command@^1.5.12", "@oclif/command@^1.5.13", "@oclif/command@^1.5.8": +"@oclif/color@^0.1.0", "@oclif/color@^0.x": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@oclif/color/-/color-0.1.2.tgz#28b07e2850d9ce814d0b587ce3403b7ad8f7d987" + integrity sha512-M9o+DOrb8l603qvgz1FogJBUGLqcMFL1aFg2ZEL0FbXJofiNTLOWIeB4faeZTLwE6dt0xH9GpCVpzksMMzGbmA== + dependencies: + ansi-styles "^3.2.1" + chalk "^3.0.0" + strip-ansi "^5.2.0" + supports-color "^5.4.0" + tslib "^1" + +"@oclif/command@1.8.16", "@oclif/command@^1.7.0": + version "1.8.16" + resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.16.tgz#bea46f81b2061b47e1cda318a0b923e62ca4cc0c" + integrity sha512-rmVKYEsKzurfRU0xJz+iHelbi1LGlihIWZ7Qvmb/CBz1EkhL7nOkW4SVXmG2dA5Ce0si2gr88i6q4eBOMRNJ1w== + dependencies: + "@oclif/config" "^1.18.2" + "@oclif/errors" "^1.3.5" + "@oclif/help" "^1.0.1" + "@oclif/parser" "^3.8.6" + debug "^4.1.1" + semver "^7.3.2" + +"@oclif/command@^1", "@oclif/command@^1.5.1", "@oclif/command@^1.5.10", "@oclif/command@^1.5.11", "@oclif/command@^1.5.12", "@oclif/command@^1.5.13", "@oclif/command@^1.5.8": version "1.5.18" resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.5.18.tgz#57125b501fafa155ad280bf8dc9f36a911c44f11" integrity sha512-sfLb5UUCwyQ0w9LyQ1/3DUuD/RWnPZk6uvcK5P7pqD65WgRJaOPCqzuNZyb56kPsj6FftRp1UudApNKd7U0KBQ== @@ -1162,6 +1185,18 @@ debug "^4.1.1" tslib "^1.9.3" +"@oclif/config@1.18.2": + version "1.18.2" + resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.18.2.tgz#5bfe74a9ba6a8ca3dceb314a81bd9ce2e15ebbfe" + integrity sha512-cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA== + dependencies: + "@oclif/errors" "^1.3.3" + "@oclif/parser" "^3.8.0" + debug "^4.1.1" + globby "^11.0.1" + is-wsl "^2.1.1" + tslib "^2.0.0" + "@oclif/config@^1.15.1", "@oclif/config@^1.17.0", "@oclif/config@^1.8.7": version "1.17.0" resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.17.0.tgz#ba8639118633102a7e481760c50054623d09fcab" @@ -1174,13 +1209,17 @@ is-wsl "^2.1.1" tslib "^2.0.0" -"@oclif/config@^1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.9.0.tgz#f0df483bad3988f24cddd4d85fdc8eafa9eb7ff2" - integrity sha512-R9HJvS7x4Ff/VFGlg8b7hxFnuC77y7znr1iXwRay4Jhd/EFJyZRT9d9SHzA6TS8lz9vDTW93xOFakT9AXld4Kg== +"@oclif/config@^1.16.0", "@oclif/config@^1.18.2": + version "1.18.3" + resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.18.3.tgz#ddfc144fdab66b1658c2f1b3478fa7fbfd317e79" + integrity sha512-sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA== dependencies: - debug "^4.1.0" - tslib "^1.9.3" + "@oclif/errors" "^1.3.5" + "@oclif/parser" "^3.8.0" + debug "^4.1.1" + globby "^11.0.1" + is-wsl "^2.1.1" + tslib "^2.3.1" "@oclif/dev-cli@1.21.3": version "1.21.3" @@ -1248,6 +1287,17 @@ strip-ansi "^5.0.0" wrap-ansi "^4.0.0" +"@oclif/errors@1.3.5", "@oclif/errors@^1.3.5": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz#a1e9694dbeccab10fe2fe15acb7113991bed636c" + integrity sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ== + dependencies: + clean-stack "^3.0.0" + fs-extra "^8.1" + indent-string "^4.0.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + "@oclif/errors@^1.2.2", "@oclif/errors@^1.3.3": version "1.3.3" resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.3.tgz#fb597dfbc58c6b8609dc0b2fdf91a2d487818a82" @@ -1270,6 +1320,21 @@ strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +"@oclif/help@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@oclif/help/-/help-1.0.1.tgz#fd96a3dd9fb2314479e6c8584c91b63754a7dff5" + integrity sha512-8rsl4RHL5+vBUAKBL6PFI3mj58hjPCp2VYyXD4TAa7IMStikFfOH2gtWmqLzIlxAED2EpD0dfYwo9JJxYsH7Aw== + dependencies: + "@oclif/config" "1.18.2" + "@oclif/errors" "1.3.5" + chalk "^4.1.2" + indent-string "^4.0.0" + lodash "^4.17.21" + string-width "^4.2.0" + strip-ansi "^6.0.0" + widest-line "^3.1.0" + wrap-ansi "^6.2.0" + "@oclif/linewrap@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91" @@ -1293,6 +1358,16 @@ chalk "^2.4.2" tslib "^1.9.3" +"@oclif/parser@^3.8.6": + version "3.8.7" + resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.7.tgz#236d48db05d0b00157d3b42d31f9dac7550d2a7c" + integrity sha512-b11xBmIUK+LuuwVGJpFs4LwQN2xj2cBWj2c4z1FtiXGrJ85h9xV6q+k136Hw0tGg1jQoRXuvuBnqQ7es7vO9/Q== + dependencies: + "@oclif/errors" "^1.3.5" + "@oclif/linewrap" "^1.0.0" + chalk "^4.1.0" + tslib "^2.3.1" + "@oclif/plugin-commands@^1.2.2": version "1.3.0" resolved "https://registry.yarnpkg.com/@oclif/plugin-commands/-/plugin-commands-1.3.0.tgz#ba95e2c7f7c50345b806aa3728fe7868452d08a0" @@ -1370,44 +1445,45 @@ fast-levenshtein "^2.0.6" lodash "^4.17.11" -"@oclif/plugin-plugins@1.7.9": - version "1.7.9" - resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-1.7.9.tgz#e2ff7aa7f459780545330abeaf3287f7ceb6d577" - integrity sha512-o7qfmiUGl+NUyA2lM18/Ch5sasGGYPIINR3cZ/AjwtdQ3ooINnF00pUDcUOtbjW97gRmk6/j79tcyTo8i7rHZg== +"@oclif/plugin-plugins@1.10.1": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-1.10.1.tgz#13666d7c2f591a77f7a16334feee59f9eb216eb1" + integrity sha512-JDUA3NtOa4OlH8ofUBXQMTFlpEkSmeE9BxoQTD6+BeUvMgqFuZThENucRvCD00sywhCmDngmIYN59gKcXpGJeQ== dependencies: - "@oclif/color" "^0.0.0" + "@oclif/color" "^0.x" "@oclif/command" "^1.5.12" - chalk "^2.4.2" + "@oclif/errors" "^1.2.2" + chalk "^4.1.0" cli-ux "^5.2.1" debug "^4.1.0" - fs-extra "^7.0.1" + fs-extra "^9.0" http-call "^5.2.2" load-json-file "^5.2.0" - npm-run-path "^3.0.0" - semver "^5.6.0" - tslib "^1.9.3" + npm-run-path "^4.0.1" + semver "^7.3.2" + tslib "^2.0.0" yarn "^1.21.1" -"@oclif/plugin-update@1.3.9": - version "1.3.9" - resolved "https://registry.yarnpkg.com/@oclif/plugin-update/-/plugin-update-1.3.9.tgz#bafba8ba027ae7bfdb95ee6d0c65d9c6dc8b5cf3" - integrity sha512-rEMsKT7VlCNnfAF7gxHcY9FtQw+w3ZMvxzoRqafMRCz6+Lt94r3PRulBI4M7IkIQwE+dqW/GPUlkDj86Os9Njg== - dependencies: - "@oclif/color" "^0.0.0" - "@oclif/command" "^1.5.4" - "@oclif/config" "^1.9.0" - "@oclif/errors" "^1.2.2" - "@types/semver" "^5.5.0" - cli-ux "^4.9.3" - cross-spawn "^6.0.5" - debug "^4.1.0" - filesize "^3.6.1" - fs-extra "^7.0.1" - http-call "^5.2.2" - lodash "^4.17.11" +"@oclif/plugin-update@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-update/-/plugin-update-1.5.0.tgz#a9e0092a9b7ae01e54708938e2a424903f5079ef" + integrity sha512-GsWK1CMeBBO8YknThoOZulj3xE+ZgZAXW1ouNJALXcs3mbROzszLDGjXV3RM6ffbJpnWLiMIqSFNOE8d+vGcgQ== + dependencies: + "@oclif/color" "^0.1.0" + "@oclif/command" "^1.7.0" + "@oclif/config" "^1.16.0" + "@oclif/errors" "^1.3.4" + "@types/semver" "^7.3.4" + cli-ux "^5.5.1" + cross-spawn "^7.0.3" + debug "^4.3.1" + filesize "^6.1.0" + fs-extra "^9.0.1" + http-call "^5.3.0" + lodash "^4.17.21" log-chopper "^1.0.2" - semver "^5.6.0" - tar-fs "^1.16.3" + semver "^7.3.5" + tar-fs "^2.1.1" "@oclif/plugin-warn-if-update-available@1.7.0": version "1.7.0" @@ -1768,10 +1844,10 @@ resolved "https://registry.yarnpkg.com/@types/phoenix/-/phoenix-1.4.0.tgz#e8414a225c6c7e310cd6e2db5a2156fbbbf862dd" integrity sha512-bsuR5rj81NxgJ1w+Z5mgHlcIFBJKa2ChtbFbd1xDXxNJaBqYocAL53vsQ9T/CIZOSEs4A3WK7VMvzOOsG5cbJQ== -"@types/semver@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-5.5.0.tgz#146c2a29ee7d3bae4bf2fcb274636e264c813c45" - integrity sha512-41qEJgBH/TWgo5NFSvBCJ1qkoi3Q6ONSF2avrHq1LVEZfYpdHmj0y9SuTK+u9ZhG1sYQKBL1AWXKyLWP4RaUoQ== +"@types/semver@^7.3.4": + version "7.3.10" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.10.tgz#5f19ee40cbeff87d916eedc8c2bfe2305d957f73" + integrity sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw== "@types/shell-escape@^0.2.0": version "0.2.0" @@ -2281,7 +2357,7 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= -base64-js@^1.0.2, base64-js@^1.5.1: +base64-js@^1.0.2, base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -2331,6 +2407,15 @@ bl@^3.0.0: dependencies: readable-stream "^3.0.1" +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + bluebird@^3.5.0: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" @@ -2414,6 +2499,14 @@ buffer@4.9.1: ieee754 "^1.1.4" isarray "^1.0.0" +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + buildcheck@0.0.3: version "0.0.3" resolved "https://registry.yarnpkg.com/buildcheck/-/buildcheck-0.0.3.tgz#70451897a95d80f7807e68fc412eb2e7e35ff4d5" @@ -2673,6 +2766,14 @@ chalk@^2.1.0, chalk@^2.3.0: escape-string-regexp "^1.0.5" supports-color "^5.3.0" +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + chalk@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" @@ -2681,6 +2782,14 @@ chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + chardet@^0.4.0: version "0.4.2" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" @@ -3282,7 +3391,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^7.0.1: +cross-spawn@^7.0.1, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -3373,6 +3482,13 @@ debug@4.1.1, debug@^4.1.0, debug@^4.1.1: dependencies: ms "^2.1.1" +debug@4.3.4, debug@^4.3.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^3.1.0: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" @@ -4502,16 +4618,16 @@ file-entry-cache@^5.0.1: dependencies: flat-cache "^2.0.1" -filesize@^3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" - integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== - filesize@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/filesize/-/filesize-4.0.0.tgz#edd45b16247c815ac3bc7265c34cf3dab6b41234" integrity sha512-IGrOTisl83FmbpiL5KCpfF7+6CRcmndNaWxwYWcnSqXtoNUhVO+1l8rKK4GVE7A8f4fEDkSocS9X6+eXHkEhGA== +filesize@^6.1.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.4.0.tgz#914f50471dd66fdca3cefe628bd0cde4ef769bcd" + integrity sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ== + fill-keys@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/fill-keys/-/fill-keys-1.0.2.tgz#9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20" @@ -4742,6 +4858,16 @@ fs-extra@^8.1, fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" +fs-extra@^9.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" @@ -5367,7 +5493,7 @@ http-cache-semantics@^4.0.0: resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#6c2ef57e22090b177828708a52eaeae9d1d63e1b" integrity sha512-OO/9K7uFN30qwAKvslzmCTbimZ/uRjtdN5S50vvWLwUKqFuZj0n96XyCzF5tHRHEO/Q4JYC01hv41gkX06gmHA== -http-call@5.3.0: +http-call@5.3.0, http-call@^5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/http-call/-/http-call-5.3.0.tgz#4ded815b13f423de176eb0942d69c43b25b148db" integrity sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w== @@ -5461,6 +5587,11 @@ ieee754@1.1.8: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + ieee754@^1.1.4: version "1.1.12" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" @@ -5567,7 +5698,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -6570,6 +6701,11 @@ lodash@^4.17.11: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + log-chopper@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/log-chopper/-/log-chopper-1.0.2.tgz#a88da7a47a9f0e511eda4d5e1dc840e0eaf4547a" @@ -6921,6 +7057,11 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" +mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + mkdirp-promise@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz#e9b8f68e552c68a9c1713b84883f7a1dd039b8a1" @@ -7000,7 +7141,7 @@ ms@2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= -ms@^2.0.0, ms@^2.1.1: +ms@2.1.2, ms@^2.0.0, ms@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== @@ -7347,10 +7488,10 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npm-run-path@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5" - integrity sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" @@ -8419,6 +8560,15 @@ read@1, read@~1.0.1: string_decoder "^1.1.1" util-deprecate "^1.0.1" +readable-stream@^3.4.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + readdir-scoped-modules@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" @@ -9615,7 +9765,7 @@ table@^5.2.3: slice-ansi "^2.1.0" string-width "^3.0.0" -tar-fs@^1.16.2, tar-fs@^1.16.3: +tar-fs@^1.16.2: version "1.16.3" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== @@ -9635,6 +9785,16 @@ tar-fs@^2.0.0: pump "^3.0.0" tar-stream "^2.0.0" +tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + tar-stream@^1.1.2: version "1.6.2" resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" @@ -9659,6 +9819,17 @@ tar-stream@^2.0.0: inherits "^2.0.3" readable-stream "^3.1.1" +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + tar@^4.4.10, tar@^4.4.12, tar@^4.4.8: version "4.4.13" resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" @@ -9967,6 +10138,11 @@ tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== +tslib@^2.3.1: + version "2.4.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + tslint-config-prettier@*: version "1.17.0" resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.17.0.tgz#946ed6117f98f3659a65848279156d87628c33dc" @@ -10155,6 +10331,11 @@ universalify@^1.0.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" @@ -10422,6 +10603,15 @@ wrap-ansi@^5.1.0: string-width "^3.0.0" strip-ansi "^5.0.0" +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"