netlify-cli 8.19.3 → 9.0.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
3
  "description": "Netlify command line tool",
4
- "version": "8.19.3",
4
+ "version": "9.0.3",
5
5
  "author": "Netlify Inc.",
6
6
  "contributors": [
7
7
  "Abraham Schilling <AbrahamSchilling@gmail.com> (https://gitlab.com/n4bb12)",
@@ -198,14 +198,14 @@
198
198
  "prettier": "--ignore-path .gitignore --loglevel=warn \"{src,tools,scripts,site,tests,.github}/**/*.{mjs,cjs,js,md,yml,json,html}\" \"*.{mjs,cjs,js,yml,json,html}\" \".*.{mjs,cjs,js,yml,json,html}\" \"!CHANGELOG.md\" \"!npm-shrinkwrap.json\" \"!.github/**/*.md\""
199
199
  },
200
200
  "dependencies": {
201
- "@netlify/build": "^26.2.3",
202
- "@netlify/config": "^17.0.6",
201
+ "@netlify/build": "^26.2.6",
202
+ "@netlify/config": "^17.0.7",
203
203
  "@netlify/framework-info": "^9.0.0",
204
204
  "@netlify/local-functions-proxy": "^1.1.1",
205
205
  "@netlify/plugin-edge-handlers": "^3.0.6",
206
206
  "@netlify/plugins-list": "^6.9.0",
207
207
  "@netlify/routing-local-proxy": "^0.34.1",
208
- "@netlify/zip-it-and-ship-it": "^5.7.0",
208
+ "@netlify/zip-it-and-ship-it": "^5.7.2",
209
209
  "@octokit/rest": "^18.0.0",
210
210
  "@sindresorhus/slugify": "^1.1.0",
211
211
  "ansi-escapes": "^5.0.0",
@@ -230,7 +230,7 @@
230
230
  "decache": "^4.6.0",
231
231
  "del": "^6.0.0",
232
232
  "dot-prop": "^6.0.0",
233
- "dotenv": "^10.0.0",
233
+ "dotenv": "^16.0.0",
234
234
  "env-paths": "^2.2.0",
235
235
  "envinfo": "^7.3.1",
236
236
  "execa": "^5.0.0",
@@ -38,6 +38,8 @@ const shouldBase64Encode = function (contentType) {
38
38
  return true
39
39
  }
40
40
 
41
+ const [contentTypeSegment] = contentType.split(';')
42
+ contentType = contentTypeSegment
41
43
  contentType = contentType.toLowerCase()
42
44
 
43
45
  if (contentType.startsWith('text/')) {