n8n-nodes-excel-ai 1.0.1 → 1.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/README.md CHANGED
@@ -45,6 +45,25 @@ cd ~/.n8n/nodes
45
45
  npm install n8n-nodes-excel-ai
46
46
  ```
47
47
 
48
+ #### 🔒 Security: Fix form-data Vulnerability
49
+
50
+ To resolve the `form-data` security vulnerability from `n8n-workflow`, add this to your `package.json` in the installation directory:
51
+
52
+ ```json
53
+ {
54
+ "overrides": {
55
+ "form-data": "^4.0.4"
56
+ }
57
+ }
58
+ ```
59
+
60
+ Then reinstall:
61
+
62
+ ```bash
63
+ npm install
64
+ npm audit
65
+ ```
66
+
48
67
  ### Option 2: Docker
49
68
 
50
69
  Add to your `docker-compose.yml`:
package/README.zh-TW.md CHANGED
@@ -45,6 +45,25 @@ cd ~/.n8n/nodes
45
45
  npm install n8n-nodes-excel-ai
46
46
  ```
47
47
 
48
+ #### 🔒 安全性:修復 form-data 漏洞
49
+
50
+ 為了解決來自 `n8n-workflow` 的 `form-data` 安全漏洞,請在安裝目錄的 `package.json` 中加入:
51
+
52
+ ```json
53
+ {
54
+ "overrides": {
55
+ "form-data": "^4.0.4"
56
+ }
57
+ }
58
+ ```
59
+
60
+ 然後重新安裝:
61
+
62
+ ```bash
63
+ npm install
64
+ npm audit
65
+ ```
66
+
48
67
  ### 選項 2:Docker
49
68
 
50
69
  在您的 `docker-compose.yml` 中新增:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-excel-ai",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Excel CRUD operations for n8n with AI Agent support - Perform read, write, update, delete operations on Excel files",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -63,12 +63,13 @@
63
63
  "typescript": "5.1.6"
64
64
  },
65
65
  "dependencies": {
66
- "exceljs": "^4.3.0"
66
+ "exceljs": "^4.4.0",
67
+ "form-data": "^4.0.5"
67
68
  },
68
69
  "peerDependencies": {
69
70
  "n8n-workflow": "*"
70
71
  },
71
72
  "overrides": {
72
- "form-data": "^4.0.4"
73
+ "form-data": "^4.0.5"
73
74
  }
74
75
  }