netlify-cli 17.15.6 → 17.15.7

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.
@@ -10,7 +10,8 @@
10
10
  * @returns {Object<string,string[]>}
11
11
  */
12
12
  export declare const headersForPath: (headers: any, path: any) => any;
13
- export declare const parseHeaders: ({ configPath, headersFiles }: {
13
+ export declare const parseHeaders: ({ config, configPath, headersFiles }: {
14
+ config: any;
14
15
  configPath: any;
15
16
  headersFiles: any;
16
17
  }) => Promise<Header[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"headers.d.ts","sourceRoot":"","sources":["../../src/utils/headers.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AAEH,eAAO,MAAM,cAAc,kCAK1B,CAAA;AAQD,eAAO,MAAM,YAAY;;;MAAkD,QAAQ,MAAM,EAAE,CAQ1F,CAAA;AAiBD,eAAO,MAAM,cAAc,uBAAuB,CAAA;AAClD,eAAO,MAAM,eAAe,wBAAwB,CAAA;AACpD,eAAO,MAAM,WAAW,oBAAoB,CAAA"}
1
+ {"version":3,"file":"headers.d.ts","sourceRoot":"","sources":["../../src/utils/headers.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AAEH,eAAO,MAAM,cAAc,kCAK1B,CAAA;AAQD,eAAO,MAAM,YAAY;;;;MAA0D,QAAQ,MAAM,EAAE,CASlG,CAAA;AAiBD,eAAO,MAAM,cAAc,uBAAuB,CAAA;AAClD,eAAO,MAAM,eAAe,wBAAwB,CAAA;AACpD,eAAO,MAAM,WAAW,oBAAoB,CAAA"}
@@ -23,11 +23,12 @@ const getHeaderValues = function ({ values }) {
23
23
  return values;
24
24
  };
25
25
  // @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'an... Remove this comment to see the full error message
26
- export const parseHeaders = async function ({ configPath, headersFiles }) {
26
+ export const parseHeaders = async function ({ config, configPath, headersFiles }) {
27
27
  const { errors, headers } = await parseAllHeaders({
28
28
  headersFiles,
29
29
  netlifyConfigPath: configPath,
30
30
  minimal: false,
31
+ configHeaders: config?.headers || [],
31
32
  });
32
33
  handleHeadersErrors(errors);
33
34
  return headers;
@@ -1 +1 @@
1
- {"version":3,"file":"proxy.d.ts","sourceRoot":"","sources":["../../src/utils/proxy.ts"],"names":[],"mappings":"AAmwBA;;;GAGG;AAEH,eAAO,MAAM,WAAW,2BAGvB,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;qBA8HtB,CAAA"}
1
+ {"version":3,"file":"proxy.d.ts","sourceRoot":"","sources":["../../src/utils/proxy.ts"],"names":[],"mappings":"AAqxBA;;;GAGG;AAEH,eAAO,MAAM,WAAW,2BAGvB,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;qBAgItB,CAAA"}
@@ -351,8 +351,25 @@ const reqToURL = function (req, pathname) {
351
351
  return new URL(pathname, `${req.protocol || (req.headers.scheme && `${req.headers.scheme}:`) || 'http:'}//${req.headers.host || req.hostname}`);
352
352
  };
353
353
  const MILLISEC_TO_SEC = 1e3;
354
- // @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'an... Remove this comment to see the full error message
355
- const initializeProxy = async function ({ configPath, distDir, env, host, imageProxy, port, projectDir, siteInfo }) {
354
+ const initializeProxy = async function ({
355
+ // @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'any... Remove this comment to see the full error message
356
+ configPath,
357
+ // @ts-expect-error TS(7031) FIXME: Binding element 'distDir' implicitly has an 'any... Remove this comment to see the full error message
358
+ distDir,
359
+ // @ts-expect-error TS(7031) FIXME: Binding element 'env' implicitly has an 'any... Remove this comment to see the full error message
360
+ env,
361
+ // @ts-expect-error TS(7031) FIXME: Binding element 'host' implicitly has an 'any... Remove this comment to see the full error message
362
+ host,
363
+ // @ts-expect-error TS(7031) FIXME: Binding element 'imageProxy' implicitly has an 'any... Remove this comment to see the full error message
364
+ imageProxy,
365
+ // @ts-expect-error TS(7031) FIXME: Binding element 'port' implicitly has an 'any... Remove this comment to see the full error message
366
+ port,
367
+ // @ts-expect-error TS(7031) FIXME: Binding element 'projectDir' implicitly has an 'any... Remove this comment to see the full error message
368
+ projectDir,
369
+ // @ts-expect-error TS(7031) FIXME: Binding element 'siteInfo' implicitly has an 'any... Remove this comment to see the full error message
370
+ siteInfo,
371
+ // @ts-expect-error TS(7031) FIXME: Binding element 'config' implicitly has an 'any... Remove this comment to see the full error message
372
+ config, }) {
356
373
  const proxy = httpProxy.createProxyServer({
357
374
  selfHandleResponse: true,
358
375
  target: {
@@ -361,12 +378,12 @@ const initializeProxy = async function ({ configPath, distDir, env, host, imageP
361
378
  },
362
379
  });
363
380
  const headersFiles = [...new Set([path.resolve(projectDir, '_headers'), path.resolve(distDir, '_headers')])];
364
- let headers = await parseHeaders({ headersFiles, configPath });
381
+ let headers = await parseHeaders({ headersFiles, configPath, config });
365
382
  const watchedHeadersFiles = configPath === undefined ? headersFiles : [...headersFiles, configPath];
366
383
  onChanges(watchedHeadersFiles, async () => {
367
384
  const existingHeadersFiles = await pFilter(watchedHeadersFiles, fileExistsAsync);
368
385
  console.log(`${NETLIFYDEVLOG} Reloading headers files from`, existingHeadersFiles.map((headerFile) => path.relative(projectDir, headerFile)));
369
- headers = await parseHeaders({ headersFiles, configPath });
386
+ headers = await parseHeaders({ headersFiles, configPath, config });
370
387
  });
371
388
  // @ts-expect-error TS(2339) FIXME: Property 'before' does not exist on type 'Server'.
372
389
  proxy.before('web', 'stream', (req) => {
@@ -714,8 +731,10 @@ state, }) {
714
731
  configPath,
715
732
  siteInfo,
716
733
  imageProxy,
734
+ config,
717
735
  });
718
736
  const rewriter = await createRewriter({
737
+ config,
719
738
  distDir: settings.dist,
720
739
  projectDir,
721
740
  jwtSecret: settings.jwtSecret,
@@ -1,4 +1,5 @@
1
- export declare const parseRedirects: ({ configPath, redirectsFiles }: {
1
+ export declare const parseRedirects: ({ config, configPath, redirectsFiles }: {
2
+ config: any;
2
3
  configPath: any;
3
4
  redirectsFiles: any;
4
5
  }) => Promise<any[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"redirects.d.ts","sourceRoot":"","sources":["../../src/utils/redirects.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,cAAc;;;oBAU1B,CAAA"}
1
+ {"version":3,"file":"redirects.d.ts","sourceRoot":"","sources":["../../src/utils/redirects.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,cAAc;;;;oBAU1B,CAAA"}
@@ -3,12 +3,12 @@ import { NETLIFYDEVERR, log } from './command-helpers.js';
3
3
  // Parse, normalize and validate all redirects from `_redirects` files
4
4
  // and `netlify.toml`
5
5
  // @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'an... Remove this comment to see the full error message
6
- export const parseRedirects = async function ({ configPath, redirectsFiles }) {
7
- // @ts-expect-error TS(2345) FIXME: Argument of type '{ redirectsFiles: any; netlifyCo... Remove this comment to see the full error message
6
+ export const parseRedirects = async function ({ config, configPath, redirectsFiles }) {
8
7
  const { errors, redirects } = await parseAllRedirects({
9
8
  redirectsFiles,
10
9
  netlifyConfigPath: configPath,
11
10
  minimal: false,
11
+ configRedirects: config?.redirects || [],
12
12
  });
13
13
  handleRedirectParsingErrors(errors);
14
14
  // @ts-expect-error TS(2345) FIXME: Argument of type '({ conditions: { country, langua... Remove this comment to see the full error message
@@ -1,7 +1,8 @@
1
1
  export declare const onChanges: (files: any, listener: any) => void;
2
2
  export declare const getWatchers: () => any[];
3
3
  export declare const getLanguage: (headers: any) => any;
4
- export declare const createRewriter: ({ configPath, distDir, geoCountry, jwtRoleClaim, jwtSecret, projectDir, }: {
4
+ export declare const createRewriter: ({ config, configPath, distDir, geoCountry, jwtRoleClaim, jwtSecret, projectDir, }: {
5
+ config: any;
5
6
  configPath: any;
6
7
  distDir: any;
7
8
  geoCountry: any;
@@ -1 +1 @@
1
- {"version":3,"file":"rules-proxy.d.ts","sourceRoot":"","sources":["../../src/utils/rules-proxy.ts"],"names":[],"mappings":"AAkBA,eAAO,MAAM,SAAS,qCAQrB,CAAA;AAED,eAAO,MAAM,WAAW,aAGvB,CAAA;AAGD,eAAO,MAAM,WAAW,uBAKvB,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;yCA+E1B,CAAA"}
1
+ {"version":3,"file":"rules-proxy.d.ts","sourceRoot":"","sources":["../../src/utils/rules-proxy.ts"],"names":[],"mappings":"AAkBA,eAAO,MAAM,SAAS,qCAQrB,CAAA;AAED,eAAO,MAAM,WAAW,aAGvB,CAAA;AAGD,eAAO,MAAM,WAAW,uBAKvB,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;yCAiF1B,CAAA"}
@@ -32,6 +32,8 @@ export const getLanguage = function (headers) {
32
32
  return 'en';
33
33
  };
34
34
  export const createRewriter = async function ({
35
+ // @ts-expect-error TS(7031) FIXME: Binding element 'config' implicitly has an 'an... Remove this comment to see the full error message
36
+ config,
35
37
  // @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'an... Remove this comment to see the full error message
36
38
  configPath,
37
39
  // @ts-expect-error TS(7031) FIXME: Binding element 'distDir' implicitly has an 'any' ... Remove this comment to see the full error message
@@ -47,12 +49,12 @@ projectDir, }) {
47
49
  // @ts-expect-error TS(7034) FIXME: Variable 'matcher' implicitly has type 'any' in so... Remove this comment to see the full error message
48
50
  let matcher = null;
49
51
  const redirectsFiles = [...new Set([path.resolve(distDir, '_redirects'), path.resolve(projectDir, '_redirects')])];
50
- let redirects = await parseRedirects({ redirectsFiles, configPath });
52
+ let redirects = await parseRedirects({ config, redirectsFiles, configPath });
51
53
  const watchedRedirectFiles = configPath === undefined ? redirectsFiles : [...redirectsFiles, configPath];
52
54
  onChanges(watchedRedirectFiles, async () => {
53
55
  const existingRedirectsFiles = await pFilter(watchedRedirectFiles, fileExistsAsync);
54
56
  console.log(`${NETLIFYDEVLOG} Reloading redirect rules from`, existingRedirectsFiles.map((redirectFile) => path.relative(projectDir, redirectFile)));
55
- redirects = await parseRedirects({ redirectsFiles, configPath });
57
+ redirects = await parseRedirects({ config, redirectsFiles, configPath });
56
58
  matcher = null;
57
59
  });
58
60
  const getMatcher = async () => {
@@ -16,23 +16,38 @@ export declare const runNetlifyBuild: ({ command, env, options, settings, timeli
16
16
  timeline?: string | undefined;
17
17
  }) => Promise<{
18
18
  configPath?: undefined;
19
+ configMutations?: undefined;
19
20
  } | {
20
21
  configPath: string;
22
+ configMutations?: undefined;
23
+ } | {
24
+ configMutations: any;
25
+ configPath?: undefined;
21
26
  }>;
22
27
  /**
23
28
  * @param {Omit<Parameters<typeof runNetlifyBuild>[0], 'timeline'>} options
24
29
  */
25
30
  export declare const runDevTimeline: (options: any) => Promise<{
26
31
  configPath?: undefined;
32
+ configMutations?: undefined;
27
33
  } | {
28
34
  configPath: string;
35
+ configMutations?: undefined;
36
+ } | {
37
+ configMutations: any;
38
+ configPath?: undefined;
29
39
  }>;
30
40
  /**
31
41
  * @param {Omit<Parameters<typeof runNetlifyBuild>[0], 'timeline'>} options
32
42
  */
33
43
  export declare const runBuildTimeline: (options: any) => Promise<{
34
44
  configPath?: undefined;
45
+ configMutations?: undefined;
35
46
  } | {
36
47
  configPath: string;
48
+ configMutations?: undefined;
49
+ } | {
50
+ configMutations: any;
51
+ configPath?: undefined;
37
52
  }>;
38
53
  //# sourceMappingURL=run-build.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"run-build.d.ts","sourceRoot":"","sources":["../../src/utils/run-build.ts"],"names":[],"mappings":"AA+CA;;;;;;;;;GASG;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;EAmG3B,CAAA;AAED;;GAEG;AAEH,eAAO,MAAM,cAAc;;;;EAAgE,CAAA;AAE3F;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;EAAkE,CAAA"}
1
+ {"version":3,"file":"run-build.d.ts","sourceRoot":"","sources":["../../src/utils/run-build.ts"],"names":[],"mappings":"AA+CA;;;;;;;;;GASG;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;EAmG3B,CAAA;AAED;;GAEG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;EAAgE,CAAA;AAE3F;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;EAAkE,CAAA"}
@@ -123,11 +123,11 @@ export const runNetlifyBuild = async ({ command, env = {}, options, settings, ti
123
123
  env,
124
124
  };
125
125
  // Run Netlify Build using the `startDev` entry point.
126
- const { error: startDevError, success } = await startDev(devCommand, startDevOptions);
126
+ const { configMutations, error: startDevError, success } = await startDev(devCommand, startDevOptions);
127
127
  if (!success && startDevError) {
128
128
  error(`Could not start local development server\n\n${startDevError.message}\n\n${startDevError.stack}`);
129
129
  }
130
- return {};
130
+ return { configMutations };
131
131
  };
132
132
  /**
133
133
  * @param {Omit<Parameters<typeof runNetlifyBuild>[0], 'timeline'>} options
@@ -1,24 +1,24 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
- "version": "17.15.6",
3
+ "version": "17.15.7",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "netlify-cli",
9
- "version": "17.15.6",
9
+ "version": "17.15.7",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
13
  "@bugsnag/js": "7.20.2",
14
14
  "@fastify/static": "6.10.2",
15
15
  "@netlify/blobs": "6.4.2",
16
- "@netlify/build": "29.33.3",
16
+ "@netlify/build": "29.33.4",
17
17
  "@netlify/build-info": "7.12.0",
18
- "@netlify/config": "20.10.2",
18
+ "@netlify/config": "20.10.3",
19
19
  "@netlify/edge-bundler": "11.2.2",
20
20
  "@netlify/local-functions-proxy": "1.1.1",
21
- "@netlify/zip-it-and-ship-it": "9.28.4",
21
+ "@netlify/zip-it-and-ship-it": "9.29.0",
22
22
  "@octokit/rest": "19.0.13",
23
23
  "ansi-escapes": "6.2.0",
24
24
  "ansi-styles": "6.2.1",
@@ -83,7 +83,7 @@
83
83
  "log-symbols": "5.1.0",
84
84
  "log-update": "5.0.1",
85
85
  "multiparty": "4.2.3",
86
- "netlify": "13.1.13",
86
+ "netlify": "13.1.14",
87
87
  "netlify-headers-parser": "7.1.3",
88
88
  "netlify-redirect-parser": "14.2.1",
89
89
  "netlify-redirector": "0.5.0",
@@ -1112,22 +1112,22 @@
1112
1112
  }
1113
1113
  },
1114
1114
  "node_modules/@netlify/build": {
1115
- "version": "29.33.3",
1116
- "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.3.tgz",
1117
- "integrity": "sha512-E3jm+8U3eGJR62olS6rTMJlC6/2iJ1p9hXL5W640UDUuSBfBs2Fhm8Hw5dVuC6jtM9/Ps6jH/Qda3r2U948m6g==",
1115
+ "version": "29.33.4",
1116
+ "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.4.tgz",
1117
+ "integrity": "sha512-pB0NDP0VoBNUKpe4XnmnjmDtzRVXxJgzgZ+vk2fNmvI81Ta+fSC+oHSURaxugHKvF2yFOzFgsV8FUlIlk3o5Eg==",
1118
1118
  "dependencies": {
1119
1119
  "@bugsnag/js": "^7.0.0",
1120
1120
  "@netlify/blobs": "^6.4.2",
1121
1121
  "@netlify/cache-utils": "^5.1.5",
1122
- "@netlify/config": "^20.10.2",
1122
+ "@netlify/config": "^20.10.3",
1123
1123
  "@netlify/edge-bundler": "11.2.2",
1124
1124
  "@netlify/framework-info": "^9.8.10",
1125
- "@netlify/functions-utils": "^5.2.48",
1125
+ "@netlify/functions-utils": "^5.2.49",
1126
1126
  "@netlify/git-utils": "^5.1.1",
1127
1127
  "@netlify/opentelemetry-utils": "^1.0.1",
1128
1128
  "@netlify/plugins-list": "^6.73.0",
1129
1129
  "@netlify/run-utils": "^5.1.1",
1130
- "@netlify/zip-it-and-ship-it": "9.28.4",
1130
+ "@netlify/zip-it-and-ship-it": "9.29.0",
1131
1131
  "@opentelemetry/api": "~1.6.0",
1132
1132
  "@sindresorhus/slugify": "^2.0.0",
1133
1133
  "ansi-escapes": "^6.0.0",
@@ -1702,9 +1702,9 @@
1702
1702
  }
1703
1703
  },
1704
1704
  "node_modules/@netlify/config": {
1705
- "version": "20.10.2",
1706
- "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.2.tgz",
1707
- "integrity": "sha512-Q/0GzbY+Sgp28EC/WuiKiUHEBkDhKPqm4dYWVdkNZnd7BwSpHgiLRQrVBu4rfI00DDFrHW3ulGbXfn05egtxqA==",
1705
+ "version": "20.10.3",
1706
+ "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.3.tgz",
1707
+ "integrity": "sha512-MZAvf6BWMBk3MpMeqjrZoI8EUjHIVJTHSFRlRn8/QROHyUgO9XWTZL892MKJZE3mgu1YP0iQP4rVkzidAikTQA==",
1708
1708
  "dependencies": {
1709
1709
  "chalk": "^5.0.0",
1710
1710
  "cron-parser": "^4.1.0",
@@ -1719,7 +1719,7 @@
1719
1719
  "is-plain-obj": "^4.0.0",
1720
1720
  "js-yaml": "^4.0.0",
1721
1721
  "map-obj": "^5.0.0",
1722
- "netlify": "^13.1.13",
1722
+ "netlify": "^13.1.14",
1723
1723
  "netlify-headers-parser": "^7.1.3",
1724
1724
  "netlify-redirect-parser": "^14.2.1",
1725
1725
  "node-fetch": "^3.3.1",
@@ -2222,11 +2222,11 @@
2222
2222
  }
2223
2223
  },
2224
2224
  "node_modules/@netlify/functions-utils": {
2225
- "version": "5.2.48",
2226
- "resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.48.tgz",
2227
- "integrity": "sha512-mr8juWRkV7AMbG2Ffsd/4UDPsY+nVbW8H6Euml4aGi8/mX8V7FGxcloCKob4d9E5jqaGAHEE37h7g2pJaSTVEQ==",
2225
+ "version": "5.2.49",
2226
+ "resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.49.tgz",
2227
+ "integrity": "sha512-risycfkRDJtlJ7/ixdlOth3h92toGuvkFol15VGywstXz40icIEFEw35VZR3w6TTR64gfDo4A3s4lGDdH5UdGA==",
2228
2228
  "dependencies": {
2229
- "@netlify/zip-it-and-ship-it": "9.28.4",
2229
+ "@netlify/zip-it-and-ship-it": "9.29.0",
2230
2230
  "cpy": "^9.0.0",
2231
2231
  "path-exists": "^5.0.0"
2232
2232
  },
@@ -2553,9 +2553,9 @@
2553
2553
  }
2554
2554
  },
2555
2555
  "node_modules/@netlify/open-api": {
2556
- "version": "2.26.1",
2557
- "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.26.1.tgz",
2558
- "integrity": "sha512-nRppm5IhltEL82F6/dsEAJoXhgxwiXdJifGR1vogSS7VcLCobjGmaJc5702/zrsDH1y106wYlX0xKFCAf3A8XA==",
2556
+ "version": "2.28.0",
2557
+ "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.28.0.tgz",
2558
+ "integrity": "sha512-lSx9yVn5mzTS7u9aevQyDRoWaHJYNl15B7CU373g8We39wW8fGh4sdNY7ciPWshf42FblOVlBdoasn/LpzquXg==",
2559
2559
  "engines": {
2560
2560
  "node": ">=14"
2561
2561
  }
@@ -2672,9 +2672,9 @@
2672
2672
  }
2673
2673
  },
2674
2674
  "node_modules/@netlify/zip-it-and-ship-it": {
2675
- "version": "9.28.4",
2676
- "resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.28.4.tgz",
2677
- "integrity": "sha512-BUee+2ybAUdqJRXI9UHVIPb5bGwjRv9Zot33Ufr+THyFkqJAKyT//GEpojpWLMeO6yRsuMFTzDCdQ9EVo4ZyCQ==",
2675
+ "version": "9.29.0",
2676
+ "resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.29.0.tgz",
2677
+ "integrity": "sha512-z6DxHmFmBiBRMZ1FgM/LnfnS0PFy9xdBVxk8SlzFPiNwOSQKpz1zV+DFcAfrWKEa4hvTtNzW05+teIqXRLLIqA==",
2678
2678
  "dependencies": {
2679
2679
  "@babel/parser": "^7.22.5",
2680
2680
  "@babel/types": "7.23.6",
@@ -10542,11 +10542,11 @@
10542
10542
  "integrity": "sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="
10543
10543
  },
10544
10544
  "node_modules/netlify": {
10545
- "version": "13.1.13",
10546
- "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.13.tgz",
10547
- "integrity": "sha512-nemPkZNyuVfItsw9qaRij8ZFJp0IlFT1/RdGd5P/JNlJ3eS1cMGqMP80vfOUhe6IlpKggRuYZausN1qZUryxFA==",
10545
+ "version": "13.1.14",
10546
+ "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.14.tgz",
10547
+ "integrity": "sha512-7vSq6so7lPjr3HEpjbtLyde0F3IXOzD0ocJs3s2wnJR+nX+8pWOAVGe+KN6S98odsClJBJxCkWG2rLjTBzW9pw==",
10548
10548
  "dependencies": {
10549
- "@netlify/open-api": "^2.26.1",
10549
+ "@netlify/open-api": "^2.28.0",
10550
10550
  "lodash-es": "^4.17.21",
10551
10551
  "micro-api-client": "^3.3.0",
10552
10552
  "node-fetch": "^3.0.0",
@@ -15398,22 +15398,22 @@
15398
15398
  "integrity": "sha512-MccXfC/b8vRr5FWJTvMN7L3aBgtrbhNLWQsSu802C/R2Gmlb5C9/OC0IY4i0+BEZ8rS+F4TU/8NQsVlqHHVESQ=="
15399
15399
  },
15400
15400
  "@netlify/build": {
15401
- "version": "29.33.3",
15402
- "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.3.tgz",
15403
- "integrity": "sha512-E3jm+8U3eGJR62olS6rTMJlC6/2iJ1p9hXL5W640UDUuSBfBs2Fhm8Hw5dVuC6jtM9/Ps6jH/Qda3r2U948m6g==",
15401
+ "version": "29.33.4",
15402
+ "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.4.tgz",
15403
+ "integrity": "sha512-pB0NDP0VoBNUKpe4XnmnjmDtzRVXxJgzgZ+vk2fNmvI81Ta+fSC+oHSURaxugHKvF2yFOzFgsV8FUlIlk3o5Eg==",
15404
15404
  "requires": {
15405
15405
  "@bugsnag/js": "^7.0.0",
15406
15406
  "@netlify/blobs": "^6.4.2",
15407
15407
  "@netlify/cache-utils": "^5.1.5",
15408
- "@netlify/config": "^20.10.2",
15408
+ "@netlify/config": "^20.10.3",
15409
15409
  "@netlify/edge-bundler": "11.2.2",
15410
15410
  "@netlify/framework-info": "^9.8.10",
15411
- "@netlify/functions-utils": "^5.2.48",
15411
+ "@netlify/functions-utils": "^5.2.49",
15412
15412
  "@netlify/git-utils": "^5.1.1",
15413
15413
  "@netlify/opentelemetry-utils": "^1.0.1",
15414
15414
  "@netlify/plugins-list": "^6.73.0",
15415
15415
  "@netlify/run-utils": "^5.1.1",
15416
- "@netlify/zip-it-and-ship-it": "9.28.4",
15416
+ "@netlify/zip-it-and-ship-it": "9.29.0",
15417
15417
  "@opentelemetry/api": "~1.6.0",
15418
15418
  "@sindresorhus/slugify": "^2.0.0",
15419
15419
  "ansi-escapes": "^6.0.0",
@@ -15781,9 +15781,9 @@
15781
15781
  }
15782
15782
  },
15783
15783
  "@netlify/config": {
15784
- "version": "20.10.2",
15785
- "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.2.tgz",
15786
- "integrity": "sha512-Q/0GzbY+Sgp28EC/WuiKiUHEBkDhKPqm4dYWVdkNZnd7BwSpHgiLRQrVBu4rfI00DDFrHW3ulGbXfn05egtxqA==",
15784
+ "version": "20.10.3",
15785
+ "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.3.tgz",
15786
+ "integrity": "sha512-MZAvf6BWMBk3MpMeqjrZoI8EUjHIVJTHSFRlRn8/QROHyUgO9XWTZL892MKJZE3mgu1YP0iQP4rVkzidAikTQA==",
15787
15787
  "requires": {
15788
15788
  "chalk": "^5.0.0",
15789
15789
  "cron-parser": "^4.1.0",
@@ -15798,7 +15798,7 @@
15798
15798
  "is-plain-obj": "^4.0.0",
15799
15799
  "js-yaml": "^4.0.0",
15800
15800
  "map-obj": "^5.0.0",
15801
- "netlify": "^13.1.13",
15801
+ "netlify": "^13.1.14",
15802
15802
  "netlify-headers-parser": "^7.1.3",
15803
15803
  "netlify-redirect-parser": "^14.2.1",
15804
15804
  "node-fetch": "^3.3.1",
@@ -16121,11 +16121,11 @@
16121
16121
  }
16122
16122
  },
16123
16123
  "@netlify/functions-utils": {
16124
- "version": "5.2.48",
16125
- "resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.48.tgz",
16126
- "integrity": "sha512-mr8juWRkV7AMbG2Ffsd/4UDPsY+nVbW8H6Euml4aGi8/mX8V7FGxcloCKob4d9E5jqaGAHEE37h7g2pJaSTVEQ==",
16124
+ "version": "5.2.49",
16125
+ "resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.49.tgz",
16126
+ "integrity": "sha512-risycfkRDJtlJ7/ixdlOth3h92toGuvkFol15VGywstXz40icIEFEw35VZR3w6TTR64gfDo4A3s4lGDdH5UdGA==",
16127
16127
  "requires": {
16128
- "@netlify/zip-it-and-ship-it": "9.28.4",
16128
+ "@netlify/zip-it-and-ship-it": "9.29.0",
16129
16129
  "cpy": "^9.0.0",
16130
16130
  "path-exists": "^5.0.0"
16131
16131
  },
@@ -16300,9 +16300,9 @@
16300
16300
  "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g=="
16301
16301
  },
16302
16302
  "@netlify/open-api": {
16303
- "version": "2.26.1",
16304
- "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.26.1.tgz",
16305
- "integrity": "sha512-nRppm5IhltEL82F6/dsEAJoXhgxwiXdJifGR1vogSS7VcLCobjGmaJc5702/zrsDH1y106wYlX0xKFCAf3A8XA=="
16303
+ "version": "2.28.0",
16304
+ "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.28.0.tgz",
16305
+ "integrity": "sha512-lSx9yVn5mzTS7u9aevQyDRoWaHJYNl15B7CU373g8We39wW8fGh4sdNY7ciPWshf42FblOVlBdoasn/LpzquXg=="
16306
16306
  },
16307
16307
  "@netlify/opentelemetry-utils": {
16308
16308
  "version": "1.0.1",
@@ -16379,9 +16379,9 @@
16379
16379
  }
16380
16380
  },
16381
16381
  "@netlify/zip-it-and-ship-it": {
16382
- "version": "9.28.4",
16383
- "resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.28.4.tgz",
16384
- "integrity": "sha512-BUee+2ybAUdqJRXI9UHVIPb5bGwjRv9Zot33Ufr+THyFkqJAKyT//GEpojpWLMeO6yRsuMFTzDCdQ9EVo4ZyCQ==",
16382
+ "version": "9.29.0",
16383
+ "resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.29.0.tgz",
16384
+ "integrity": "sha512-z6DxHmFmBiBRMZ1FgM/LnfnS0PFy9xdBVxk8SlzFPiNwOSQKpz1zV+DFcAfrWKEa4hvTtNzW05+teIqXRLLIqA==",
16385
16385
  "requires": {
16386
16386
  "@babel/parser": "^7.22.5",
16387
16387
  "@babel/types": "7.23.6",
@@ -22071,11 +22071,11 @@
22071
22071
  "integrity": "sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="
22072
22072
  },
22073
22073
  "netlify": {
22074
- "version": "13.1.13",
22075
- "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.13.tgz",
22076
- "integrity": "sha512-nemPkZNyuVfItsw9qaRij8ZFJp0IlFT1/RdGd5P/JNlJ3eS1cMGqMP80vfOUhe6IlpKggRuYZausN1qZUryxFA==",
22074
+ "version": "13.1.14",
22075
+ "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.14.tgz",
22076
+ "integrity": "sha512-7vSq6so7lPjr3HEpjbtLyde0F3IXOzD0ocJs3s2wnJR+nX+8pWOAVGe+KN6S98odsClJBJxCkWG2rLjTBzW9pw==",
22077
22077
  "requires": {
22078
- "@netlify/open-api": "^2.26.1",
22078
+ "@netlify/open-api": "^2.28.0",
22079
22079
  "lodash-es": "^4.17.21",
22080
22080
  "micro-api-client": "^3.3.0",
22081
22081
  "node-fetch": "^3.0.0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
3
  "description": "Netlify command line tool",
4
- "version": "17.15.6",
4
+ "version": "17.15.7",
5
5
  "author": "Netlify Inc.",
6
6
  "type": "module",
7
7
  "engines": {
@@ -38,12 +38,12 @@
38
38
  "@bugsnag/js": "7.20.2",
39
39
  "@fastify/static": "6.10.2",
40
40
  "@netlify/blobs": "6.4.2",
41
- "@netlify/build": "29.33.3",
41
+ "@netlify/build": "29.33.4",
42
42
  "@netlify/build-info": "7.12.0",
43
- "@netlify/config": "20.10.2",
43
+ "@netlify/config": "20.10.3",
44
44
  "@netlify/edge-bundler": "11.2.2",
45
45
  "@netlify/local-functions-proxy": "1.1.1",
46
- "@netlify/zip-it-and-ship-it": "9.28.4",
46
+ "@netlify/zip-it-and-ship-it": "9.29.0",
47
47
  "@octokit/rest": "19.0.13",
48
48
  "ansi-escapes": "6.2.0",
49
49
  "ansi-styles": "6.2.1",
@@ -108,7 +108,7 @@
108
108
  "log-symbols": "5.1.0",
109
109
  "log-update": "5.0.1",
110
110
  "multiparty": "4.2.3",
111
- "netlify": "13.1.13",
111
+ "netlify": "13.1.14",
112
112
  "netlify-headers-parser": "7.1.3",
113
113
  "netlify-redirect-parser": "14.2.1",
114
114
  "netlify-redirector": "0.5.0",