Skip to content

Commit 4f3e9f1

Browse files
authored
Merge branch 'main' into renovate/netlify-config-17.x
2 parents b531b72 + 5ba83d8 commit 4f3e9f1

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
99

10+
## [8.11.0](https://github.com/netlify/cli/compare/v8.10.2...v8.11.0) (2022-01-20)
11+
12+
13+
### Features
14+
15+
* pass `zipGo` property to ZISI ([#4097](https://github.com/netlify/cli/issues/4097)) ([083205d](https://github.com/netlify/cli/commit/083205d14b30be5250639de1961940f2000bc74b))
16+
17+
18+
### Bug Fixes
19+
20+
* **deps:** update dependency @netlify/build to ^26.2.0 ([#4095](https://github.com/netlify/cli/issues/4095)) ([f06b896](https://github.com/netlify/cli/commit/f06b896f443fdd79c06f7cc30a67550c73002650))
21+
* **deps:** update dependency @netlify/zip-it-and-ship-it to ^5.5.0 ([#4090](https://github.com/netlify/cli/issues/4090)) ([9e3ec90](https://github.com/netlify/cli/commit/9e3ec902e237a8cc4551c4aedfa6e016e8a46c03))
22+
1023
### [8.10.2](https://github.com/netlify/cli/compare/v8.10.1...v8.10.2) (2022-01-19)
1124

1225

npm-shrinkwrap.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "netlify-cli",
33
"description": "Netlify command line tool",
4-
"version": "8.10.2",
4+
"version": "8.11.0",
55
"author": "Netlify Inc.",
66
"contributors": [
77
"Mathias Biilmann <[email protected]> (https://twitter.com/biilmann)",

src/lib/functions/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const normalizeFunctionsConfig = ({ functionsConfig = {}, projectRoot }) =>
1313
nodeBundler: config.node_bundler === 'esbuild' ? 'esbuild_zisi' : config.node_bundler,
1414
processDynamicNodeImports: true,
1515
schedule: config.schedule,
16+
zipGo: true,
1617
},
1718
}),
1819
{},

0 commit comments

Comments
 (0)