@automattic/vip 3.10.0 → 3.12.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/assets/dev-env.lando.template.yml.ejs +2 -2
- package/dist/bin/vip-dev-env-update.js +2 -1
- package/dist/bin/vip-import-sql.js +5 -3
- package/dist/bin/vip-search-replace.js +5 -0
- package/dist/commands/dev-env-import-sql.js +3 -0
- package/dist/commands/dev-env-sync-sql.js +7 -7
- package/dist/lib/cli/command.js +6 -0
- package/dist/lib/constants/dev-environment.js +1 -1
- package/dist/lib/dev-environment/dev-environment-cli.js +2 -1
- package/dist/lib/dev-environment/dev-environment-configuration-file.js +58 -15
- package/dist/lib/dev-environment/dev-environment-core.js +11 -1
- package/dist/lib/dev-environment/dev-environment-database.js +6 -2
- package/docs/CHANGELOG.md +31 -0
- package/npm-shrinkwrap.json +244 -150
- package/package.json +6 -6
|
@@ -184,7 +184,7 @@ services:
|
|
|
184
184
|
- devtools:/dev-tools
|
|
185
185
|
- scripts:/scripts
|
|
186
186
|
initOnly: true
|
|
187
|
-
entrypoint: sh -c '/usr/bin/rsync -
|
|
187
|
+
entrypoint: /bin/sh -c '/usr/bin/rsync -ac --delete --chown=${LANDO_HOST_USER_ID}:${LANDO_HOST_GROUP_ID} /wp/ /shared/; /usr/bin/rsync -ac --chown=${LANDO_HOST_USER_ID}:${LANDO_HOST_GROUP_ID} --delete /dev-tools-orig/ /dev-tools/'
|
|
188
188
|
volumes:
|
|
189
189
|
devtools:
|
|
190
190
|
scripts:
|
|
@@ -194,7 +194,7 @@ services:
|
|
|
194
194
|
type: compose
|
|
195
195
|
services:
|
|
196
196
|
image: ghcr.io/automattic/vip-container-images/mu-plugins:0.1
|
|
197
|
-
command: sh /run.sh
|
|
197
|
+
command: /bin/sh /run.sh
|
|
198
198
|
volumes:
|
|
199
199
|
- mu-plugins:/shared
|
|
200
200
|
- type: volume
|
|
@@ -67,7 +67,8 @@ cmd.argv(process.argv, async (arg, opt) => {
|
|
|
67
67
|
photon: currentInstanceData.photon,
|
|
68
68
|
mediaRedirectDomain: currentInstanceData.mediaRedirectDomain,
|
|
69
69
|
multisite: false,
|
|
70
|
-
title: ''
|
|
70
|
+
title: '',
|
|
71
|
+
cron: currentInstanceData.cron
|
|
71
72
|
};
|
|
72
73
|
const providedOptions = Object.keys(opt).filter(option => option.length > 1) // Filter out single letter aliases
|
|
73
74
|
.filter(option => !['debug', 'help', 'slug'].includes(option)); // Filter out options that are not related to instance configuration
|
|
@@ -340,14 +340,15 @@ void (0, _command.default)({
|
|
|
340
340
|
requiredArgs: 1,
|
|
341
341
|
module: 'import-sql',
|
|
342
342
|
usage
|
|
343
|
-
}).command('status', 'Check the status of a SQL database import currently in progress.').option('skip-validate', 'Do not perform file validation prior to import. If the file contains unsupported entries, the import is likely to fail.').option('search-replace', 'Search for a string in the SQL file and replace it with a new string. Separate the values by a comma only; no spaces (e.g. --search-replace=“from,to”).').option('in-place', 'Overwrite the local input file with the results of the search and replace operation prior to import.').option('output', 'The local file path to save a copy of the results from the search and replace operation when the --search-replace option is passed. Ignored when used with the --in-place option.').examples(examples).argv(process.argv, async (arg, opts) => {
|
|
343
|
+
}).command('status', 'Check the status of a SQL database import currently in progress.').option('skip-validate', 'Do not perform file validation prior to import. If the file contains unsupported entries, the import is likely to fail.').option('search-replace', 'Search for a string in the SQL file and replace it with a new string. Separate the values by a comma only; no spaces (e.g. --search-replace=“from,to”).').option('in-place', 'Overwrite the local input file with the results of the search and replace operation prior to import.').option('output', 'The local file path to save a copy of the results from the search and replace operation when the --search-replace option is passed. Ignored when used with the --in-place option.').option('skip-maintenance-mode', 'Imports data without putting the environment in maintenance mode. Available only for unlaunched environments. Caution: This may cause site instability during import.').examples(examples).argv(process.argv, async (arg, opts) => {
|
|
344
344
|
const {
|
|
345
345
|
app,
|
|
346
346
|
env
|
|
347
347
|
} = opts;
|
|
348
348
|
let {
|
|
349
349
|
skipValidate,
|
|
350
|
-
searchReplace
|
|
350
|
+
searchReplace,
|
|
351
|
+
skipMaintenanceMode
|
|
351
352
|
} = opts;
|
|
352
353
|
const {
|
|
353
354
|
id: envId,
|
|
@@ -495,7 +496,8 @@ Processing the SQL import for your environment...
|
|
|
495
496
|
environmentId: env.id,
|
|
496
497
|
basename,
|
|
497
498
|
md5,
|
|
498
|
-
searchReplace: []
|
|
499
|
+
searchReplace: [],
|
|
500
|
+
skipMaintenanceMode
|
|
499
501
|
};
|
|
500
502
|
if (searchReplace) {
|
|
501
503
|
let pairs = searchReplace;
|
|
@@ -17,6 +17,11 @@ const examples = [
|
|
|
17
17
|
usage: 'vip search-replace file.sql --search-replace="from,to"',
|
|
18
18
|
description: 'Search for every instance of the value "from" in the local input file named "file.sql" and replace it with the value "to".\n' + ' * Results of the operation output to STDOUT by default.'
|
|
19
19
|
},
|
|
20
|
+
// multiple operations
|
|
21
|
+
{
|
|
22
|
+
usage: 'vip search-replace file.sql --search-replace="from,to" --search-replace="before,after"',
|
|
23
|
+
description: 'Perform a search and replace operation for more than one pair of values in the local input file named "file.sql".'
|
|
24
|
+
},
|
|
20
25
|
// `in-place` flag
|
|
21
26
|
{
|
|
22
27
|
usage: 'vip search-replace file.sql --search-replace="from,to" --in-place',
|
|
@@ -92,6 +92,9 @@ class DevEnvImportSQLCommand {
|
|
|
92
92
|
if (searchReplace?.length && !inPlace) {
|
|
93
93
|
_fs.default.unlinkSync(resolvedPath);
|
|
94
94
|
}
|
|
95
|
+
if (this.options.postImportSQL) {
|
|
96
|
+
await (0, _devEnvironmentDatabase.executeQuery)(lando, this.slug, this.options.postImportSQL);
|
|
97
|
+
}
|
|
95
98
|
await (0, _devEnvironmentDatabase.flushCache)(lando, this.slug, this.options.quiet);
|
|
96
99
|
if (undefined === this.options.skipReindex || !(0, _devEnvironmentCli.processBooleanOption)(this.options.skipReindex)) {
|
|
97
100
|
try {
|
|
@@ -205,15 +205,16 @@ class DevEnvSyncSQLCommand {
|
|
|
205
205
|
const importOptions = {
|
|
206
206
|
inPlace: true,
|
|
207
207
|
skipValidate: true,
|
|
208
|
-
quiet: true
|
|
208
|
+
quiet: true,
|
|
209
|
+
postImportSQL: this.fixBlogsTableQuery()
|
|
209
210
|
};
|
|
210
211
|
const importCommand = new _devEnvImportSql.DevEnvImportSQLCommand(this.sqlFile, importOptions, this.slug);
|
|
211
212
|
await importCommand.run();
|
|
212
213
|
}
|
|
213
|
-
|
|
214
|
+
fixBlogsTableQuery() {
|
|
214
215
|
const networkSites = this.env.wpSitesSDS?.nodes;
|
|
215
216
|
if (!networkSites) {
|
|
216
|
-
return;
|
|
217
|
+
return '';
|
|
217
218
|
}
|
|
218
219
|
const prologue = `
|
|
219
220
|
DROP PROCEDURE IF EXISTS vip_sync_update_blog_domains;
|
|
@@ -240,10 +241,10 @@ DROP PROCEDURE vip_sync_update_blog_domains;
|
|
|
240
241
|
const newDomain = primaryDomain !== oldDomain ? `${this.slugifyDomain(oldDomain)}.${this.landoDomain}` : this.landoDomain;
|
|
241
242
|
queries.push(` UPDATE wp_blogs SET domain = '${newDomain}' WHERE blog_id = ${Number(site.blogId)};`);
|
|
242
243
|
}
|
|
243
|
-
if (queries.length) {
|
|
244
|
-
|
|
245
|
-
await _fs.default.promises.appendFile(this.sqlFile, sql);
|
|
244
|
+
if (queries.length === 0) {
|
|
245
|
+
return '';
|
|
246
246
|
}
|
|
247
|
+
return `${prologue}\n${queries.join('\n')}\n${epilogue}`;
|
|
247
248
|
}
|
|
248
249
|
|
|
249
250
|
/**
|
|
@@ -301,7 +302,6 @@ DROP PROCEDURE vip_sync_update_blog_domains;
|
|
|
301
302
|
console.log(` ${domain} -> ${landoDomain}`);
|
|
302
303
|
}
|
|
303
304
|
await this.runSearchReplace();
|
|
304
|
-
await this.fixBlogsTable();
|
|
305
305
|
console.log(`${_chalk.default.green('✓')} Search-replace operation is complete`);
|
|
306
306
|
} catch (err) {
|
|
307
307
|
const error = err;
|
package/dist/lib/cli/command.js
CHANGED
|
@@ -39,8 +39,14 @@ process.on('unhandledRejection', uncaughtError);
|
|
|
39
39
|
let _opts = {};
|
|
40
40
|
let alreadyConfirmedDebugAttachment = false;
|
|
41
41
|
|
|
42
|
+
/**
|
|
43
|
+
* @param {string[]} argv
|
|
44
|
+
*/
|
|
42
45
|
// eslint-disable-next-line complexity
|
|
43
46
|
_args.default.argv = async function (argv, cb) {
|
|
47
|
+
if (process.platform !== 'win32' && argv[1]?.endsWith('.js')) {
|
|
48
|
+
argv[1] = argv[1].slice(0, -3);
|
|
49
|
+
}
|
|
44
50
|
if (process.execArgv.includes('--inspect') && !alreadyConfirmedDebugAttachment) {
|
|
45
51
|
await (0, _enquirer.prompt)({
|
|
46
52
|
type: 'confirm',
|
|
@@ -36,4 +36,4 @@ const DEV_ENVIRONMENT_DEFAULTS = exports.DEV_ENVIRONMENT_DEFAULTS = {
|
|
|
36
36
|
multisite: false,
|
|
37
37
|
phpVersion: Object.keys(DEV_ENVIRONMENT_PHP_VERSIONS)[0]
|
|
38
38
|
};
|
|
39
|
-
const DEV_ENVIRONMENT_VERSION = exports.DEV_ENVIRONMENT_VERSION = '2.2.
|
|
39
|
+
const DEV_ENVIRONMENT_VERSION = exports.DEV_ENVIRONMENT_VERSION = '2.2.3';
|
|
@@ -225,7 +225,8 @@ async function promptForArguments(preselectedOptions, defaultOptions, suppressPr
|
|
|
225
225
|
siteSlug: '',
|
|
226
226
|
mailpit: false,
|
|
227
227
|
photon: false,
|
|
228
|
-
cron: false
|
|
228
|
+
cron: false,
|
|
229
|
+
overrides: preselectedOptions.overrides
|
|
229
230
|
};
|
|
230
231
|
const promptLabels = {
|
|
231
232
|
xdebug: 'XDebug',
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
exports.CONFIGURATION_FILE_NAME = void 0;
|
|
4
|
+
exports.CONFIGURATION_TEMPLATE_FILE_NAME = exports.CONFIGURATION_FILE_NAME = void 0;
|
|
5
5
|
exports.getConfigurationFileOptions = getConfigurationFileOptions;
|
|
6
6
|
exports.mergeConfigurationFileOptions = mergeConfigurationFileOptions;
|
|
7
7
|
var _chalk = _interopRequireDefault(require("chalk"));
|
|
8
8
|
var _debug = _interopRequireDefault(require("debug"));
|
|
9
|
+
var _ejs = _interopRequireDefault(require("ejs"));
|
|
9
10
|
var _jsYaml = _interopRequireWildcard(require("js-yaml"));
|
|
10
11
|
var _promises = require("node:fs/promises");
|
|
11
12
|
var _nodePath = _interopRequireDefault(require("node:path"));
|
|
@@ -16,6 +17,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
16
17
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
17
18
|
const debug = (0, _debug.default)('@automattic/vip:bin:dev-environment');
|
|
18
19
|
const CONFIGURATION_FILE_NAME = exports.CONFIGURATION_FILE_NAME = 'vip-dev-env.yml';
|
|
20
|
+
const CONFIGURATION_TEMPLATE_FILE_NAME = exports.CONFIGURATION_TEMPLATE_FILE_NAME = 'vip-dev-env.yml.ejs';
|
|
19
21
|
async function getConfigurationFileOptions() {
|
|
20
22
|
const configurationFile = await findConfigurationFile();
|
|
21
23
|
if (configurationFile === false) {
|
|
@@ -85,6 +87,7 @@ function sanitizeConfiguration(configuration, configurationFilePath) {
|
|
|
85
87
|
'media-redirect-domain': configuration['media-redirect-domain']?.toString(),
|
|
86
88
|
photon: stringToBooleanIfDefined(configuration.photon),
|
|
87
89
|
cron: stringToBooleanIfDefined(configuration.cron),
|
|
90
|
+
overrides: configuration.overrides?.toString(),
|
|
88
91
|
meta: configurationMeta
|
|
89
92
|
};
|
|
90
93
|
|
|
@@ -96,11 +99,12 @@ function sanitizeConfiguration(configuration, configurationFilePath) {
|
|
|
96
99
|
}
|
|
97
100
|
function adjustRelativePaths(configuration, configurationFilePath) {
|
|
98
101
|
const configurationDirectory = _nodePath.default.resolve(_nodePath.default.dirname(configurationFilePath));
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
const imageOption = ['demo', 'image'];
|
|
103
|
+
for (const option of ['app-code', 'mu-plugins']) {
|
|
104
|
+
const value = configuration[option];
|
|
105
|
+
if (value && !imageOption.includes(value)) {
|
|
106
|
+
configuration[option] = _nodePath.default.isAbsolute(value) ? value : _nodePath.default.join(configurationDirectory, value);
|
|
107
|
+
}
|
|
104
108
|
}
|
|
105
109
|
return configuration;
|
|
106
110
|
}
|
|
@@ -123,7 +127,8 @@ function mergeConfigurationFileOptions(preselectedOptions, configurationFileOpti
|
|
|
123
127
|
mailpit: configurationFileOptions.mailpit,
|
|
124
128
|
mediaRedirectDomain: configurationFileOptions['media-redirect-domain'],
|
|
125
129
|
photon: configurationFileOptions.photon,
|
|
126
|
-
cron: configurationFileOptions.cron
|
|
130
|
+
cron: configurationFileOptions.cron,
|
|
131
|
+
overrides: configurationFileOptions.overrides
|
|
127
132
|
};
|
|
128
133
|
const mergedOptions = {};
|
|
129
134
|
Object.keys(configurationFileInstanceOptions).forEach(key => {
|
|
@@ -141,21 +146,59 @@ async function findConfigurationFile() {
|
|
|
141
146
|
const rootPath = _nodePath.default.parse(currentPath).root;
|
|
142
147
|
let depth = 0;
|
|
143
148
|
const maxDepth = 64;
|
|
144
|
-
const
|
|
149
|
+
const locations = [];
|
|
145
150
|
while (currentPath !== rootPath && depth < maxDepth) {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
+
locations.push({
|
|
152
|
+
dir: _nodePath.default.join(currentPath, _devEnvironmentCli.CONFIGURATION_FOLDER),
|
|
153
|
+
file: _nodePath.default.join(currentPath, _devEnvironmentCli.CONFIGURATION_FOLDER, CONFIGURATION_TEMPLATE_FILE_NAME),
|
|
154
|
+
template: true
|
|
155
|
+
}, {
|
|
156
|
+
dir: _nodePath.default.join(currentPath, _devEnvironmentCli.CONFIGURATION_FOLDER),
|
|
157
|
+
file: _nodePath.default.join(currentPath, _devEnvironmentCli.CONFIGURATION_FOLDER, CONFIGURATION_FILE_NAME),
|
|
158
|
+
template: false
|
|
159
|
+
}, {
|
|
160
|
+
dir: currentPath,
|
|
161
|
+
file: _nodePath.default.join(currentPath, '.' + CONFIGURATION_TEMPLATE_FILE_NAME),
|
|
162
|
+
template: true
|
|
163
|
+
}, {
|
|
164
|
+
dir: currentPath,
|
|
165
|
+
file: _nodePath.default.join(currentPath, '.' + CONFIGURATION_FILE_NAME),
|
|
166
|
+
template: false
|
|
167
|
+
});
|
|
151
168
|
|
|
152
169
|
// Move up one directory
|
|
153
170
|
currentPath = _nodePath.default.dirname(currentPath);
|
|
154
171
|
|
|
155
172
|
// Use depth as a sanity check to avoid an infitite loop
|
|
156
|
-
depth
|
|
173
|
+
++depth;
|
|
174
|
+
}
|
|
175
|
+
for (const {
|
|
176
|
+
dir,
|
|
177
|
+
file,
|
|
178
|
+
template
|
|
179
|
+
} of locations) {
|
|
180
|
+
try {
|
|
181
|
+
// eslint-disable-next-line no-await-in-loop
|
|
182
|
+
const contents = await (0, _promises.readFile)(file, 'utf8');
|
|
183
|
+
if (template) {
|
|
184
|
+
const rendered = _ejs.default.render(contents, {
|
|
185
|
+
configDir: dir
|
|
186
|
+
});
|
|
187
|
+
return {
|
|
188
|
+
configurationPath: file,
|
|
189
|
+
configurationContents: rendered
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
return {
|
|
193
|
+
configurationPath: file,
|
|
194
|
+
configurationContents: contents
|
|
195
|
+
};
|
|
196
|
+
} catch (error) {
|
|
197
|
+
const err = error instanceof Error ? error : new Error('Unknown error');
|
|
198
|
+
debug(`Error reading or rendering file ${file}: ${err.message}`);
|
|
199
|
+
}
|
|
157
200
|
}
|
|
158
|
-
return
|
|
201
|
+
return false;
|
|
159
202
|
}
|
|
160
203
|
const CONFIGURATION_FILE_VERSIONS = ['1'];
|
|
161
204
|
function getAllConfigurationFileVersions() {
|
|
@@ -48,6 +48,7 @@ const debug = (0, _debug.default)('@automattic/vip:bin:dev-environment');
|
|
|
48
48
|
const landoFileTemplatePath = _nodePath.default.join(__dirname, '..', '..', '..', 'assets', 'dev-env.lando.template.yml.ejs');
|
|
49
49
|
const nginxFileTemplatePath = _nodePath.default.join(__dirname, '..', '..', '..', 'assets', 'dev-env.nginx.template.conf.ejs');
|
|
50
50
|
const landoFileName = '.lando.yml';
|
|
51
|
+
const landoOverridesFileName = '.lando.local.yml';
|
|
51
52
|
const landoBackupFileName = '.lando.backup.yml';
|
|
52
53
|
const nginxFileName = 'extra.conf';
|
|
53
54
|
const instanceDataFileName = 'instance_data.json';
|
|
@@ -74,7 +75,7 @@ async function startEnvironment(lando, slug, options) {
|
|
|
74
75
|
throw new Error(_devEnvironment.DEV_ENVIRONMENT_NOT_FOUND);
|
|
75
76
|
}
|
|
76
77
|
let updated = false;
|
|
77
|
-
if (!options.skipWpVersionsCheck) {
|
|
78
|
+
if (!options.skipWpVersionsCheck && process.stdin.isTTY) {
|
|
78
79
|
updated = await maybeUpdateWordPressImage(lando, slug);
|
|
79
80
|
}
|
|
80
81
|
updated = updated || (await maybeUpdateVersion(lando, slug));
|
|
@@ -169,6 +170,7 @@ function preProcessInstanceData(instanceData) {
|
|
|
169
170
|
// newInstanceData
|
|
170
171
|
newInstanceData.autologinKey = (0, _uuid.v4)();
|
|
171
172
|
newInstanceData.version = _devEnvironment.DEV_ENVIRONMENT_VERSION;
|
|
173
|
+
newInstanceData.overrides = instanceData.overrides ?? '';
|
|
172
174
|
return newInstanceData;
|
|
173
175
|
}
|
|
174
176
|
async function destroyEnvironment(lando, slug, removeFiles) {
|
|
@@ -373,6 +375,7 @@ async function prepareLandoEnv(lando, instanceData, instancePath, integrationsCo
|
|
|
373
375
|
const nginxFile = await _ejs.default.renderFile(nginxFileTemplatePath, templateData);
|
|
374
376
|
const instanceDataFile = JSON.stringify(instanceData);
|
|
375
377
|
const landoFileTargetPath = _nodePath.default.join(instancePath, landoFileName);
|
|
378
|
+
const landoOverridesFileTargetPath = _nodePath.default.join(instancePath, landoOverridesFileName);
|
|
376
379
|
const landoBackupFileTargetPath = _nodePath.default.join(instancePath, landoBackupFileName);
|
|
377
380
|
const nginxFolderPath = _nodePath.default.join(instancePath, nginxPathString);
|
|
378
381
|
const nginxFileTargetPath = _nodePath.default.join(nginxFolderPath, nginxFileName);
|
|
@@ -397,6 +400,13 @@ async function prepareLandoEnv(lando, instanceData, instancePath, integrationsCo
|
|
|
397
400
|
debug(`Nginx file created in ${nginxFileTargetPath}`);
|
|
398
401
|
debug(`Instance data file created in ${instanceDataTargetPath}`);
|
|
399
402
|
await writeIntegrationsConfig(instancePath, integrationsConfig);
|
|
403
|
+
if (instanceData.overrides) {
|
|
404
|
+
await _nodeFs.default.promises.writeFile(landoOverridesFileTargetPath, instanceData.overrides);
|
|
405
|
+
} else {
|
|
406
|
+
await _nodeFs.default.promises.rm(landoOverridesFileTargetPath, {
|
|
407
|
+
force: true
|
|
408
|
+
});
|
|
409
|
+
}
|
|
400
410
|
}
|
|
401
411
|
function getAllEnvironmentNames() {
|
|
402
412
|
const mainEnvironmentPath = xdgDataDirectory();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
exports.reIndexSearch = exports.flushCache = exports.dataCleanup = exports.addAdminUser = void 0;
|
|
4
|
+
exports.reIndexSearch = exports.flushCache = exports.executeQuery = exports.dataCleanup = exports.addAdminUser = void 0;
|
|
5
5
|
var _devEnvironmentCore = require("./dev-environment-core");
|
|
6
6
|
const addAdminUser = async (lando, slug, quiet) => {
|
|
7
7
|
const addUserArg = ['wp', 'dev-env-add-admin', '--username=vipgo', '--password=password', '--skip-plugins', '--skip-themes'].concat(quiet ? ['--quiet'] : []);
|
|
@@ -29,4 +29,8 @@ const flushCache = async (lando, slug, quiet) => {
|
|
|
29
29
|
const cacheArg = ['wp', 'cache', 'flush', '--skip-plugins', '--skip-themes'].concat(quiet ? ['--quiet'] : []);
|
|
30
30
|
await (0, _devEnvironmentCore.exec)(lando, slug, cacheArg);
|
|
31
31
|
};
|
|
32
|
-
exports.flushCache = flushCache;
|
|
32
|
+
exports.flushCache = flushCache;
|
|
33
|
+
const executeQuery = async (lando, slug, query) => {
|
|
34
|
+
await (0, _devEnvironmentCore.exec)(lando, slug, ['wp', 'db', 'query', query]);
|
|
35
|
+
};
|
|
36
|
+
exports.executeQuery = executeQuery;
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 3.12.0
|
|
4
|
+
|
|
5
|
+
* fix: rsync to skip files based on checksum
|
|
6
|
+
* fix(dev-env): do not show the update prompt when stdin is not a TTY
|
|
7
|
+
* fix(dev-env): handling of absolute paths in configuration files
|
|
8
|
+
* feat(dev-env): overrides for the default configuration
|
|
9
|
+
* build(deps): bump step-security/harden-runner from 2.10.4 to 2.11.0
|
|
10
|
+
* build(deps-dev): bump @types/dockerode from 3.3.34 to 3.3.35
|
|
11
|
+
* feat(dev-env): support templates for dev env configs
|
|
12
|
+
* build(deps-dev): bump @types/node from 22.10.1 to 22.13.9
|
|
13
|
+
* build(deps-dev): bump typescript from 5.7.3 to 5.8.2
|
|
14
|
+
* build(deps): bump uuid from 11.0.3 to 11.1.0
|
|
15
|
+
* fix(dev-env): accept `demo` as an alias of `image`
|
|
16
|
+
* fix(dev-env): cron handling by `vip dev-env update`
|
|
17
|
+
* ci: CodeQL scan for GHA
|
|
18
|
+
* Update/search replace example
|
|
19
|
+
* fix: forcefully strip `.js` from the command
|
|
20
|
+
* build(deps): bump Automattic/vip-actions from e14930c8c34a8ff57b1a99659ba517420027057b to dbd477b39f2122bf594da2d65dc0ea8ab5fc9bf0
|
|
21
|
+
* build(deps-dev): bump the babel group with 2 updates
|
|
22
|
+
* build(deps): bump semver from 7.6.3 to 7.7.1
|
|
23
|
+
* build(deps): bump debug from 4.3.7 to 4.4.0
|
|
24
|
+
|
|
25
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.11.0...3.12.0
|
|
26
|
+
|
|
27
|
+
### 3.11.0
|
|
28
|
+
|
|
29
|
+
* Add option to skip maintenance mode during SQL import
|
|
30
|
+
* Fix dev-env-sync for mydumper backups
|
|
31
|
+
|
|
32
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.10.0...3.11.0
|
|
33
|
+
|
|
3
34
|
### 3.10.0
|
|
4
35
|
|
|
5
36
|
* VIP-CLI interactive console: Trim leading and ending spaces in command passed in
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "3.
|
|
9
|
+
"version": "3.12.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"cli-table3": "^0.6.3",
|
|
22
22
|
"configstore": "5.0.1",
|
|
23
23
|
"copy-dir": "0.4.0",
|
|
24
|
-
"debug": "4.
|
|
24
|
+
"debug": "4.4.0",
|
|
25
25
|
"ejs": "^3.1.8",
|
|
26
26
|
"enquirer": "2.4.1",
|
|
27
27
|
"fetch-retry": "^6.0.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"node-stream-zip": "1.15.0",
|
|
37
37
|
"open": "^10.0.0",
|
|
38
38
|
"proxy-from-env": "^1.1.0",
|
|
39
|
-
"semver": "7.
|
|
39
|
+
"semver": "7.7.1",
|
|
40
40
|
"shelljs": "^0.8.5",
|
|
41
41
|
"single-line-log": "1.1.2",
|
|
42
42
|
"socket.io-client": "^4.5.3",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"socks-proxy-agent": "^5.0.1",
|
|
45
45
|
"tar": "^7.4.0",
|
|
46
46
|
"update-notifier": "7.3.1",
|
|
47
|
-
"uuid": "11.0
|
|
47
|
+
"uuid": "11.1.0",
|
|
48
48
|
"xdg-basedir": "^4.0.0",
|
|
49
49
|
"xml2js": "^0.5.0"
|
|
50
50
|
},
|
|
@@ -110,8 +110,8 @@
|
|
|
110
110
|
"devDependencies": {
|
|
111
111
|
"@automattic/eslint-plugin-wpvip": "0.13.0",
|
|
112
112
|
"@babel/cli": "7.26.4",
|
|
113
|
-
"@babel/core": "7.26.
|
|
114
|
-
"@babel/preset-env": "7.26.
|
|
113
|
+
"@babel/core": "7.26.9",
|
|
114
|
+
"@babel/preset-env": "7.26.9",
|
|
115
115
|
"@babel/preset-typescript": "7.26.0",
|
|
116
116
|
"@jest/globals": "^29.7.0",
|
|
117
117
|
"@jest/test-sequencer": "^29.7.0",
|
|
@@ -402,23 +402,22 @@
|
|
|
402
402
|
}
|
|
403
403
|
},
|
|
404
404
|
"node_modules/@babel/core": {
|
|
405
|
-
"version": "7.26.
|
|
406
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.
|
|
407
|
-
"integrity": "sha512-
|
|
405
|
+
"version": "7.26.9",
|
|
406
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz",
|
|
407
|
+
"integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==",
|
|
408
408
|
"dev": true,
|
|
409
409
|
"license": "MIT",
|
|
410
410
|
"dependencies": {
|
|
411
411
|
"@ampproject/remapping": "^2.2.0",
|
|
412
412
|
"@babel/code-frame": "^7.26.2",
|
|
413
|
-
"@babel/generator": "^7.26.
|
|
413
|
+
"@babel/generator": "^7.26.9",
|
|
414
414
|
"@babel/helper-compilation-targets": "^7.26.5",
|
|
415
415
|
"@babel/helper-module-transforms": "^7.26.0",
|
|
416
|
-
"@babel/helpers": "^7.26.
|
|
417
|
-
"@babel/parser": "^7.26.
|
|
418
|
-
"@babel/template": "^7.26.
|
|
419
|
-
"@babel/traverse": "^7.26.
|
|
420
|
-
"@babel/types": "^7.26.
|
|
421
|
-
"@types/gensync": "^1.0.0",
|
|
416
|
+
"@babel/helpers": "^7.26.9",
|
|
417
|
+
"@babel/parser": "^7.26.9",
|
|
418
|
+
"@babel/template": "^7.26.9",
|
|
419
|
+
"@babel/traverse": "^7.26.9",
|
|
420
|
+
"@babel/types": "^7.26.9",
|
|
422
421
|
"convert-source-map": "^2.0.0",
|
|
423
422
|
"debug": "^4.1.0",
|
|
424
423
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -485,14 +484,14 @@
|
|
|
485
484
|
}
|
|
486
485
|
},
|
|
487
486
|
"node_modules/@babel/generator": {
|
|
488
|
-
"version": "7.26.
|
|
489
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.
|
|
490
|
-
"integrity": "sha512-
|
|
487
|
+
"version": "7.26.9",
|
|
488
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz",
|
|
489
|
+
"integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==",
|
|
491
490
|
"dev": true,
|
|
492
491
|
"license": "MIT",
|
|
493
492
|
"dependencies": {
|
|
494
|
-
"@babel/parser": "^7.26.
|
|
495
|
-
"@babel/types": "^7.26.
|
|
493
|
+
"@babel/parser": "^7.26.9",
|
|
494
|
+
"@babel/types": "^7.26.9",
|
|
496
495
|
"@jridgewell/gen-mapping": "^0.3.5",
|
|
497
496
|
"@jridgewell/trace-mapping": "^0.3.25",
|
|
498
497
|
"jsesc": "^3.0.2"
|
|
@@ -780,27 +779,27 @@
|
|
|
780
779
|
}
|
|
781
780
|
},
|
|
782
781
|
"node_modules/@babel/helpers": {
|
|
783
|
-
"version": "7.26.
|
|
784
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.
|
|
785
|
-
"integrity": "sha512-
|
|
782
|
+
"version": "7.26.9",
|
|
783
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz",
|
|
784
|
+
"integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==",
|
|
786
785
|
"dev": true,
|
|
787
786
|
"license": "MIT",
|
|
788
787
|
"dependencies": {
|
|
789
|
-
"@babel/template": "^7.
|
|
790
|
-
"@babel/types": "^7.26.
|
|
788
|
+
"@babel/template": "^7.26.9",
|
|
789
|
+
"@babel/types": "^7.26.9"
|
|
791
790
|
},
|
|
792
791
|
"engines": {
|
|
793
792
|
"node": ">=6.9.0"
|
|
794
793
|
}
|
|
795
794
|
},
|
|
796
795
|
"node_modules/@babel/parser": {
|
|
797
|
-
"version": "7.26.
|
|
798
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.
|
|
799
|
-
"integrity": "sha512-
|
|
796
|
+
"version": "7.26.9",
|
|
797
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz",
|
|
798
|
+
"integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
|
|
800
799
|
"dev": true,
|
|
801
800
|
"license": "MIT",
|
|
802
801
|
"dependencies": {
|
|
803
|
-
"@babel/types": "^7.26.
|
|
802
|
+
"@babel/types": "^7.26.9"
|
|
804
803
|
},
|
|
805
804
|
"bin": {
|
|
806
805
|
"parser": "bin/babel-parser.js"
|
|
@@ -1381,12 +1380,13 @@
|
|
|
1381
1380
|
}
|
|
1382
1381
|
},
|
|
1383
1382
|
"node_modules/@babel/plugin-transform-for-of": {
|
|
1384
|
-
"version": "7.
|
|
1385
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
|
1386
|
-
"integrity": "sha512-
|
|
1383
|
+
"version": "7.26.9",
|
|
1384
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz",
|
|
1385
|
+
"integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==",
|
|
1387
1386
|
"dev": true,
|
|
1387
|
+
"license": "MIT",
|
|
1388
1388
|
"dependencies": {
|
|
1389
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1389
|
+
"@babel/helper-plugin-utils": "^7.26.5",
|
|
1390
1390
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
|
|
1391
1391
|
},
|
|
1392
1392
|
"engines": {
|
|
@@ -1937,9 +1937,9 @@
|
|
|
1937
1937
|
}
|
|
1938
1938
|
},
|
|
1939
1939
|
"node_modules/@babel/preset-env": {
|
|
1940
|
-
"version": "7.26.
|
|
1941
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.
|
|
1942
|
-
"integrity": "sha512-
|
|
1940
|
+
"version": "7.26.9",
|
|
1941
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz",
|
|
1942
|
+
"integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==",
|
|
1943
1943
|
"dev": true,
|
|
1944
1944
|
"license": "MIT",
|
|
1945
1945
|
"dependencies": {
|
|
@@ -1972,7 +1972,7 @@
|
|
|
1972
1972
|
"@babel/plugin-transform-dynamic-import": "^7.25.9",
|
|
1973
1973
|
"@babel/plugin-transform-exponentiation-operator": "^7.26.3",
|
|
1974
1974
|
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
|
|
1975
|
-
"@babel/plugin-transform-for-of": "^7.
|
|
1975
|
+
"@babel/plugin-transform-for-of": "^7.26.9",
|
|
1976
1976
|
"@babel/plugin-transform-function-name": "^7.25.9",
|
|
1977
1977
|
"@babel/plugin-transform-json-strings": "^7.25.9",
|
|
1978
1978
|
"@babel/plugin-transform-literals": "^7.25.9",
|
|
@@ -2075,32 +2075,32 @@
|
|
|
2075
2075
|
}
|
|
2076
2076
|
},
|
|
2077
2077
|
"node_modules/@babel/template": {
|
|
2078
|
-
"version": "7.26.
|
|
2079
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.
|
|
2080
|
-
"integrity": "sha512-
|
|
2078
|
+
"version": "7.26.9",
|
|
2079
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
|
|
2080
|
+
"integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
|
|
2081
2081
|
"dev": true,
|
|
2082
2082
|
"license": "MIT",
|
|
2083
2083
|
"dependencies": {
|
|
2084
2084
|
"@babel/code-frame": "^7.26.2",
|
|
2085
|
-
"@babel/parser": "^7.26.
|
|
2086
|
-
"@babel/types": "^7.26.
|
|
2085
|
+
"@babel/parser": "^7.26.9",
|
|
2086
|
+
"@babel/types": "^7.26.9"
|
|
2087
2087
|
},
|
|
2088
2088
|
"engines": {
|
|
2089
2089
|
"node": ">=6.9.0"
|
|
2090
2090
|
}
|
|
2091
2091
|
},
|
|
2092
2092
|
"node_modules/@babel/traverse": {
|
|
2093
|
-
"version": "7.26.
|
|
2094
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.
|
|
2095
|
-
"integrity": "sha512-
|
|
2093
|
+
"version": "7.26.9",
|
|
2094
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz",
|
|
2095
|
+
"integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==",
|
|
2096
2096
|
"dev": true,
|
|
2097
2097
|
"license": "MIT",
|
|
2098
2098
|
"dependencies": {
|
|
2099
2099
|
"@babel/code-frame": "^7.26.2",
|
|
2100
|
-
"@babel/generator": "^7.26.
|
|
2101
|
-
"@babel/parser": "^7.26.
|
|
2102
|
-
"@babel/template": "^7.26.
|
|
2103
|
-
"@babel/types": "^7.26.
|
|
2100
|
+
"@babel/generator": "^7.26.9",
|
|
2101
|
+
"@babel/parser": "^7.26.9",
|
|
2102
|
+
"@babel/template": "^7.26.9",
|
|
2103
|
+
"@babel/types": "^7.26.9",
|
|
2104
2104
|
"debug": "^4.3.1",
|
|
2105
2105
|
"globals": "^11.1.0"
|
|
2106
2106
|
},
|
|
@@ -2109,9 +2109,9 @@
|
|
|
2109
2109
|
}
|
|
2110
2110
|
},
|
|
2111
2111
|
"node_modules/@babel/types": {
|
|
2112
|
-
"version": "7.26.
|
|
2113
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.
|
|
2114
|
-
"integrity": "sha512-
|
|
2112
|
+
"version": "7.26.9",
|
|
2113
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
|
|
2114
|
+
"integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
|
|
2115
2115
|
"dev": true,
|
|
2116
2116
|
"license": "MIT",
|
|
2117
2117
|
"dependencies": {
|
|
@@ -3602,9 +3602,9 @@
|
|
|
3602
3602
|
}
|
|
3603
3603
|
},
|
|
3604
3604
|
"node_modules/@types/dockerode": {
|
|
3605
|
-
"version": "3.3.
|
|
3606
|
-
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.
|
|
3607
|
-
"integrity": "sha512-
|
|
3605
|
+
"version": "3.3.35",
|
|
3606
|
+
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.35.tgz",
|
|
3607
|
+
"integrity": "sha512-P+DCMASlsH+QaKkDpekKrP5pLls767PPs+/LrlVbKnEnY5tMpEUa2C6U4gRsdFZengOqxdCIqy16R22Q3pLB6Q==",
|
|
3608
3608
|
"dev": true,
|
|
3609
3609
|
"license": "MIT",
|
|
3610
3610
|
"dependencies": {
|
|
@@ -3619,13 +3619,6 @@
|
|
|
3619
3619
|
"integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==",
|
|
3620
3620
|
"dev": true
|
|
3621
3621
|
},
|
|
3622
|
-
"node_modules/@types/gensync": {
|
|
3623
|
-
"version": "1.0.4",
|
|
3624
|
-
"resolved": "https://registry.npmjs.org/@types/gensync/-/gensync-1.0.4.tgz",
|
|
3625
|
-
"integrity": "sha512-C3YYeRQWp2fmq9OryX+FoDy8nXS6scQ7dPptD8LnFDAUNcKWJjXQKDNJD3HVm+kOUsXhTOkpi69vI4EuAr95bA==",
|
|
3626
|
-
"dev": true,
|
|
3627
|
-
"license": "MIT"
|
|
3628
|
-
},
|
|
3629
3622
|
"node_modules/@types/graceful-fs": {
|
|
3630
3623
|
"version": "4.1.7",
|
|
3631
3624
|
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz",
|
|
@@ -3702,9 +3695,10 @@
|
|
|
3702
3695
|
"dev": true
|
|
3703
3696
|
},
|
|
3704
3697
|
"node_modules/@types/node": {
|
|
3705
|
-
"version": "22.
|
|
3706
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.
|
|
3707
|
-
"integrity": "sha512-
|
|
3698
|
+
"version": "22.13.9",
|
|
3699
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.9.tgz",
|
|
3700
|
+
"integrity": "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==",
|
|
3701
|
+
"license": "MIT",
|
|
3708
3702
|
"dependencies": {
|
|
3709
3703
|
"undici-types": "~6.20.0"
|
|
3710
3704
|
}
|
|
@@ -5683,9 +5677,9 @@
|
|
|
5683
5677
|
"dev": true
|
|
5684
5678
|
},
|
|
5685
5679
|
"node_modules/debug": {
|
|
5686
|
-
"version": "4.
|
|
5687
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.
|
|
5688
|
-
"integrity": "sha512-
|
|
5680
|
+
"version": "4.4.0",
|
|
5681
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
|
5682
|
+
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
|
5689
5683
|
"dependencies": {
|
|
5690
5684
|
"ms": "^2.1.3"
|
|
5691
5685
|
},
|
|
@@ -6047,6 +6041,22 @@
|
|
|
6047
6041
|
"xmlhttprequest-ssl": "~2.1.1"
|
|
6048
6042
|
}
|
|
6049
6043
|
},
|
|
6044
|
+
"node_modules/engine.io-client/node_modules/debug": {
|
|
6045
|
+
"version": "4.3.7",
|
|
6046
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
6047
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
6048
|
+
"dependencies": {
|
|
6049
|
+
"ms": "^2.1.3"
|
|
6050
|
+
},
|
|
6051
|
+
"engines": {
|
|
6052
|
+
"node": ">=6.0"
|
|
6053
|
+
},
|
|
6054
|
+
"peerDependenciesMeta": {
|
|
6055
|
+
"supports-color": {
|
|
6056
|
+
"optional": true
|
|
6057
|
+
}
|
|
6058
|
+
}
|
|
6059
|
+
},
|
|
6050
6060
|
"node_modules/engine.io-parser": {
|
|
6051
6061
|
"version": "5.2.3",
|
|
6052
6062
|
"resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz",
|
|
@@ -11481,9 +11491,10 @@
|
|
|
11481
11491
|
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
|
11482
11492
|
},
|
|
11483
11493
|
"node_modules/semver": {
|
|
11484
|
-
"version": "7.
|
|
11485
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
11486
|
-
"integrity": "sha512-
|
|
11494
|
+
"version": "7.7.1",
|
|
11495
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
|
11496
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
|
11497
|
+
"license": "ISC",
|
|
11487
11498
|
"bin": {
|
|
11488
11499
|
"semver": "bin/semver.js"
|
|
11489
11500
|
},
|
|
@@ -11650,6 +11661,22 @@
|
|
|
11650
11661
|
"node": ">=10.0.0"
|
|
11651
11662
|
}
|
|
11652
11663
|
},
|
|
11664
|
+
"node_modules/socket.io-client/node_modules/debug": {
|
|
11665
|
+
"version": "4.3.7",
|
|
11666
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
11667
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
11668
|
+
"dependencies": {
|
|
11669
|
+
"ms": "^2.1.3"
|
|
11670
|
+
},
|
|
11671
|
+
"engines": {
|
|
11672
|
+
"node": ">=6.0"
|
|
11673
|
+
},
|
|
11674
|
+
"peerDependenciesMeta": {
|
|
11675
|
+
"supports-color": {
|
|
11676
|
+
"optional": true
|
|
11677
|
+
}
|
|
11678
|
+
}
|
|
11679
|
+
},
|
|
11653
11680
|
"node_modules/socket.io-parser": {
|
|
11654
11681
|
"version": "4.2.4",
|
|
11655
11682
|
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz",
|
|
@@ -11662,6 +11689,22 @@
|
|
|
11662
11689
|
"node": ">=10.0.0"
|
|
11663
11690
|
}
|
|
11664
11691
|
},
|
|
11692
|
+
"node_modules/socket.io-parser/node_modules/debug": {
|
|
11693
|
+
"version": "4.3.7",
|
|
11694
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
11695
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
11696
|
+
"dependencies": {
|
|
11697
|
+
"ms": "^2.1.3"
|
|
11698
|
+
},
|
|
11699
|
+
"engines": {
|
|
11700
|
+
"node": ">=6.0"
|
|
11701
|
+
},
|
|
11702
|
+
"peerDependenciesMeta": {
|
|
11703
|
+
"supports-color": {
|
|
11704
|
+
"optional": true
|
|
11705
|
+
}
|
|
11706
|
+
}
|
|
11707
|
+
},
|
|
11665
11708
|
"node_modules/socket.io-stream": {
|
|
11666
11709
|
"name": "@wearemothership/socket.io-stream",
|
|
11667
11710
|
"version": "0.9.1",
|
|
@@ -11672,6 +11715,22 @@
|
|
|
11672
11715
|
"debug": "~4.3.4"
|
|
11673
11716
|
}
|
|
11674
11717
|
},
|
|
11718
|
+
"node_modules/socket.io-stream/node_modules/debug": {
|
|
11719
|
+
"version": "4.3.7",
|
|
11720
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
11721
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
11722
|
+
"dependencies": {
|
|
11723
|
+
"ms": "^2.1.3"
|
|
11724
|
+
},
|
|
11725
|
+
"engines": {
|
|
11726
|
+
"node": ">=6.0"
|
|
11727
|
+
},
|
|
11728
|
+
"peerDependenciesMeta": {
|
|
11729
|
+
"supports-color": {
|
|
11730
|
+
"optional": true
|
|
11731
|
+
}
|
|
11732
|
+
}
|
|
11733
|
+
},
|
|
11675
11734
|
"node_modules/socks": {
|
|
11676
11735
|
"version": "2.8.3",
|
|
11677
11736
|
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz",
|
|
@@ -12418,10 +12477,11 @@
|
|
|
12418
12477
|
}
|
|
12419
12478
|
},
|
|
12420
12479
|
"node_modules/typescript": {
|
|
12421
|
-
"version": "5.
|
|
12422
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
12423
|
-
"integrity": "sha512-
|
|
12480
|
+
"version": "5.8.2",
|
|
12481
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
|
12482
|
+
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
|
12424
12483
|
"dev": true,
|
|
12484
|
+
"license": "Apache-2.0",
|
|
12425
12485
|
"bin": {
|
|
12426
12486
|
"tsc": "bin/tsc",
|
|
12427
12487
|
"tsserver": "bin/tsserver"
|
|
@@ -12776,13 +12836,14 @@
|
|
|
12776
12836
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
|
12777
12837
|
},
|
|
12778
12838
|
"node_modules/uuid": {
|
|
12779
|
-
"version": "11.0
|
|
12780
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.
|
|
12781
|
-
"integrity": "sha512-
|
|
12839
|
+
"version": "11.1.0",
|
|
12840
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
|
|
12841
|
+
"integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
|
|
12782
12842
|
"funding": [
|
|
12783
12843
|
"https://github.com/sponsors/broofa",
|
|
12784
12844
|
"https://github.com/sponsors/ctavan"
|
|
12785
12845
|
],
|
|
12846
|
+
"license": "MIT",
|
|
12786
12847
|
"bin": {
|
|
12787
12848
|
"uuid": "dist/esm/bin/uuid"
|
|
12788
12849
|
}
|
|
@@ -13650,22 +13711,21 @@
|
|
|
13650
13711
|
"dev": true
|
|
13651
13712
|
},
|
|
13652
13713
|
"@babel/core": {
|
|
13653
|
-
"version": "7.26.
|
|
13654
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.
|
|
13655
|
-
"integrity": "sha512-
|
|
13714
|
+
"version": "7.26.9",
|
|
13715
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz",
|
|
13716
|
+
"integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==",
|
|
13656
13717
|
"dev": true,
|
|
13657
13718
|
"requires": {
|
|
13658
13719
|
"@ampproject/remapping": "^2.2.0",
|
|
13659
13720
|
"@babel/code-frame": "^7.26.2",
|
|
13660
|
-
"@babel/generator": "^7.26.
|
|
13721
|
+
"@babel/generator": "^7.26.9",
|
|
13661
13722
|
"@babel/helper-compilation-targets": "^7.26.5",
|
|
13662
13723
|
"@babel/helper-module-transforms": "^7.26.0",
|
|
13663
|
-
"@babel/helpers": "^7.26.
|
|
13664
|
-
"@babel/parser": "^7.26.
|
|
13665
|
-
"@babel/template": "^7.26.
|
|
13666
|
-
"@babel/traverse": "^7.26.
|
|
13667
|
-
"@babel/types": "^7.26.
|
|
13668
|
-
"@types/gensync": "^1.0.0",
|
|
13724
|
+
"@babel/helpers": "^7.26.9",
|
|
13725
|
+
"@babel/parser": "^7.26.9",
|
|
13726
|
+
"@babel/template": "^7.26.9",
|
|
13727
|
+
"@babel/traverse": "^7.26.9",
|
|
13728
|
+
"@babel/types": "^7.26.9",
|
|
13669
13729
|
"convert-source-map": "^2.0.0",
|
|
13670
13730
|
"debug": "^4.1.0",
|
|
13671
13731
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -13713,13 +13773,13 @@
|
|
|
13713
13773
|
}
|
|
13714
13774
|
},
|
|
13715
13775
|
"@babel/generator": {
|
|
13716
|
-
"version": "7.26.
|
|
13717
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.
|
|
13718
|
-
"integrity": "sha512-
|
|
13776
|
+
"version": "7.26.9",
|
|
13777
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz",
|
|
13778
|
+
"integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==",
|
|
13719
13779
|
"dev": true,
|
|
13720
13780
|
"requires": {
|
|
13721
|
-
"@babel/parser": "^7.26.
|
|
13722
|
-
"@babel/types": "^7.26.
|
|
13781
|
+
"@babel/parser": "^7.26.9",
|
|
13782
|
+
"@babel/types": "^7.26.9",
|
|
13723
13783
|
"@jridgewell/gen-mapping": "^0.3.5",
|
|
13724
13784
|
"@jridgewell/trace-mapping": "^0.3.25",
|
|
13725
13785
|
"jsesc": "^3.0.2"
|
|
@@ -13931,22 +13991,22 @@
|
|
|
13931
13991
|
}
|
|
13932
13992
|
},
|
|
13933
13993
|
"@babel/helpers": {
|
|
13934
|
-
"version": "7.26.
|
|
13935
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.
|
|
13936
|
-
"integrity": "sha512-
|
|
13994
|
+
"version": "7.26.9",
|
|
13995
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz",
|
|
13996
|
+
"integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==",
|
|
13937
13997
|
"dev": true,
|
|
13938
13998
|
"requires": {
|
|
13939
|
-
"@babel/template": "^7.
|
|
13940
|
-
"@babel/types": "^7.26.
|
|
13999
|
+
"@babel/template": "^7.26.9",
|
|
14000
|
+
"@babel/types": "^7.26.9"
|
|
13941
14001
|
}
|
|
13942
14002
|
},
|
|
13943
14003
|
"@babel/parser": {
|
|
13944
|
-
"version": "7.26.
|
|
13945
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.
|
|
13946
|
-
"integrity": "sha512-
|
|
14004
|
+
"version": "7.26.9",
|
|
14005
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz",
|
|
14006
|
+
"integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
|
|
13947
14007
|
"dev": true,
|
|
13948
14008
|
"requires": {
|
|
13949
|
-
"@babel/types": "^7.26.
|
|
14009
|
+
"@babel/types": "^7.26.9"
|
|
13950
14010
|
}
|
|
13951
14011
|
},
|
|
13952
14012
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
|
|
@@ -14318,12 +14378,12 @@
|
|
|
14318
14378
|
}
|
|
14319
14379
|
},
|
|
14320
14380
|
"@babel/plugin-transform-for-of": {
|
|
14321
|
-
"version": "7.
|
|
14322
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
|
14323
|
-
"integrity": "sha512-
|
|
14381
|
+
"version": "7.26.9",
|
|
14382
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz",
|
|
14383
|
+
"integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==",
|
|
14324
14384
|
"dev": true,
|
|
14325
14385
|
"requires": {
|
|
14326
|
-
"@babel/helper-plugin-utils": "^7.
|
|
14386
|
+
"@babel/helper-plugin-utils": "^7.26.5",
|
|
14327
14387
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
|
|
14328
14388
|
}
|
|
14329
14389
|
},
|
|
@@ -14660,9 +14720,9 @@
|
|
|
14660
14720
|
}
|
|
14661
14721
|
},
|
|
14662
14722
|
"@babel/preset-env": {
|
|
14663
|
-
"version": "7.26.
|
|
14664
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.
|
|
14665
|
-
"integrity": "sha512-
|
|
14723
|
+
"version": "7.26.9",
|
|
14724
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz",
|
|
14725
|
+
"integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==",
|
|
14666
14726
|
"dev": true,
|
|
14667
14727
|
"requires": {
|
|
14668
14728
|
"@babel/compat-data": "^7.26.8",
|
|
@@ -14694,7 +14754,7 @@
|
|
|
14694
14754
|
"@babel/plugin-transform-dynamic-import": "^7.25.9",
|
|
14695
14755
|
"@babel/plugin-transform-exponentiation-operator": "^7.26.3",
|
|
14696
14756
|
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
|
|
14697
|
-
"@babel/plugin-transform-for-of": "^7.
|
|
14757
|
+
"@babel/plugin-transform-for-of": "^7.26.9",
|
|
14698
14758
|
"@babel/plugin-transform-function-name": "^7.25.9",
|
|
14699
14759
|
"@babel/plugin-transform-json-strings": "^7.25.9",
|
|
14700
14760
|
"@babel/plugin-transform-literals": "^7.25.9",
|
|
@@ -14778,35 +14838,35 @@
|
|
|
14778
14838
|
}
|
|
14779
14839
|
},
|
|
14780
14840
|
"@babel/template": {
|
|
14781
|
-
"version": "7.26.
|
|
14782
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.
|
|
14783
|
-
"integrity": "sha512-
|
|
14841
|
+
"version": "7.26.9",
|
|
14842
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
|
|
14843
|
+
"integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
|
|
14784
14844
|
"dev": true,
|
|
14785
14845
|
"requires": {
|
|
14786
14846
|
"@babel/code-frame": "^7.26.2",
|
|
14787
|
-
"@babel/parser": "^7.26.
|
|
14788
|
-
"@babel/types": "^7.26.
|
|
14847
|
+
"@babel/parser": "^7.26.9",
|
|
14848
|
+
"@babel/types": "^7.26.9"
|
|
14789
14849
|
}
|
|
14790
14850
|
},
|
|
14791
14851
|
"@babel/traverse": {
|
|
14792
|
-
"version": "7.26.
|
|
14793
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.
|
|
14794
|
-
"integrity": "sha512-
|
|
14852
|
+
"version": "7.26.9",
|
|
14853
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz",
|
|
14854
|
+
"integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==",
|
|
14795
14855
|
"dev": true,
|
|
14796
14856
|
"requires": {
|
|
14797
14857
|
"@babel/code-frame": "^7.26.2",
|
|
14798
|
-
"@babel/generator": "^7.26.
|
|
14799
|
-
"@babel/parser": "^7.26.
|
|
14800
|
-
"@babel/template": "^7.26.
|
|
14801
|
-
"@babel/types": "^7.26.
|
|
14858
|
+
"@babel/generator": "^7.26.9",
|
|
14859
|
+
"@babel/parser": "^7.26.9",
|
|
14860
|
+
"@babel/template": "^7.26.9",
|
|
14861
|
+
"@babel/types": "^7.26.9",
|
|
14802
14862
|
"debug": "^4.3.1",
|
|
14803
14863
|
"globals": "^11.1.0"
|
|
14804
14864
|
}
|
|
14805
14865
|
},
|
|
14806
14866
|
"@babel/types": {
|
|
14807
|
-
"version": "7.26.
|
|
14808
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.
|
|
14809
|
-
"integrity": "sha512-
|
|
14867
|
+
"version": "7.26.9",
|
|
14868
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
|
|
14869
|
+
"integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
|
|
14810
14870
|
"dev": true,
|
|
14811
14871
|
"requires": {
|
|
14812
14872
|
"@babel/helper-string-parser": "^7.25.9",
|
|
@@ -15976,9 +16036,9 @@
|
|
|
15976
16036
|
}
|
|
15977
16037
|
},
|
|
15978
16038
|
"@types/dockerode": {
|
|
15979
|
-
"version": "3.3.
|
|
15980
|
-
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.
|
|
15981
|
-
"integrity": "sha512-
|
|
16039
|
+
"version": "3.3.35",
|
|
16040
|
+
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.35.tgz",
|
|
16041
|
+
"integrity": "sha512-P+DCMASlsH+QaKkDpekKrP5pLls767PPs+/LrlVbKnEnY5tMpEUa2C6U4gRsdFZengOqxdCIqy16R22Q3pLB6Q==",
|
|
15982
16042
|
"dev": true,
|
|
15983
16043
|
"requires": {
|
|
15984
16044
|
"@types/docker-modem": "*",
|
|
@@ -15992,12 +16052,6 @@
|
|
|
15992
16052
|
"integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==",
|
|
15993
16053
|
"dev": true
|
|
15994
16054
|
},
|
|
15995
|
-
"@types/gensync": {
|
|
15996
|
-
"version": "1.0.4",
|
|
15997
|
-
"resolved": "https://registry.npmjs.org/@types/gensync/-/gensync-1.0.4.tgz",
|
|
15998
|
-
"integrity": "sha512-C3YYeRQWp2fmq9OryX+FoDy8nXS6scQ7dPptD8LnFDAUNcKWJjXQKDNJD3HVm+kOUsXhTOkpi69vI4EuAr95bA==",
|
|
15999
|
-
"dev": true
|
|
16000
|
-
},
|
|
16001
16055
|
"@types/graceful-fs": {
|
|
16002
16056
|
"version": "4.1.7",
|
|
16003
16057
|
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz",
|
|
@@ -16074,9 +16128,9 @@
|
|
|
16074
16128
|
"dev": true
|
|
16075
16129
|
},
|
|
16076
16130
|
"@types/node": {
|
|
16077
|
-
"version": "22.
|
|
16078
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.
|
|
16079
|
-
"integrity": "sha512-
|
|
16131
|
+
"version": "22.13.9",
|
|
16132
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.9.tgz",
|
|
16133
|
+
"integrity": "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==",
|
|
16080
16134
|
"requires": {
|
|
16081
16135
|
"undici-types": "~6.20.0"
|
|
16082
16136
|
}
|
|
@@ -17514,9 +17568,9 @@
|
|
|
17514
17568
|
"dev": true
|
|
17515
17569
|
},
|
|
17516
17570
|
"debug": {
|
|
17517
|
-
"version": "4.
|
|
17518
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.
|
|
17519
|
-
"integrity": "sha512-
|
|
17571
|
+
"version": "4.4.0",
|
|
17572
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
|
17573
|
+
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
|
17520
17574
|
"requires": {
|
|
17521
17575
|
"ms": "^2.1.3"
|
|
17522
17576
|
}
|
|
@@ -17770,6 +17824,16 @@
|
|
|
17770
17824
|
"engine.io-parser": "~5.2.1",
|
|
17771
17825
|
"ws": "~8.17.1",
|
|
17772
17826
|
"xmlhttprequest-ssl": "~2.1.1"
|
|
17827
|
+
},
|
|
17828
|
+
"dependencies": {
|
|
17829
|
+
"debug": {
|
|
17830
|
+
"version": "4.3.7",
|
|
17831
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
17832
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
17833
|
+
"requires": {
|
|
17834
|
+
"ms": "^2.1.3"
|
|
17835
|
+
}
|
|
17836
|
+
}
|
|
17773
17837
|
}
|
|
17774
17838
|
},
|
|
17775
17839
|
"engine.io-parser": {
|
|
@@ -21704,9 +21768,9 @@
|
|
|
21704
21768
|
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
|
21705
21769
|
},
|
|
21706
21770
|
"semver": {
|
|
21707
|
-
"version": "7.
|
|
21708
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
21709
|
-
"integrity": "sha512-
|
|
21771
|
+
"version": "7.7.1",
|
|
21772
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
|
21773
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="
|
|
21710
21774
|
},
|
|
21711
21775
|
"set-function-name": {
|
|
21712
21776
|
"version": "2.0.1",
|
|
@@ -21809,6 +21873,16 @@
|
|
|
21809
21873
|
"debug": "~4.3.2",
|
|
21810
21874
|
"engine.io-client": "~6.6.1",
|
|
21811
21875
|
"socket.io-parser": "~4.2.4"
|
|
21876
|
+
},
|
|
21877
|
+
"dependencies": {
|
|
21878
|
+
"debug": {
|
|
21879
|
+
"version": "4.3.7",
|
|
21880
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
21881
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
21882
|
+
"requires": {
|
|
21883
|
+
"ms": "^2.1.3"
|
|
21884
|
+
}
|
|
21885
|
+
}
|
|
21812
21886
|
}
|
|
21813
21887
|
},
|
|
21814
21888
|
"socket.io-parser": {
|
|
@@ -21818,6 +21892,16 @@
|
|
|
21818
21892
|
"requires": {
|
|
21819
21893
|
"@socket.io/component-emitter": "~3.1.0",
|
|
21820
21894
|
"debug": "~4.3.1"
|
|
21895
|
+
},
|
|
21896
|
+
"dependencies": {
|
|
21897
|
+
"debug": {
|
|
21898
|
+
"version": "4.3.7",
|
|
21899
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
21900
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
21901
|
+
"requires": {
|
|
21902
|
+
"ms": "^2.1.3"
|
|
21903
|
+
}
|
|
21904
|
+
}
|
|
21821
21905
|
}
|
|
21822
21906
|
},
|
|
21823
21907
|
"socket.io-stream": {
|
|
@@ -21827,6 +21911,16 @@
|
|
|
21827
21911
|
"requires": {
|
|
21828
21912
|
"component-bind": "~1.0.0",
|
|
21829
21913
|
"debug": "~4.3.4"
|
|
21914
|
+
},
|
|
21915
|
+
"dependencies": {
|
|
21916
|
+
"debug": {
|
|
21917
|
+
"version": "4.3.7",
|
|
21918
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
21919
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
21920
|
+
"requires": {
|
|
21921
|
+
"ms": "^2.1.3"
|
|
21922
|
+
}
|
|
21923
|
+
}
|
|
21830
21924
|
}
|
|
21831
21925
|
},
|
|
21832
21926
|
"socks": {
|
|
@@ -22400,9 +22494,9 @@
|
|
|
22400
22494
|
}
|
|
22401
22495
|
},
|
|
22402
22496
|
"typescript": {
|
|
22403
|
-
"version": "5.
|
|
22404
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
22405
|
-
"integrity": "sha512-
|
|
22497
|
+
"version": "5.8.2",
|
|
22498
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
|
22499
|
+
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
|
22406
22500
|
"dev": true
|
|
22407
22501
|
},
|
|
22408
22502
|
"typical": {
|
|
@@ -22628,9 +22722,9 @@
|
|
|
22628
22722
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
|
22629
22723
|
},
|
|
22630
22724
|
"uuid": {
|
|
22631
|
-
"version": "11.0
|
|
22632
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.
|
|
22633
|
-
"integrity": "sha512-
|
|
22725
|
+
"version": "11.1.0",
|
|
22726
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
|
|
22727
|
+
"integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A=="
|
|
22634
22728
|
},
|
|
22635
22729
|
"v8-to-istanbul": {
|
|
22636
22730
|
"version": "9.1.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"description": "The VIP Javascript library & CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"devDependencies": {
|
|
110
110
|
"@automattic/eslint-plugin-wpvip": "0.13.0",
|
|
111
111
|
"@babel/cli": "7.26.4",
|
|
112
|
-
"@babel/core": "7.26.
|
|
113
|
-
"@babel/preset-env": "7.26.
|
|
112
|
+
"@babel/core": "7.26.9",
|
|
113
|
+
"@babel/preset-env": "7.26.9",
|
|
114
114
|
"@babel/preset-typescript": "7.26.0",
|
|
115
115
|
"@jest/globals": "^29.7.0",
|
|
116
116
|
"@jest/test-sequencer": "^29.7.0",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"cli-table3": "^0.6.3",
|
|
152
152
|
"configstore": "5.0.1",
|
|
153
153
|
"copy-dir": "0.4.0",
|
|
154
|
-
"debug": "4.
|
|
154
|
+
"debug": "4.4.0",
|
|
155
155
|
"ejs": "^3.1.8",
|
|
156
156
|
"enquirer": "2.4.1",
|
|
157
157
|
"fetch-retry": "^6.0.0",
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"node-stream-zip": "1.15.0",
|
|
167
167
|
"open": "^10.0.0",
|
|
168
168
|
"proxy-from-env": "^1.1.0",
|
|
169
|
-
"semver": "7.
|
|
169
|
+
"semver": "7.7.1",
|
|
170
170
|
"shelljs": "^0.8.5",
|
|
171
171
|
"single-line-log": "1.1.2",
|
|
172
172
|
"socket.io-client": "^4.5.3",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"socks-proxy-agent": "^5.0.1",
|
|
175
175
|
"tar": "^7.4.0",
|
|
176
176
|
"update-notifier": "7.3.1",
|
|
177
|
-
"uuid": "11.0
|
|
177
|
+
"uuid": "11.1.0",
|
|
178
178
|
"xdg-basedir": "^4.0.0",
|
|
179
179
|
"xml2js": "^0.5.0"
|
|
180
180
|
},
|