@next-core/brick-container 2.66.30 → 2.66.31

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/brick-container",
3
- "version": "2.66.30",
3
+ "version": "2.66.31",
4
4
  "description": "Brick Container Server",
5
5
  "homepage": "https://github.com/easyops-cn/next-core/tree/master/packages/brick-container",
6
6
  "license": "GPL-3.0",
@@ -30,33 +30,33 @@
30
30
  "dependencies": {
31
31
  "@next-core/repo-config": "^0.2.1",
32
32
  "body-parser": "^1.20.0",
33
- "chalk": "^4.1.1",
33
+ "chalk": "^4.1.2",
34
34
  "chokidar": "^3.5.3",
35
35
  "concat-stream": "^2.0.0",
36
- "express": "^4.17.3",
36
+ "express": "^4.18.1",
37
37
  "http-proxy-middleware": "^2.0.6",
38
38
  "js-yaml": "^3.14.1",
39
39
  "lodash": "^4.17.21",
40
40
  "meow": "^9.0.0",
41
- "ws": "^8.5.0"
41
+ "ws": "^8.6.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@next-core/brick-dll": "^2.31.36",
45
- "@next-core/brick-icons": "^2.26.34",
44
+ "@next-core/brick-dll": "^2.31.37",
45
+ "@next-core/brick-icons": "^2.26.35",
46
46
  "@next-core/color-theme": "^0.4.3",
47
47
  "@next-core/custom-antd-styles": "^1.24.5",
48
- "@next-core/illustrations": "^0.5.18",
48
+ "@next-core/illustrations": "^0.5.19",
49
49
  "@next-core/less-plugin-css-variables": "^0.2.4",
50
- "@next-core/webpack-config-factory": "^2.16.1",
51
- "@next-dll/ace": "^2.0.388",
52
- "@next-dll/d3": "^2.0.59",
53
- "@next-dll/echarts": "^2.0.60",
54
- "@next-dll/editor-bricks-helper": "^0.28.39",
55
- "@next-dll/react-dnd": "^0.1.326",
50
+ "@next-core/webpack-config-factory": "^2.16.2",
51
+ "@next-dll/ace": "^2.0.389",
52
+ "@next-dll/d3": "^2.0.60",
53
+ "@next-dll/echarts": "^2.0.61",
54
+ "@next-dll/editor-bricks-helper": "^0.28.40",
55
+ "@next-dll/react-dnd": "^0.1.327",
56
56
  "babel-loader": "^8.2.5",
57
57
  "clean-webpack-plugin": "^4.0.0",
58
58
  "copy-webpack-plugin": "^6.4.1",
59
- "core-js": "^3.22.2",
59
+ "core-js": "^3.22.4",
60
60
  "css-loader": "^5.2.7",
61
61
  "fs-extra": "^10.1.0",
62
62
  "html-webpack-plugin": "^4.5.2",
@@ -69,8 +69,8 @@
69
69
  "style-loader": "^2.0.0",
70
70
  "webpack": "^4.46.0",
71
71
  "webpack-cli": "^4.9.2",
72
- "webpack-dev-server": "^4.8.1",
72
+ "webpack-dev-server": "^4.9.0",
73
73
  "webpack-merge": "^5.8.0"
74
74
  },
75
- "gitHead": "23bf134b92df47561cb76e71852f549e9ae6a76f"
75
+ "gitHead": "3b6b938a49e75b32a5dfd7da79dacd60342800d6"
76
76
  }
@@ -257,7 +257,6 @@ module.exports = (env) => {
257
257
  return JSON.stringify(result);
258
258
  });
259
259
  } else if (
260
- env.https &&
261
260
  env.cookieSameSiteNone &&
262
261
  (req.path === "/next/api/auth/login/v2" ||
263
262
  req.path === "/api/auth/login/v2")
@@ -267,7 +266,7 @@ module.exports = (env) => {
267
266
  Array.isArray(proxyRes.headers["set-cookie"])
268
267
  ) {
269
268
  proxyRes.headers["set-cookie"] = proxyRes.headers["set-cookie"].map(
270
- (cookie) => cookie + "; SameSite=None; Secure"
269
+ (cookie) => `${cookie}; SameSite=None; Secure`
271
270
  );
272
271
  }
273
272
  }