@automattic/vip 2.38.3 → 2.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/bin/vip-export-sql.js +8 -5
- package/dist/bin/vip-export.js +1 -1
- package/dist/bin/vip-import-sql-status.js +2 -1
- package/dist/bin/vip-import-sql.js +4 -1
- package/dist/bin/vip-validate-preflight.js +1 -1
- package/dist/bin/vip.js +1 -1
- package/dist/commands/backup-db.js +1 -1
- package/dist/commands/export-sql.js +1 -1
- package/dist/lib/dev-environment/dev-environment-cli.js +1 -1
- package/dist/lib/dev-environment/dev-environment-lando.js +2 -2
- package/dist/lib/site-import/status.js +5 -3
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/CHANGELOG.md +38 -0
- package/docs/SETUP.md +2 -2
- package/npm-shrinkwrap.json +48 -197
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ VIP-CLI is a tool for interacting with and managing your [WordPress VIP applicat
|
|
|
14
14
|
|
|
15
15
|
## Further information
|
|
16
16
|
|
|
17
|
-
- In the [WordPress VIP Lobby](https://lobby.vip.wordpress.com/) find announcements related to
|
|
18
|
-
-
|
|
17
|
+
- In the [WordPress VIP Lobby](https://lobby.vip.wordpress.com/) find announcements related to [VIP-CLI](https://lobby.vip.wordpress.com/?s=vip-cli) and [API](https://lobby.vip.wordpress.com/?s=vip%20go%20api).
|
|
18
|
+
- Find instructions for using [VIP-CLI](https://docs.wpvip.com/vip-cli/) in [WordPress VIP's Documentation](https://docs.wpvip.com/).
|
|
19
19
|
- [Changelog](https://github.com/Automattic/vip-cli/blob/trunk/docs/CHANGELOG.md) file for VIP-CLI is available.
|
|
20
|
-
- [VIP Cloud Changelog](https://wpvipchangelog.wordpress.com/) logs changes to the [CLI](https://wpvipchangelog.wordpress.com/?s=cli) and other aspects of the platform.
|
|
20
|
+
- [VIP Cloud Changelog](https://wpvipchangelog.wordpress.com/) logs changes to the [VIP-CLI](https://wpvipchangelog.wordpress.com/?s=cli) and other aspects of the platform.
|
|
@@ -6,11 +6,14 @@ var _command = _interopRequireDefault(require("../lib/cli/command"));
|
|
|
6
6
|
var _tracker = require("../lib/tracker");
|
|
7
7
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
8
8
|
const examples = [{
|
|
9
|
-
usage: 'vip export sql
|
|
10
|
-
description: '
|
|
9
|
+
usage: 'vip @example-app.develop export sql',
|
|
10
|
+
description: 'Download an archived copy of the most recent database backup for an environment to the current local directory.'
|
|
11
11
|
}, {
|
|
12
|
-
usage: 'vip export sql
|
|
13
|
-
description: '
|
|
12
|
+
usage: 'vip @example-app.develop export sql --output=~/Desktop/export.sql.gz',
|
|
13
|
+
description: 'Download an archived copy of the most recent database backup for an environment to a specific file path.'
|
|
14
|
+
}, {
|
|
15
|
+
usage: 'vip @example-app.develop export sql --generate-backup',
|
|
16
|
+
description: 'Generate a fresh database backup for an environment and download a copy of that backup.'
|
|
14
17
|
}];
|
|
15
18
|
const appQuery = `
|
|
16
19
|
id,
|
|
@@ -33,7 +36,7 @@ const appQuery = `
|
|
|
33
36
|
module: 'export-sql',
|
|
34
37
|
requiredArgs: 0,
|
|
35
38
|
usage: 'vip export sql'
|
|
36
|
-
}).option('output', '
|
|
39
|
+
}).option('output', 'Download the file to a specific local directory path with a custom file name.').option('generate-backup', 'Generate a fresh database backup and export a copy of that backup.').examples(examples).argv(process.argv, async (arg, {
|
|
37
40
|
app,
|
|
38
41
|
env,
|
|
39
42
|
output,
|
package/dist/bin/vip-export.js
CHANGED
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
var _command = _interopRequireDefault(require("../lib/cli/command"));
|
|
5
5
|
var _tracker = require("../lib/tracker");
|
|
6
6
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
7
|
-
(0, _command.default)().command('sql', '
|
|
7
|
+
(0, _command.default)().command('sql', 'Generate a copy of a database backup for an environment and download it as an archived SQL file.').example('vip @example-app.develop export sql', 'Download a copy of the most recent database backup for an environment as an archived SQL file to the current local directory.').argv(process.argv, async () => {
|
|
8
8
|
await (0, _tracker.trackEvent)('vip_export_command_execute');
|
|
9
9
|
});
|
|
@@ -215,14 +215,16 @@ const promptToContinue = async ({
|
|
|
215
215
|
formattedEnvironment,
|
|
216
216
|
track,
|
|
217
217
|
domain,
|
|
218
|
+
isMultiSite,
|
|
218
219
|
tableNames
|
|
219
220
|
}) => {
|
|
220
221
|
console.log();
|
|
221
222
|
const promptToMatch = domain.toUpperCase();
|
|
223
|
+
const source = !isMultiSite && tableNames?.length ? 'the above tables' : 'the above file';
|
|
222
224
|
const promptResponse = await (0, _enquirer.prompt)({
|
|
223
225
|
type: 'input',
|
|
224
226
|
name: 'confirmedDomain',
|
|
225
|
-
message: `You are about to import ${
|
|
227
|
+
message: `You are about to import ${source} into a ${launched ? 'launched' : 'un-launched'} ${formattedEnvironment} site ${_chalk.default.yellow(domain)}.\nType '${_chalk.default.yellow(promptToMatch)}' (without the quotes) to continue:\n`
|
|
226
228
|
});
|
|
227
229
|
if (promptResponse.confirmedDomain.toUpperCase() !== promptToMatch) {
|
|
228
230
|
await track('import_sql_unexpected_tables');
|
|
@@ -398,6 +400,7 @@ void (0, _command.default)({
|
|
|
398
400
|
formattedEnvironment,
|
|
399
401
|
track,
|
|
400
402
|
domain,
|
|
403
|
+
isMultiSite,
|
|
401
404
|
tableNames
|
|
402
405
|
});
|
|
403
406
|
|
|
@@ -92,7 +92,7 @@ async function getBuildConfiguration(application, environment) {
|
|
|
92
92
|
return result.data.app.environments[0].buildConfiguration;
|
|
93
93
|
} catch (error) {
|
|
94
94
|
if (error.graphQLErrors && error.graphQLErrors.find(gqlError => gqlError.message === 'Unauthorized')) {
|
|
95
|
-
console.log(`${_chalk.default.red('Error:')} You don't have the required permissions to run validations for this environment.\n` + `You must be either be an admin of the ${_chalk.default.bold.underline(application.organization.name)} organization, or, alternatively,\n` + `a guest of that organization and an admin of the ${_chalk.default.bold.underline(application.name)} application.\n\n` + 'You can read more about organization and application roles on our documentation:\n' + _chalk.default.underline('https://docs.wpvip.com/
|
|
95
|
+
console.log(`${_chalk.default.red('Error:')} You don't have the required permissions to run validations for this environment.\n` + `You must be either be an admin of the ${_chalk.default.bold.underline(application.organization.name)} organization, or, alternatively,\n` + `a guest of that organization and an admin of the ${_chalk.default.bold.underline(application.name)} application.\n\n` + 'You can read more about organization and application roles on our documentation:\n' + _chalk.default.underline('https://docs.wpvip.com/manage-user-access/vip-dashboard/'));
|
|
96
96
|
await (0, _tracker.trackEvent)('validate_preflight_command_error', {
|
|
97
97
|
env_id: environment.id,
|
|
98
98
|
app_id: environment.appId,
|
package/dist/bin/vip.js
CHANGED
|
@@ -22,7 +22,7 @@ const tokenURL = 'https://dashboard.wpvip.com/me/cli/token';
|
|
|
22
22
|
const customDeployToken = process.env.WPVIP_DEPLOY_TOKEN;
|
|
23
23
|
const runCmd = async function () {
|
|
24
24
|
const cmd = (0, _command.default)();
|
|
25
|
-
cmd.command('logout', 'Logout from your current session').command('app', 'List and modify your VIP applications').command('backup', 'Generate a backup for VIP applications').command('cache', 'Manage page cache for your VIP applications').command('config', 'Set configuration for your VIP applications').command('dev-env', 'Use local dev-environment').command('export', 'Export data
|
|
25
|
+
cmd.command('logout', 'Logout from your current session').command('app', 'List and modify your VIP applications').command('backup', 'Generate a backup for VIP applications').command('cache', 'Manage page cache for your VIP applications').command('config', 'Set configuration for your VIP applications').command('dev-env', 'Use local dev-environment').command('export', 'Export a copy of data associated with an environment.').command('import', 'Import media or SQL files into your VIP applications').command('logs', 'Get logs from your VIP applications').command('search-replace', 'Perform search and replace tasks on files').command('slowlogs', 'Get slowlogs from your VIP applications').command('db', 'Run operations on your VIP application database').command('sync', 'Sync production to a development environment').command('whoami', 'Display details about the currently logged-in user').command('validate', 'Validate your VIP application and environment').command('wp', 'Run WP CLI commands against an environment');
|
|
26
26
|
cmd.argv(process.argv);
|
|
27
27
|
};
|
|
28
28
|
|
|
@@ -162,7 +162,7 @@ class BackupDBCommand {
|
|
|
162
162
|
const errMessage = `A new database backup was not generated because a recently generated backup already exists.
|
|
163
163
|
If you would like to run the same command, you can retry in ${(0, _format.formatDuration)(new Date(), new Date(retryAfter))}
|
|
164
164
|
Alternatively, you can export the latest existing database backup by running: ${_chalk.default.green('vip @app.env export sql')}, right away.
|
|
165
|
-
Learn more about limitations around generating database backups: https://docs.wpvip.com/
|
|
165
|
+
Learn more about limitations around generating database backups: https://docs.wpvip.com/databases/backups/limitations/
|
|
166
166
|
`;
|
|
167
167
|
exit.withError(errMessage);
|
|
168
168
|
}
|
|
@@ -314,7 +314,7 @@ class ExportSQLCommand {
|
|
|
314
314
|
const cmd = new _backupDb.BackupDBCommand(this.app, this.env);
|
|
315
315
|
let noticeMessage = `\n${_chalk.default.yellow('NOTICE: ')}`;
|
|
316
316
|
noticeMessage += 'If a recent database backup does not exist, a new one will be generated for this environment. ';
|
|
317
|
-
noticeMessage += 'Learn more about this: https://docs.wpvip.com/
|
|
317
|
+
noticeMessage += 'Learn more about this: https://docs.wpvip.com/databases/backups/download-a-full-database-backup/ \n';
|
|
318
318
|
this.log(noticeMessage);
|
|
319
319
|
await cmd.run(false);
|
|
320
320
|
}
|
|
@@ -390,7 +390,7 @@ function validateLocalPath(component, providedPath) {
|
|
|
390
390
|
}
|
|
391
391
|
if (missingFiles.length > 0) {
|
|
392
392
|
// eslint-disable-next-line max-len
|
|
393
|
-
const message = `Provided path "${providedPath}" is missing following files/folders: ${missingFiles.join(', ')}. Learn more: https://docs.wpvip.com/
|
|
393
|
+
const message = `Provided path "${providedPath}" is missing following files/folders: ${missingFiles.join(', ')}. Learn more: https://docs.wpvip.com/wordpress-skeleton/`;
|
|
394
394
|
return {
|
|
395
395
|
result: false,
|
|
396
396
|
message
|
|
@@ -247,7 +247,7 @@ async function getBridgeNetwork(lando) {
|
|
|
247
247
|
}
|
|
248
248
|
async function cleanUpLandoProxy(lando) {
|
|
249
249
|
const network = await getBridgeNetwork(lando);
|
|
250
|
-
if (network?.Containers &&
|
|
250
|
+
if (network?.Containers && Object.keys(network.Containers).length === 1) {
|
|
251
251
|
const proxy = lando.engine.docker.getContainer(lando.config.proxyContainer);
|
|
252
252
|
try {
|
|
253
253
|
await proxy.remove({
|
|
@@ -329,7 +329,7 @@ async function landoInfo(lando, instancePath, options = {}) {
|
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
// Add documentation link
|
|
332
|
-
appInfo.Documentation = 'https://docs.wpvip.com/
|
|
332
|
+
appInfo.Documentation = 'https://docs.wpvip.com/vip-local-development-environment/';
|
|
333
333
|
return appInfo;
|
|
334
334
|
} finally {
|
|
335
335
|
const duration = new Date().getTime() - started.getTime();
|
|
@@ -144,7 +144,8 @@ The server said:
|
|
|
144
144
|
async function importSqlCheckStatus({
|
|
145
145
|
app,
|
|
146
146
|
env,
|
|
147
|
-
progressTracker
|
|
147
|
+
progressTracker,
|
|
148
|
+
shouldReturnMissingJobImmediately = false // we want to return fast only if we're checking the status via `vip import job status`
|
|
148
149
|
}) {
|
|
149
150
|
// Stop printing so we can pass our callback
|
|
150
151
|
progressTracker.stopPrinting();
|
|
@@ -210,18 +211,19 @@ ${maybeExitPrompt}
|
|
|
210
211
|
importStatus,
|
|
211
212
|
launched
|
|
212
213
|
} = status;
|
|
214
|
+
// we want the "vip import job status" command to fail fast if we have no import job.
|
|
215
|
+
const isMissingImportJobAndShouldReturnFast = !status.importJob && shouldReturnMissingJobImmediately;
|
|
213
216
|
let {
|
|
214
217
|
importJob
|
|
215
218
|
} = status;
|
|
216
219
|
let jobStatus;
|
|
217
220
|
let jobSteps = [];
|
|
218
|
-
if (env.isK8sResident) {
|
|
221
|
+
if (env.isK8sResident && !isMissingImportJobAndShouldReturnFast) {
|
|
219
222
|
// in the future the API may provide this in k8s jobs so account for that.
|
|
220
223
|
// Until then we need to create the importJob from the status object.
|
|
221
224
|
if (!importJob) {
|
|
222
225
|
importJob = {};
|
|
223
226
|
const statusSteps = importStatus?.progress?.steps;
|
|
224
|
-
|
|
225
227
|
// if the progress meta isn't filled out yet, wait until it is.
|
|
226
228
|
if (!statusSteps) {
|
|
227
229
|
return setTimeout(() => {
|
package/docs/ARCHITECTURE.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Basic functionality
|
|
4
4
|
|
|
5
|
-
This is a CLI for interacting with and managing your [WordPress VIP applications](https://docs.wpvip.com/
|
|
5
|
+
This is a CLI for interacting with and managing your [WordPress VIP applications](https://docs.wpvip.com/vip-cli/). Data is inputted and outputted via terminal to the [API offered by WordPress VIP](#communicating-with-wpvip-api) and to/from local filesystem.
|
|
6
6
|
|
|
7
7
|
For configuration, a few [environmental variables](SETUP.md#environmental-variables) are used and some [configuration files](SETUP.md#configuration-files) as well. No [database](#database) is required.
|
|
8
8
|
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 2.39.0
|
|
4
|
+
|
|
5
|
+
* Updated Docs URLs to current permalinks by @yolih in https://github.com/Automattic/vip-cli/pull/1742
|
|
6
|
+
* Updated the export command group according to VIP-CLI style guide by @yolih in https://github.com/Automattic/vip-cli/pull/1741
|
|
7
|
+
* build(deps-dev): bump @types/node from 18.19.26 to 18.19.28 by @dependabot in https://github.com/Automattic/vip-cli/pull/1747
|
|
8
|
+
* ci: add dependency review workflow by @sjinks in https://github.com/Automattic/vip-cli/pull/1750
|
|
9
|
+
* test: fix E2E tests for composer v2 by @sjinks in https://github.com/Automattic/vip-cli/pull/1752
|
|
10
|
+
* ci: install docker-compose by @sjinks in https://github.com/Automattic/vip-cli/pull/1751
|
|
11
|
+
* build(deps): bump cli-table3 from 0.6.3 to 0.6.4 by @dependabot in https://github.com/Automattic/vip-cli/pull/1739
|
|
12
|
+
* Make "importSQLCheckStatus" return immediately when called from the `vip import sql status` command and no import is running by @andrea-sdl in https://github.com/Automattic/vip-cli/pull/1722
|
|
13
|
+
* fix(dev-env): regression: stop proxy when there are no running envs by @sjinks in https://github.com/Automattic/vip-cli/pull/1738
|
|
14
|
+
* Fixes text so that it doesn't reference "the above tables" when tables are not displayed by @brunobasto in https://github.com/Automattic/vip-cli/pull/1731
|
|
15
|
+
* build(deps): bump fetch-retry from 5.0.6 to 6.0.0 by @dependabot in https://github.com/Automattic/vip-cli/pull/1730
|
|
16
|
+
* build(deps): bump ini from 4.1.1 to 4.1.2 by @dependabot in https://github.com/Automattic/vip-cli/pull/1717
|
|
17
|
+
* chore(deps): update lando by @sjinks in https://github.com/Automattic/vip-cli/pull/1753
|
|
18
|
+
|
|
19
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/2.38.3...2.39.0
|
|
20
|
+
|
|
21
|
+
### 2.38.3
|
|
22
|
+
|
|
23
|
+
* Fix triggering publish docs workflow on tag push by @seanlanglands in https://github.com/Automattic/vip-cli/pull/1716
|
|
24
|
+
* build(deps-dev): bump nock from 13.5.3 to 13.5.4 by @dependabot in https://github.com/Automattic/vip-cli/pull/1708
|
|
25
|
+
* build(deps-dev): bump @types/node from 18.19.18 to 18.19.21 by @dependabot in https://github.com/Automattic/vip-cli/pull/1715
|
|
26
|
+
* build(deps-dev): bump the babel group with 2 updates by @dependabot in https://github.com/Automattic/vip-cli/pull/1709
|
|
27
|
+
* vip app deploy - Allow passing in a deploy key with env variable by @rebeccahum in https://github.com/Automattic/vip-cli/pull/1718
|
|
28
|
+
* build(deps-dev): bump typescript from 5.3.3 to 5.4.2 by @dependabot in https://github.com/Automattic/vip-cli/pull/1721
|
|
29
|
+
* build(deps-dev): bump @types/node from 18.19.21 to 18.19.22 by @dependabot in https://github.com/Automattic/vip-cli/pull/1720
|
|
30
|
+
* build(deps-dev): bump @types/dockerode from 3.3.24 to 3.3.26 by @dependabot in https://github.com/Automattic/vip-cli/pull/1724
|
|
31
|
+
* build(deps): bump open from 10.0.4 to 10.1.0 by @dependabot in https://github.com/Automattic/vip-cli/pull/1725
|
|
32
|
+
* Allows user to continue even when the answer doesn't match the expected letter casing by @brunobasto in https://github.com/Automattic/vip-cli/pull/1632
|
|
33
|
+
* build(deps-dev): bump the babel group with 4 updates by @dependabot in https://github.com/Automattic/vip-cli/pull/1734
|
|
34
|
+
* build(deps-dev): bump @types/node from 18.19.22 to 18.19.26 by @dependabot in https://github.com/Automattic/vip-cli/pull/1733
|
|
35
|
+
* build(deps-dev): bump typescript from 5.4.2 to 5.4.3 by @dependabot in https://github.com/Automattic/vip-cli/pull/1735
|
|
36
|
+
* build(deps): bump socket.io-client from 4.7.4 to 4.7.5 by @dependabot in https://github.com/Automattic/vip-cli/pull/1729
|
|
37
|
+
* Update SQL import prompt message by @iamchughmayank in https://github.com/Automattic/vip-cli/pull/1743
|
|
38
|
+
|
|
39
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/2.38.2...2.38.3
|
|
40
|
+
|
|
3
41
|
### 2.38.2
|
|
4
42
|
|
|
5
43
|
* New develop release: 2.38.2-dev.0 by @github-actions in https://github.com/Automattic/vip-cli/pull/1697
|
package/docs/SETUP.md
CHANGED
|
@@ -25,7 +25,7 @@ Then, launch the command and follow the prompts:
|
|
|
25
25
|
vip
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
If you need more information, check out our [VIP-CLI documentation](https://docs.wpvip.com/
|
|
28
|
+
If you need more information, check out our [VIP-CLI documentation](https://docs.wpvip.com/vip-cli/).
|
|
29
29
|
|
|
30
30
|
### Installation for developers
|
|
31
31
|
|
|
@@ -73,7 +73,7 @@ To start the software locally, run:
|
|
|
73
73
|
vip
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
If you need more information, check out our [VIP-CLI documentation](https://docs.wpvip.com/
|
|
76
|
+
If you need more information, check out our [VIP-CLI documentation](https://docs.wpvip.com/vip-cli/).
|
|
77
77
|
|
|
78
78
|
### Analytics
|
|
79
79
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.39.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.39.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"debug": "4.3.4",
|
|
25
25
|
"ejs": "^3.1.8",
|
|
26
26
|
"enquirer": "2.4.1",
|
|
27
|
-
"fetch-retry": "^
|
|
27
|
+
"fetch-retry": "^6.0.0",
|
|
28
28
|
"graphql": "15.5.1",
|
|
29
29
|
"graphql-tag": "2.12.6",
|
|
30
30
|
"https-proxy-agent": "^5.0.1",
|
|
31
|
-
"ini": "4.1.
|
|
31
|
+
"ini": "4.1.2",
|
|
32
32
|
"js-yaml": "^4.1.0",
|
|
33
33
|
"jwt-decode": "4.0.0",
|
|
34
|
-
"lando": "github:automattic/lando-cli.git#
|
|
34
|
+
"lando": "github:automattic/lando-cli.git#1c45a75",
|
|
35
35
|
"node-fetch": "^2.6.1",
|
|
36
36
|
"open": "^10.0.0",
|
|
37
37
|
"proxy-from-env": "^1.1.0",
|
|
@@ -3839,9 +3839,9 @@
|
|
|
3839
3839
|
"dev": true
|
|
3840
3840
|
},
|
|
3841
3841
|
"node_modules/@types/node": {
|
|
3842
|
-
"version": "18.19.
|
|
3843
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.
|
|
3844
|
-
"integrity": "sha512
|
|
3842
|
+
"version": "18.19.28",
|
|
3843
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.28.tgz",
|
|
3844
|
+
"integrity": "sha512-J5cOGD9n4x3YGgVuaND6khm5x07MMdAKkRyXnjVR6KFhLMNh2yONGiP7Z+4+tBOt5mK+GvDTiacTOVGGpqiecw==",
|
|
3845
3845
|
"dependencies": {
|
|
3846
3846
|
"undici-types": "~5.26.4"
|
|
3847
3847
|
}
|
|
@@ -5311,14 +5311,6 @@
|
|
|
5311
5311
|
"node": ">=6"
|
|
5312
5312
|
}
|
|
5313
5313
|
},
|
|
5314
|
-
"node_modules/clean-stacktrace": {
|
|
5315
|
-
"version": "1.1.0",
|
|
5316
|
-
"resolved": "https://registry.npmjs.org/clean-stacktrace/-/clean-stacktrace-1.1.0.tgz",
|
|
5317
|
-
"integrity": "sha512-S8H9ouQL4PYkf/HM7498vxcAIMo9RgUf4rEuP9HrG6+FeRQ+dHV28c8iKGfmDSq/UQU0fnFiTDV/XCyfQz+U8g==",
|
|
5318
|
-
"dependencies": {
|
|
5319
|
-
"stack-utils-node-internals": "^1.0.1"
|
|
5320
|
-
}
|
|
5321
|
-
},
|
|
5322
5314
|
"node_modules/cli-columns": {
|
|
5323
5315
|
"version": "4.0.0",
|
|
5324
5316
|
"resolved": "https://registry.npmjs.org/cli-columns/-/cli-columns-4.0.0.tgz",
|
|
@@ -5383,9 +5375,9 @@
|
|
|
5383
5375
|
}
|
|
5384
5376
|
},
|
|
5385
5377
|
"node_modules/cli-table3": {
|
|
5386
|
-
"version": "0.6.
|
|
5387
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.
|
|
5388
|
-
"integrity": "sha512-
|
|
5378
|
+
"version": "0.6.4",
|
|
5379
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz",
|
|
5380
|
+
"integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==",
|
|
5389
5381
|
"dependencies": {
|
|
5390
5382
|
"string-width": "^4.2.0"
|
|
5391
5383
|
},
|
|
@@ -5759,11 +5751,6 @@
|
|
|
5759
5751
|
"integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
|
|
5760
5752
|
"dev": true
|
|
5761
5753
|
},
|
|
5762
|
-
"node_modules/dayjs": {
|
|
5763
|
-
"version": "1.11.7",
|
|
5764
|
-
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz",
|
|
5765
|
-
"integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ=="
|
|
5766
|
-
},
|
|
5767
5754
|
"node_modules/debug": {
|
|
5768
5755
|
"version": "4.3.4",
|
|
5769
5756
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
|
|
@@ -7275,9 +7262,9 @@
|
|
|
7275
7262
|
}
|
|
7276
7263
|
},
|
|
7277
7264
|
"node_modules/fetch-retry": {
|
|
7278
|
-
"version": "
|
|
7279
|
-
"resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-
|
|
7280
|
-
"integrity": "sha512-
|
|
7265
|
+
"version": "6.0.0",
|
|
7266
|
+
"resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-6.0.0.tgz",
|
|
7267
|
+
"integrity": "sha512-BUFj1aMubgib37I3v4q78fYo63Po7t4HUPTpQ6/QE6yK6cIQrP+W43FYToeTEyg5m2Y7eFUtijUuAv/PDlWuag=="
|
|
7281
7268
|
},
|
|
7282
7269
|
"node_modules/figlet": {
|
|
7283
7270
|
"version": "1.5.2",
|
|
@@ -7406,9 +7393,9 @@
|
|
|
7406
7393
|
"dev": true
|
|
7407
7394
|
},
|
|
7408
7395
|
"node_modules/follow-redirects": {
|
|
7409
|
-
"version": "1.15.
|
|
7410
|
-
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.
|
|
7411
|
-
"integrity": "sha512-
|
|
7396
|
+
"version": "1.15.6",
|
|
7397
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
|
|
7398
|
+
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
|
|
7412
7399
|
"funding": [
|
|
7413
7400
|
{
|
|
7414
7401
|
"type": "individual",
|
|
@@ -8110,9 +8097,9 @@
|
|
|
8110
8097
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
8111
8098
|
},
|
|
8112
8099
|
"node_modules/ini": {
|
|
8113
|
-
"version": "4.1.
|
|
8114
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.
|
|
8115
|
-
"integrity": "sha512-
|
|
8100
|
+
"version": "4.1.2",
|
|
8101
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz",
|
|
8102
|
+
"integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==",
|
|
8116
8103
|
"engines": {
|
|
8117
8104
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
8118
8105
|
}
|
|
@@ -8291,9 +8278,9 @@
|
|
|
8291
8278
|
}
|
|
8292
8279
|
},
|
|
8293
8280
|
"node_modules/ip": {
|
|
8294
|
-
"version": "1.1.
|
|
8295
|
-
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.
|
|
8296
|
-
"integrity": "sha512-
|
|
8281
|
+
"version": "1.1.9",
|
|
8282
|
+
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz",
|
|
8283
|
+
"integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ=="
|
|
8297
8284
|
},
|
|
8298
8285
|
"node_modules/is-arguments": {
|
|
8299
8286
|
"version": "1.1.1",
|
|
@@ -9939,23 +9926,20 @@
|
|
|
9939
9926
|
"node_modules/lando": {
|
|
9940
9927
|
"name": "@lando/cli",
|
|
9941
9928
|
"version": "3.6.5",
|
|
9942
|
-
"resolved": "git+ssh://git@github.com/automattic/lando-cli.git#
|
|
9943
|
-
"license": "GPL-3.0",
|
|
9929
|
+
"resolved": "git+ssh://git@github.com/automattic/lando-cli.git#1c45a75a3ca921c145f9b927ad862d0f224b8537",
|
|
9944
9930
|
"dependencies": {
|
|
9945
9931
|
"@lando/compose": "1.0.0",
|
|
9946
9932
|
"@lando/mailhog": "0.8.0",
|
|
9947
9933
|
"@lando/phpmyadmin": "0.5.0",
|
|
9948
9934
|
"axios": "^1.6.0",
|
|
9949
9935
|
"bluebird": "^3.4.1",
|
|
9950
|
-
"
|
|
9951
|
-
"cli-table3": "^0.5.1",
|
|
9936
|
+
"cli-table3": "^0.6.4",
|
|
9952
9937
|
"copy-dir": "^0.4.0",
|
|
9953
|
-
"dayjs": "^1.11.7",
|
|
9954
9938
|
"dockerode": "^4.0.0",
|
|
9955
9939
|
"glob": "^7.1.3",
|
|
9956
9940
|
"inquirer": "^6.2.1",
|
|
9957
9941
|
"inquirer-autocomplete-prompt": "^1.0.1",
|
|
9958
|
-
"ip": "^1.1.
|
|
9942
|
+
"ip": "^1.1.9",
|
|
9959
9943
|
"js-yaml": "^4.1.0",
|
|
9960
9944
|
"jsonfile": "^2.4.0",
|
|
9961
9945
|
"lodash": "^4.17.21",
|
|
@@ -9987,69 +9971,6 @@
|
|
|
9987
9971
|
"node": ">=8"
|
|
9988
9972
|
}
|
|
9989
9973
|
},
|
|
9990
|
-
"node_modules/lando/node_modules/cli-table3": {
|
|
9991
|
-
"version": "0.5.1",
|
|
9992
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
|
|
9993
|
-
"integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
|
|
9994
|
-
"dependencies": {
|
|
9995
|
-
"object-assign": "^4.1.0",
|
|
9996
|
-
"string-width": "^2.1.1"
|
|
9997
|
-
},
|
|
9998
|
-
"engines": {
|
|
9999
|
-
"node": ">=6"
|
|
10000
|
-
},
|
|
10001
|
-
"optionalDependencies": {
|
|
10002
|
-
"colors": "^1.1.2"
|
|
10003
|
-
}
|
|
10004
|
-
},
|
|
10005
|
-
"node_modules/lando/node_modules/cli-table3/node_modules/ansi-regex": {
|
|
10006
|
-
"version": "3.0.1",
|
|
10007
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
10008
|
-
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
|
|
10009
|
-
"engines": {
|
|
10010
|
-
"node": ">=4"
|
|
10011
|
-
}
|
|
10012
|
-
},
|
|
10013
|
-
"node_modules/lando/node_modules/cli-table3/node_modules/is-fullwidth-code-point": {
|
|
10014
|
-
"version": "2.0.0",
|
|
10015
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
|
10016
|
-
"integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
|
|
10017
|
-
"engines": {
|
|
10018
|
-
"node": ">=4"
|
|
10019
|
-
}
|
|
10020
|
-
},
|
|
10021
|
-
"node_modules/lando/node_modules/cli-table3/node_modules/string-width": {
|
|
10022
|
-
"version": "2.1.1",
|
|
10023
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
|
|
10024
|
-
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
|
|
10025
|
-
"dependencies": {
|
|
10026
|
-
"is-fullwidth-code-point": "^2.0.0",
|
|
10027
|
-
"strip-ansi": "^4.0.0"
|
|
10028
|
-
},
|
|
10029
|
-
"engines": {
|
|
10030
|
-
"node": ">=4"
|
|
10031
|
-
}
|
|
10032
|
-
},
|
|
10033
|
-
"node_modules/lando/node_modules/cli-table3/node_modules/strip-ansi": {
|
|
10034
|
-
"version": "4.0.0",
|
|
10035
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
|
|
10036
|
-
"integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
|
|
10037
|
-
"dependencies": {
|
|
10038
|
-
"ansi-regex": "^3.0.0"
|
|
10039
|
-
},
|
|
10040
|
-
"engines": {
|
|
10041
|
-
"node": ">=4"
|
|
10042
|
-
}
|
|
10043
|
-
},
|
|
10044
|
-
"node_modules/lando/node_modules/colors": {
|
|
10045
|
-
"version": "1.4.0",
|
|
10046
|
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
10047
|
-
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
10048
|
-
"optional": true,
|
|
10049
|
-
"engines": {
|
|
10050
|
-
"node": ">=0.1.90"
|
|
10051
|
-
}
|
|
10052
|
-
},
|
|
10053
9974
|
"node_modules/lando/node_modules/is-fullwidth-code-point": {
|
|
10054
9975
|
"version": "3.0.0",
|
|
10055
9976
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
@@ -12077,11 +11998,6 @@
|
|
|
12077
11998
|
"node": ">=10"
|
|
12078
11999
|
}
|
|
12079
12000
|
},
|
|
12080
|
-
"node_modules/stack-utils-node-internals": {
|
|
12081
|
-
"version": "1.0.1",
|
|
12082
|
-
"resolved": "https://registry.npmjs.org/stack-utils-node-internals/-/stack-utils-node-internals-1.0.1.tgz",
|
|
12083
|
-
"integrity": "sha512-lMuPPh5lj8Nj+vGsxnrp5LRamN5SF++yJE+skeXz9Chy/Uw93BzxzrnQ/8BLOIKKVsJ44bleARrfSUh3ZGdMZw=="
|
|
12084
|
-
},
|
|
12085
12001
|
"node_modules/stack-utils/node_modules/escape-string-regexp": {
|
|
12086
12002
|
"version": "2.0.0",
|
|
12087
12003
|
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
|
|
@@ -16343,9 +16259,9 @@
|
|
|
16343
16259
|
"dev": true
|
|
16344
16260
|
},
|
|
16345
16261
|
"@types/node": {
|
|
16346
|
-
"version": "18.19.
|
|
16347
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.
|
|
16348
|
-
"integrity": "sha512
|
|
16262
|
+
"version": "18.19.28",
|
|
16263
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.28.tgz",
|
|
16264
|
+
"integrity": "sha512-J5cOGD9n4x3YGgVuaND6khm5x07MMdAKkRyXnjVR6KFhLMNh2yONGiP7Z+4+tBOt5mK+GvDTiacTOVGGpqiecw==",
|
|
16349
16265
|
"requires": {
|
|
16350
16266
|
"undici-types": "~5.26.4"
|
|
16351
16267
|
}
|
|
@@ -17391,14 +17307,6 @@
|
|
|
17391
17307
|
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
|
|
17392
17308
|
"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
|
|
17393
17309
|
},
|
|
17394
|
-
"clean-stacktrace": {
|
|
17395
|
-
"version": "1.1.0",
|
|
17396
|
-
"resolved": "https://registry.npmjs.org/clean-stacktrace/-/clean-stacktrace-1.1.0.tgz",
|
|
17397
|
-
"integrity": "sha512-S8H9ouQL4PYkf/HM7498vxcAIMo9RgUf4rEuP9HrG6+FeRQ+dHV28c8iKGfmDSq/UQU0fnFiTDV/XCyfQz+U8g==",
|
|
17398
|
-
"requires": {
|
|
17399
|
-
"stack-utils-node-internals": "^1.0.1"
|
|
17400
|
-
}
|
|
17401
|
-
},
|
|
17402
17310
|
"cli-columns": {
|
|
17403
17311
|
"version": "4.0.0",
|
|
17404
17312
|
"resolved": "https://registry.npmjs.org/cli-columns/-/cli-columns-4.0.0.tgz",
|
|
@@ -17447,9 +17355,9 @@
|
|
|
17447
17355
|
}
|
|
17448
17356
|
},
|
|
17449
17357
|
"cli-table3": {
|
|
17450
|
-
"version": "0.6.
|
|
17451
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.
|
|
17452
|
-
"integrity": "sha512-
|
|
17358
|
+
"version": "0.6.4",
|
|
17359
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz",
|
|
17360
|
+
"integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==",
|
|
17453
17361
|
"requires": {
|
|
17454
17362
|
"@colors/colors": "1.5.0",
|
|
17455
17363
|
"string-width": "^4.2.0"
|
|
@@ -17742,11 +17650,6 @@
|
|
|
17742
17650
|
"integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
|
|
17743
17651
|
"dev": true
|
|
17744
17652
|
},
|
|
17745
|
-
"dayjs": {
|
|
17746
|
-
"version": "1.11.7",
|
|
17747
|
-
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz",
|
|
17748
|
-
"integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ=="
|
|
17749
|
-
},
|
|
17750
17653
|
"debug": {
|
|
17751
17654
|
"version": "4.3.4",
|
|
17752
17655
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
|
|
@@ -18844,9 +18747,9 @@
|
|
|
18844
18747
|
}
|
|
18845
18748
|
},
|
|
18846
18749
|
"fetch-retry": {
|
|
18847
|
-
"version": "
|
|
18848
|
-
"resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-
|
|
18849
|
-
"integrity": "sha512-
|
|
18750
|
+
"version": "6.0.0",
|
|
18751
|
+
"resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-6.0.0.tgz",
|
|
18752
|
+
"integrity": "sha512-BUFj1aMubgib37I3v4q78fYo63Po7t4HUPTpQ6/QE6yK6cIQrP+W43FYToeTEyg5m2Y7eFUtijUuAv/PDlWuag=="
|
|
18850
18753
|
},
|
|
18851
18754
|
"figlet": {
|
|
18852
18755
|
"version": "1.5.2",
|
|
@@ -18949,9 +18852,9 @@
|
|
|
18949
18852
|
"dev": true
|
|
18950
18853
|
},
|
|
18951
18854
|
"follow-redirects": {
|
|
18952
|
-
"version": "1.15.
|
|
18953
|
-
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.
|
|
18954
|
-
"integrity": "sha512-
|
|
18855
|
+
"version": "1.15.6",
|
|
18856
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
|
|
18857
|
+
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA=="
|
|
18955
18858
|
},
|
|
18956
18859
|
"for-each": {
|
|
18957
18860
|
"version": "0.3.3",
|
|
@@ -19435,9 +19338,9 @@
|
|
|
19435
19338
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
19436
19339
|
},
|
|
19437
19340
|
"ini": {
|
|
19438
|
-
"version": "4.1.
|
|
19439
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.
|
|
19440
|
-
"integrity": "sha512-
|
|
19341
|
+
"version": "4.1.2",
|
|
19342
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz",
|
|
19343
|
+
"integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw=="
|
|
19441
19344
|
},
|
|
19442
19345
|
"inquirer": {
|
|
19443
19346
|
"version": "6.5.2",
|
|
@@ -19567,9 +19470,9 @@
|
|
|
19567
19470
|
"integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="
|
|
19568
19471
|
},
|
|
19569
19472
|
"ip": {
|
|
19570
|
-
"version": "1.1.
|
|
19571
|
-
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.
|
|
19572
|
-
"integrity": "sha512-
|
|
19473
|
+
"version": "1.1.9",
|
|
19474
|
+
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz",
|
|
19475
|
+
"integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ=="
|
|
19573
19476
|
},
|
|
19574
19477
|
"is-arguments": {
|
|
19575
19478
|
"version": "1.1.1",
|
|
@@ -20752,23 +20655,21 @@
|
|
|
20752
20655
|
"dev": true
|
|
20753
20656
|
},
|
|
20754
20657
|
"lando": {
|
|
20755
|
-
"version": "git+ssh://git@github.com/automattic/lando-cli.git#
|
|
20756
|
-
"from": "lando@github:automattic/lando-cli.git#
|
|
20658
|
+
"version": "git+ssh://git@github.com/automattic/lando-cli.git#1c45a75a3ca921c145f9b927ad862d0f224b8537",
|
|
20659
|
+
"from": "lando@github:automattic/lando-cli.git#1c45a75",
|
|
20757
20660
|
"requires": {
|
|
20758
20661
|
"@lando/compose": "1.0.0",
|
|
20759
20662
|
"@lando/mailhog": "0.8.0",
|
|
20760
20663
|
"@lando/phpmyadmin": "0.5.0",
|
|
20761
20664
|
"axios": "^1.6.0",
|
|
20762
20665
|
"bluebird": "^3.4.1",
|
|
20763
|
-
"
|
|
20764
|
-
"cli-table3": "^0.5.1",
|
|
20666
|
+
"cli-table3": "^0.6.4",
|
|
20765
20667
|
"copy-dir": "^0.4.0",
|
|
20766
|
-
"dayjs": "^1.11.7",
|
|
20767
20668
|
"dockerode": "^4.0.0",
|
|
20768
20669
|
"glob": "^7.1.3",
|
|
20769
20670
|
"inquirer": "^6.2.1",
|
|
20770
20671
|
"inquirer-autocomplete-prompt": "^1.0.1",
|
|
20771
|
-
"ip": "^1.1.
|
|
20672
|
+
"ip": "^1.1.9",
|
|
20772
20673
|
"js-yaml": "^4.1.0",
|
|
20773
20674
|
"jsonfile": "^2.4.0",
|
|
20774
20675
|
"lodash": "^4.17.21",
|
|
@@ -20791,51 +20692,6 @@
|
|
|
20791
20692
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
20792
20693
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
|
|
20793
20694
|
},
|
|
20794
|
-
"cli-table3": {
|
|
20795
|
-
"version": "0.5.1",
|
|
20796
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
|
|
20797
|
-
"integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
|
|
20798
|
-
"requires": {
|
|
20799
|
-
"colors": "^1.1.2",
|
|
20800
|
-
"object-assign": "^4.1.0",
|
|
20801
|
-
"string-width": "^2.1.1"
|
|
20802
|
-
},
|
|
20803
|
-
"dependencies": {
|
|
20804
|
-
"ansi-regex": {
|
|
20805
|
-
"version": "3.0.1",
|
|
20806
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
20807
|
-
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
|
|
20808
|
-
},
|
|
20809
|
-
"is-fullwidth-code-point": {
|
|
20810
|
-
"version": "2.0.0",
|
|
20811
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
|
20812
|
-
"integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
|
|
20813
|
-
},
|
|
20814
|
-
"string-width": {
|
|
20815
|
-
"version": "2.1.1",
|
|
20816
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
|
|
20817
|
-
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
|
|
20818
|
-
"requires": {
|
|
20819
|
-
"is-fullwidth-code-point": "^2.0.0",
|
|
20820
|
-
"strip-ansi": "^4.0.0"
|
|
20821
|
-
}
|
|
20822
|
-
},
|
|
20823
|
-
"strip-ansi": {
|
|
20824
|
-
"version": "4.0.0",
|
|
20825
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
|
|
20826
|
-
"integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
|
|
20827
|
-
"requires": {
|
|
20828
|
-
"ansi-regex": "^3.0.0"
|
|
20829
|
-
}
|
|
20830
|
-
}
|
|
20831
|
-
}
|
|
20832
|
-
},
|
|
20833
|
-
"colors": {
|
|
20834
|
-
"version": "1.4.0",
|
|
20835
|
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
20836
|
-
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
20837
|
-
"optional": true
|
|
20838
|
-
},
|
|
20839
20695
|
"is-fullwidth-code-point": {
|
|
20840
20696
|
"version": "3.0.0",
|
|
20841
20697
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
@@ -22315,11 +22171,6 @@
|
|
|
22315
22171
|
}
|
|
22316
22172
|
}
|
|
22317
22173
|
},
|
|
22318
|
-
"stack-utils-node-internals": {
|
|
22319
|
-
"version": "1.0.1",
|
|
22320
|
-
"resolved": "https://registry.npmjs.org/stack-utils-node-internals/-/stack-utils-node-internals-1.0.1.tgz",
|
|
22321
|
-
"integrity": "sha512-lMuPPh5lj8Nj+vGsxnrp5LRamN5SF++yJE+skeXz9Chy/Uw93BzxzrnQ/8BLOIKKVsJ44bleARrfSUh3ZGdMZw=="
|
|
22322
|
-
},
|
|
22323
22174
|
"stop-iteration-iterator": {
|
|
22324
22175
|
"version": "1.0.0",
|
|
22325
22176
|
"resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.39.0",
|
|
4
4
|
"description": "The VIP Javascript library & CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -153,14 +153,14 @@
|
|
|
153
153
|
"debug": "4.3.4",
|
|
154
154
|
"ejs": "^3.1.8",
|
|
155
155
|
"enquirer": "2.4.1",
|
|
156
|
-
"fetch-retry": "^
|
|
156
|
+
"fetch-retry": "^6.0.0",
|
|
157
157
|
"graphql": "15.5.1",
|
|
158
158
|
"graphql-tag": "2.12.6",
|
|
159
159
|
"https-proxy-agent": "^5.0.1",
|
|
160
|
-
"ini": "4.1.
|
|
160
|
+
"ini": "4.1.2",
|
|
161
161
|
"js-yaml": "^4.1.0",
|
|
162
162
|
"jwt-decode": "4.0.0",
|
|
163
|
-
"lando": "github:automattic/lando-cli.git#
|
|
163
|
+
"lando": "github:automattic/lando-cli.git#1c45a75",
|
|
164
164
|
"node-fetch": "^2.6.1",
|
|
165
165
|
"open": "^10.0.0",
|
|
166
166
|
"proxy-from-env": "^1.1.0",
|