@automattic/vip 3.8.6 → 3.8.8
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/dist/bin/vip-import-sql.js +1 -1
- package/dist/bin/vip-logs.js +14 -17
- package/dist/bin/vip-search-replace.js +7 -7
- package/dist/bin/vip-slowlogs.js +3 -2
- package/dist/bin/vip.js +1 -1
- package/dist/commands/dev-env-sync-sql.js +17 -2
- package/dist/lib/cli/command.js +1 -1
- package/docs/CHANGELOG.md +33 -11
- package/npm-shrinkwrap.json +14 -14
- package/package.json +1 -1
|
@@ -339,7 +339,7 @@ void (0, _command.default)({
|
|
|
339
339
|
requiredArgs: 1,
|
|
340
340
|
module: 'import-sql',
|
|
341
341
|
usage
|
|
342
|
-
}).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', '
|
|
342
|
+
}).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
343
|
const {
|
|
344
344
|
app,
|
|
345
345
|
env
|
package/dist/bin/vip-logs.js
CHANGED
|
@@ -30,6 +30,9 @@ const MAX_POLLING_DELAY_IN_SECONDS = 300;
|
|
|
30
30
|
* @param {string[]} arg
|
|
31
31
|
*/
|
|
32
32
|
async function getLogs(arg, opt) {
|
|
33
|
+
opt.type ??= 'app';
|
|
34
|
+
opt.limit ??= LIMIT_DEFAULT;
|
|
35
|
+
opt.format ??= 'table';
|
|
33
36
|
validateInputs(opt.type, opt.limit, opt.format);
|
|
34
37
|
const trackingParams = getBaseTrackingParams(opt);
|
|
35
38
|
await (0, _tracker.trackEvent)('logs_command_execute', trackingParams);
|
|
@@ -177,9 +180,6 @@ function printLogs(logs, format) {
|
|
|
177
180
|
* @param {string} format
|
|
178
181
|
*/
|
|
179
182
|
function validateInputs(type, limit, format) {
|
|
180
|
-
if (limit === undefined) {
|
|
181
|
-
limit = LIMIT_DEFAULT;
|
|
182
|
-
}
|
|
183
183
|
if (!ALLOWED_TYPES.includes(type)) {
|
|
184
184
|
exit.withError(`Invalid type: ${type}. The supported types are: ${ALLOWED_TYPES.join(', ')}.`);
|
|
185
185
|
}
|
|
@@ -187,7 +187,7 @@ function validateInputs(type, limit, format) {
|
|
|
187
187
|
exit.withError(`Invalid format: ${format}. The supported formats are: ${ALLOWED_FORMATS.join(', ')}.`);
|
|
188
188
|
}
|
|
189
189
|
if (!Number.isInteger(limit) || limit < LIMIT_MIN || limit > logsLib.LIMIT_MAX) {
|
|
190
|
-
exit.withError(`Invalid limit: ${limit}.
|
|
190
|
+
exit.withError(`Invalid limit: ${limit}. Set the limit to an integer between ${LIMIT_MIN} and ${logsLib.LIMIT_MAX}.`);
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
const appQuery = exports.appQuery = `
|
|
@@ -209,21 +209,18 @@ const appQuery = exports.appQuery = `
|
|
|
209
209
|
appQuery,
|
|
210
210
|
envContext: true,
|
|
211
211
|
module: 'logs'
|
|
212
|
-
}).option('type', '
|
|
212
|
+
}).option('type', 'Specify the type of Runtime Logs to retrieve. Accepts "batch" (only valid for WordPress environments).', 'app')
|
|
213
213
|
// The default limit is set manually in the validateInputs function to address validation issues, avoiding incorrect replacement of the default value.
|
|
214
|
-
.option('limit', `The maximum number of
|
|
215
|
-
usage: 'vip @
|
|
216
|
-
description: '
|
|
217
|
-
}, {
|
|
218
|
-
usage: 'vip @mysite.production logs --type batch',
|
|
219
|
-
description: 'Get the most recent batch logs'
|
|
214
|
+
.option('limit', `The maximum number of entries to return. Accepts an integer value between 1 and 5000 (defaults to ${LIMIT_DEFAULT}).`).option('follow', 'Output new entries as they are generated.').option('format', 'Render output in a particular format. Accepts “csv”, and “json”.', 'table').examples([{
|
|
215
|
+
usage: 'vip @example-app.production logs',
|
|
216
|
+
description: 'Retrieve up to 500 of the most recent entries of application Runtime Logs from web containers.'
|
|
220
217
|
}, {
|
|
221
|
-
usage: 'vip @
|
|
222
|
-
description: '
|
|
218
|
+
usage: 'vip @example-app.production logs --type=batch',
|
|
219
|
+
description: 'Retrieve up to 500 of the most recent entries generated by cron tasks or WP-CLI commands from batch containers.'
|
|
223
220
|
}, {
|
|
224
|
-
usage: 'vip @
|
|
225
|
-
description: '
|
|
221
|
+
usage: 'vip @example-app.production logs --limit=100',
|
|
222
|
+
description: 'Retrieve up to 100 of the most recent entries of application logs.'
|
|
226
223
|
}, {
|
|
227
|
-
usage: 'vip @
|
|
228
|
-
description: '
|
|
224
|
+
usage: 'vip @example-app.production logs --type=batch --limit=800 --format=csv',
|
|
225
|
+
description: 'Retrieve up to 800 of the most recent entries of batch logs and output them in CSV format.'
|
|
229
226
|
}]).argv(process.argv, getLogs);
|
|
@@ -14,22 +14,22 @@ const debug = (0, _debug.default)('@automattic/vip:bin:vip-search-replace');
|
|
|
14
14
|
const examples = [
|
|
15
15
|
// `search-replace` flag
|
|
16
16
|
{
|
|
17
|
-
usage: 'vip search-replace
|
|
18
|
-
description: '
|
|
17
|
+
usage: 'vip search-replace file.sql --search-replace="from,to"',
|
|
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
20
|
// `in-place` flag
|
|
21
21
|
{
|
|
22
|
-
usage: 'vip search-replace
|
|
23
|
-
description: 'Perform
|
|
22
|
+
usage: 'vip search-replace file.sql --search-replace="from,to" --in-place',
|
|
23
|
+
description: 'Perform the search and replace operation on the local input file "file.sql" and overwrite the file with the results.'
|
|
24
24
|
},
|
|
25
25
|
// `output` flag
|
|
26
26
|
{
|
|
27
|
-
usage: 'vip search-replace
|
|
28
|
-
description: '
|
|
27
|
+
usage: 'vip search-replace file.sql --search-replace="from,to" --output=output-file.sql',
|
|
28
|
+
description: 'Perform the search and replace operation and save the results to a local clone of the input file named "output-file.sql".'
|
|
29
29
|
}];
|
|
30
30
|
(0, _command.default)({
|
|
31
31
|
requiredArgs: 1
|
|
32
|
-
}).option('search-replace', '
|
|
32
|
+
}).option('search-replace', 'A comma-separated pair of strings that specify the values to search for and replace (e.g. --search-replace="from,to").').option('in-place', 'Overwrite the local input file with the results of the search and replace operation.').option('output', 'The local file path used to save a copy of the results from the search and replace operation. Ignored when used with the --in-place option.').examples(examples).argv(process.argv, async (arg, opt) => {
|
|
33
33
|
// TODO: tracks event for usage of this command stand alone
|
|
34
34
|
const {
|
|
35
35
|
searchReplace,
|
package/dist/bin/vip-slowlogs.js
CHANGED
|
@@ -25,6 +25,7 @@ const MAX_POLLING_DELAY_IN_SECONDS = 300;
|
|
|
25
25
|
const exampleUsage = 'vip @example-app.develop slowlogs';
|
|
26
26
|
const baseUsage = 'vip slowlogs';
|
|
27
27
|
async function getSlowlogs(arg, opt) {
|
|
28
|
+
opt.format ??= 'table';
|
|
28
29
|
validateInputs(opt.limit, opt.format);
|
|
29
30
|
const trackingParams = getBaseTrackingParams(opt);
|
|
30
31
|
await (0, _tracker.trackEvent)('slowlogs_command_execute', trackingParams);
|
|
@@ -147,7 +148,7 @@ function validateInputs(limit, format) {
|
|
|
147
148
|
exit.withError(`Invalid format: ${format}. The supported formats are: ${ALLOWED_FORMATS.join(', ')}.`);
|
|
148
149
|
}
|
|
149
150
|
if (!Number.isInteger(limit) || limit < LIMIT_MIN || limit > slowlogsLib.LIMIT_MAX) {
|
|
150
|
-
exit.withError(`Invalid limit: ${limit}.
|
|
151
|
+
exit.withError(`Invalid limit: ${limit}. Set the limit to an integer between ${LIMIT_MIN} and ${slowlogsLib.LIMIT_MAX}.`);
|
|
151
152
|
}
|
|
152
153
|
}
|
|
153
154
|
const appQuery = exports.appQuery = `
|
|
@@ -171,7 +172,7 @@ void (0, _command.default)({
|
|
|
171
172
|
format: false,
|
|
172
173
|
module: 'slowlogs',
|
|
173
174
|
usage: baseUsage
|
|
174
|
-
}).option('limit', '
|
|
175
|
+
}).option('limit', 'Set the maximum number of log entries. Accepts an integer value between 1 and 500.', 500).option('format', 'Render output in a particular format. Accepts “csv”, and “json”.', 'table').examples([{
|
|
175
176
|
description: 'Retrieve up to 500 of the most recent entries from the MySQL slow query logs in the default format.',
|
|
176
177
|
usage: exampleUsage
|
|
177
178
|
}, {
|
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', 'Log out the current authenticated VIP-CLI user.').command('app', 'Interact with applications that the current authenticated VIP-CLI user has permission to access.').command('backup', 'Generate a backup of an environment.').command('cache', 'Manage page cache for an environment.').command('config', 'Manage environment configurations.').command('dev-env', 'Create and manage VIP Local Development Environments.').command('export', 'Export a copy of data associated with an environment.').command('import', 'Import media or SQL database files to an environment.').command('logs', '
|
|
25
|
+
cmd.command('logout', 'Log out the current authenticated VIP-CLI user.').command('app', 'Interact with applications that the current authenticated VIP-CLI user has permission to access.').command('backup', 'Generate a backup of an environment.').command('cache', 'Manage page cache for an environment.').command('config', 'Manage environment configurations.').command('dev-env', 'Create and manage VIP Local Development Environments.').command('export', 'Export a copy of data associated with an environment.').command('import', 'Import media or SQL database files to an environment.').command('logs', 'Retrieve Runtime Logs from an environment.').command('search-replace', 'Search for a string in a local SQL file and replace it with a new string.').command('slowlogs', 'Retrieve MySQL slow query logs from an environment.').command('db', "Access an environment's database.").command('sync', 'Sync the database from production to a non-production environment.').command('whoami', 'Retrieve details about the current authenticated VIP-CLI user.').command('validate', 'Validate your VIP application and environment').command('wp', 'Execute a WP-CLI command against an environment.');
|
|
26
26
|
cmd.argv(process.argv);
|
|
27
27
|
};
|
|
28
28
|
|
|
@@ -213,6 +213,20 @@ class DevEnvSyncSQLCommand {
|
|
|
213
213
|
if (!networkSites) {
|
|
214
214
|
return;
|
|
215
215
|
}
|
|
216
|
+
const prologue = `
|
|
217
|
+
DROP PROCEDURE IF EXISTS vip_sync_update_blog_domains;
|
|
218
|
+
DELIMITER $$
|
|
219
|
+
CREATE PROCEDURE vip_sync_update_blog_domains()
|
|
220
|
+
BEGIN
|
|
221
|
+
IF EXISTS (SELECT * FROM information_schema.tables WHERE table_schema = 'wordpress' AND table_name = 'wp_blogs') THEN
|
|
222
|
+
`;
|
|
223
|
+
const epilogue = `
|
|
224
|
+
END IF;
|
|
225
|
+
END$$
|
|
226
|
+
DELIMITER ;
|
|
227
|
+
CALL vip_sync_update_blog_domains();
|
|
228
|
+
DROP PROCEDURE vip_sync_update_blog_domains;
|
|
229
|
+
`;
|
|
216
230
|
const queries = [];
|
|
217
231
|
for (const site of networkSites) {
|
|
218
232
|
if (!site?.blogId || !site?.homeUrl) {
|
|
@@ -220,10 +234,11 @@ class DevEnvSyncSQLCommand {
|
|
|
220
234
|
}
|
|
221
235
|
const oldDomain = new URL(site.homeUrl).hostname;
|
|
222
236
|
const newDomain = site.blogId !== 1 ? `${this.slugifyDomain(oldDomain)}.${this.landoDomain}` : this.landoDomain;
|
|
223
|
-
queries.push(`UPDATE wp_blogs SET domain = '${newDomain}' WHERE blog_id = ${Number(site.blogId)};`);
|
|
237
|
+
queries.push(` UPDATE wp_blogs SET domain = '${newDomain}' WHERE blog_id = ${Number(site.blogId)};`);
|
|
224
238
|
}
|
|
225
239
|
if (queries.length) {
|
|
226
|
-
|
|
240
|
+
const sql = `${prologue}\n${queries.join('\n')}\n${epilogue}`;
|
|
241
|
+
await _fs.default.promises.appendFile(this.sqlFile, sql);
|
|
227
242
|
}
|
|
228
243
|
}
|
|
229
244
|
|
package/dist/lib/cli/command.js
CHANGED
|
@@ -534,7 +534,7 @@ function _default(opts) {
|
|
|
534
534
|
_args.default.option('force', 'Skip confirmation.', false);
|
|
535
535
|
}
|
|
536
536
|
if (_opts.format) {
|
|
537
|
-
_args.default.option('format', 'Render output in a particular format. Accepts
|
|
537
|
+
_args.default.option('format', 'Render output in a particular format. Accepts “csv”, and “json”.', 'table');
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
// Add help and version to all subcommands
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,30 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
### 3.8.8
|
|
4
|
+
|
|
5
|
+
* build(deps-dev): bump @types/dockerode from 3.3.31 to 3.3.32
|
|
6
|
+
* Update the `search-replace` command to follow the VIP-CLI style guide
|
|
7
|
+
* Update the`vip logs` command to follow the VIP-CLI style guide
|
|
8
|
+
* build(deps-dev): bump @types/node from 22.9.0 to 22.9.1
|
|
9
|
+
* build(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
|
|
10
|
+
* build(deps): bump step-security/harden-runner from 2.10.1 to 2.10.2
|
|
11
|
+
|
|
12
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.7...3.8.8
|
|
13
|
+
|
|
14
|
+
### 3.8.7
|
|
15
|
+
|
|
16
|
+
* fix(dev-env): SQL sync for single sites
|
|
17
|
+
|
|
18
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.6...3.8.7
|
|
19
|
+
|
|
20
|
+
### 3.8.6
|
|
21
|
+
|
|
22
|
+
* Updating Node.js versions and standardize the format
|
|
23
|
+
|
|
24
|
+
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.5...3.8.6
|
|
25
|
+
|
|
26
|
+
### 3.8.5
|
|
4
27
|
|
|
5
|
-
## What's Changed
|
|
6
28
|
* build(deps-dev): bump the babel group with 4 updates
|
|
7
29
|
* build(deps-dev): bump typescript from 5.6.2 to 5.6.3
|
|
8
30
|
* Update the sync command to follow the VIP-CLI style guide
|
|
@@ -41,7 +63,7 @@
|
|
|
41
63
|
|
|
42
64
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.4...3.8.5
|
|
43
65
|
|
|
44
|
-
|
|
66
|
+
### 3.8.4
|
|
45
67
|
|
|
46
68
|
* build(deps): bump step-security/harden-runner from 2.9.1 to 2.10.1
|
|
47
69
|
* build(deps-dev): bump @types/jest from 29.5.12 to 29.5.13 in the testing group
|
|
@@ -55,7 +77,7 @@
|
|
|
55
77
|
|
|
56
78
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.3...3.8.4
|
|
57
79
|
|
|
58
|
-
|
|
80
|
+
### 3.8.3
|
|
59
81
|
|
|
60
82
|
* build(deps): bump adm-zip from 0.5.15 to 0.5.16
|
|
61
83
|
* build(deps): bump debug from 4.3.6 to 4.3.7
|
|
@@ -67,7 +89,7 @@
|
|
|
67
89
|
|
|
68
90
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.2...3.8.3
|
|
69
91
|
|
|
70
|
-
|
|
92
|
+
### 3.8.2
|
|
71
93
|
|
|
72
94
|
* chore(deps): make `node-fetch` 2.x depend on `whatwg-url` 14.x to address deprecations
|
|
73
95
|
* build(deps-dev): bump nock from 13.5.4 to 13.5.5
|
|
@@ -82,14 +104,14 @@
|
|
|
82
104
|
|
|
83
105
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.1...3.8.2
|
|
84
106
|
|
|
85
|
-
|
|
107
|
+
### 3.8.1
|
|
86
108
|
|
|
87
109
|
* fix(dev-env): clean up data after `vip dev-env sync sql`
|
|
88
110
|
* security: fix high severity CVE-2024-39338 in `axios`
|
|
89
111
|
|
|
90
112
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.8.0...3.8.1
|
|
91
113
|
|
|
92
|
-
|
|
114
|
+
### 3.8.0
|
|
93
115
|
|
|
94
116
|
* build(deps-dev): bump @babel/preset-env from 7.24.8 to 7.25.0 in the babel group
|
|
95
117
|
* build(deps): bump debug from 4.3.5 to 4.3.6
|
|
@@ -104,7 +126,7 @@
|
|
|
104
126
|
|
|
105
127
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.7.1...3.8.0
|
|
106
128
|
|
|
107
|
-
|
|
129
|
+
### 3.7.1
|
|
108
130
|
|
|
109
131
|
* build(deps): bump step-security/harden-runner from 2.8.1 to 2.9.0
|
|
110
132
|
* build(deps): bump semver from 7.6.2 to 7.6.3
|
|
@@ -120,7 +142,7 @@
|
|
|
120
142
|
|
|
121
143
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.7.0...3.7.1
|
|
122
144
|
|
|
123
|
-
|
|
145
|
+
### 3.7.0
|
|
124
146
|
|
|
125
147
|
* build(deps-dev): bump @automattic/eslint-plugin-wpvip from 0.12.0 to 0.13.0
|
|
126
148
|
* build(deps-dev): bump the babel group with 3 updates
|
|
@@ -132,14 +154,14 @@
|
|
|
132
154
|
|
|
133
155
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.6.0...3.7.0
|
|
134
156
|
|
|
135
|
-
|
|
157
|
+
### 3.6.0
|
|
136
158
|
|
|
137
159
|
* build(deps-dev): bump rimraf from 5.0.7 to 5.0.8
|
|
138
160
|
* feat(dev-env): add DNS check to health check to ensure domains resolve correctly
|
|
139
161
|
|
|
140
162
|
**Full Changelog**: https://github.com/Automattic/vip-cli/compare/3.5.1...3.6.0
|
|
141
163
|
|
|
142
|
-
|
|
164
|
+
### 3.5.1
|
|
143
165
|
|
|
144
166
|
* fix(dev-env): display cron status in `vip dev-env info --extended`
|
|
145
167
|
* build(deps-dev): bump typescript from 5.5.2 to 5.5.3
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.8",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "3.8.
|
|
9
|
+
"version": "3.8.8",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -3526,9 +3526,9 @@
|
|
|
3526
3526
|
}
|
|
3527
3527
|
},
|
|
3528
3528
|
"node_modules/@types/dockerode": {
|
|
3529
|
-
"version": "3.3.
|
|
3530
|
-
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.
|
|
3531
|
-
"integrity": "sha512-
|
|
3529
|
+
"version": "3.3.32",
|
|
3530
|
+
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.32.tgz",
|
|
3531
|
+
"integrity": "sha512-xxcG0g5AWKtNyh7I7wswLdFvym4Mlqks5ZlKzxEUrGHS0r0PUOfxm2T0mspwu10mHQqu3Ck3MI3V2HqvLWE1fg==",
|
|
3532
3532
|
"dev": true,
|
|
3533
3533
|
"dependencies": {
|
|
3534
3534
|
"@types/docker-modem": "*",
|
|
@@ -3618,9 +3618,9 @@
|
|
|
3618
3618
|
"dev": true
|
|
3619
3619
|
},
|
|
3620
3620
|
"node_modules/@types/node": {
|
|
3621
|
-
"version": "22.9.
|
|
3622
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.
|
|
3623
|
-
"integrity": "sha512-
|
|
3621
|
+
"version": "22.9.1",
|
|
3622
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.1.tgz",
|
|
3623
|
+
"integrity": "sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==",
|
|
3624
3624
|
"dependencies": {
|
|
3625
3625
|
"undici-types": "~6.19.8"
|
|
3626
3626
|
}
|
|
@@ -15786,9 +15786,9 @@
|
|
|
15786
15786
|
}
|
|
15787
15787
|
},
|
|
15788
15788
|
"@types/dockerode": {
|
|
15789
|
-
"version": "3.3.
|
|
15790
|
-
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.
|
|
15791
|
-
"integrity": "sha512-
|
|
15789
|
+
"version": "3.3.32",
|
|
15790
|
+
"resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.32.tgz",
|
|
15791
|
+
"integrity": "sha512-xxcG0g5AWKtNyh7I7wswLdFvym4Mlqks5ZlKzxEUrGHS0r0PUOfxm2T0mspwu10mHQqu3Ck3MI3V2HqvLWE1fg==",
|
|
15792
15792
|
"dev": true,
|
|
15793
15793
|
"requires": {
|
|
15794
15794
|
"@types/docker-modem": "*",
|
|
@@ -15878,9 +15878,9 @@
|
|
|
15878
15878
|
"dev": true
|
|
15879
15879
|
},
|
|
15880
15880
|
"@types/node": {
|
|
15881
|
-
"version": "22.9.
|
|
15882
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.
|
|
15883
|
-
"integrity": "sha512-
|
|
15881
|
+
"version": "22.9.1",
|
|
15882
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.1.tgz",
|
|
15883
|
+
"integrity": "sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==",
|
|
15884
15884
|
"requires": {
|
|
15885
15885
|
"undici-types": "~6.19.8"
|
|
15886
15886
|
}
|