@flowfuse/nr-assistant 0.3.1-92d1581-202507160925.0 → 0.4.1-7727d4e-202507301240.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/package.json +5 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,58 @@
1
+ ### 0.4.0
2
+ - update package for 0.4.0 release
3
+ - Bump flowfuse/github-actions-workflows from 0.39.0 to 0.40.0 (#60)
4
+ - Update imports (#64) @Steve-Mcl
5
+ - Implement node suggestions (#62) @Steve-Mcl
6
+ - Add copy to clipboard and generate comment node to explain dialog (#61) @Steve-Mcl
7
+
8
+ ### 0.3.0
9
+ - Change assistant button to menu for exposing new Flows Explainer by @Steve-Mcl in #53
10
+ - Add menu shortcuts for menu items by @Steve-Mcl in #54
11
+ - Show flow explanation in dialog by @Steve-Mcl in #52
12
+ - Add codelens for CSS and DB2 ui-template by @Steve-Mcl in #56
13
+
14
+ ### 0.2.1
15
+ - Improve README with visuals of what it does by @Steve-Mcl in #49
16
+ - V0.2.1 by @Steve-Mcl in #50
17
+
18
+ ### 0.2.0
19
+
20
+ - Bump flowfuse/github-actions-workflows from 0.19.0 to 0.28.0 by @dependabot in #32
21
+ - Bump flowfuse/github-actions-workflows from 0.28.0 to 0.29.0 by @dependabot in #33
22
+ - Bump flowfuse/github-actions-workflows from 0.29.0 to 0.30.0 by @dependabot in #34
23
+ - Bump flowfuse/github-actions-workflows from 0.30.0 to 0.34.0 by @dependabot in #35
24
+ - Bump flowfuse/github-actions-workflows from 0.34.0 to 0.36.0 by @dependabot in #36
25
+ - Bump flowfuse/github-actions-workflows from 0.36.0 to 0.38.0 by @dependabot in #38
26
+ - Clarify usage restriction of the plugin by @knolleary in #39
27
+ - chore: Pin external actions to commit hash by @ppawlowski in #40
28
+ - chore: fix lint script by @ppawlowski in #41
29
+ - Bump actions/setup-node from 4.3.0 to 4.4.0 by @dependabot in #42
30
+ - Add initial MCP support by @Steve-Mcl in #44
31
+ - V0.2.0 by @Steve-Mcl in #47
32
+
33
+ ### 0.1.3
34
+
35
+ - Fix icon on device agent by @Steve-Mcl in #29
36
+ - bump for 0.1.3 by @Steve-Mcl in #30
37
+
38
+ ### 0.1.2
39
+
40
+ - Fix height of new icon on NR3.x by @Steve-Mcl in #26
41
+ - bump for 0.1.2 by @Steve-Mcl in #27
42
+
43
+ ### 0.1.1
44
+
45
+ - ci: Add build and publish nightly package workflow by @ppawlowski in #7
46
+ - Bump tibdex/github-app-token from 1 to 2 by @dependabot in #11
47
+ - Add JSON editor code lens by @Steve-Mcl in #14
48
+ - Correct handling of locked flows by @Steve-Mcl in #17
49
+ - Update package.json for version bump release by @Steve-Mcl in #20
50
+ - add custom icon to toolbar button by @Steve-Mcl in #21
51
+ - Add comma to settings.js by @kazuhitoyokoi in #22
52
+ - Improved messaging for error responses by @Steve-Mcl in #24
53
+
54
+ ### 0.1.0
55
+
56
+ - add automations by @Steve-Mcl in #1
57
+ - Bump JS-DevTools/npm-publish from 2 to 3 by @dependabot in #5
58
+ - Wording and layout improvements prior to first release by @Steve-Mcl in #8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/nr-assistant",
3
- "version": "0.3.1-92d1581-202507160925.0",
3
+ "version": "0.4.1-7727d4e-202507301240.0",
4
4
  "description": "FlowFuse Node-RED assistant plugin",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -37,9 +37,11 @@
37
37
  "node": ">=16.x"
38
38
  },
39
39
  "dependencies": {
40
- "@modelcontextprotocol/sdk": "^1.13.1",
40
+ "@modelcontextprotocol/sdk": "^1.17.0",
41
41
  "got": "^11.8.6",
42
- "onnxruntime-web": "^1.22.0"
42
+ "onnxruntime-web": "^1.22.0",
43
+ "semver": "^7.7.2",
44
+ "zod": "^3.25.76"
43
45
  },
44
46
  "devDependencies": {
45
47
  "eslint": "^8.48.0",