@flowfuse/nr-project-nodes 0.7.8-e4f870f-202510271324.0 → 0.7.8

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.
@@ -8,8 +8,8 @@ jobs:
8
8
  publish:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
12
- - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
11
+ - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
12
+ - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
13
13
  with:
14
14
  node-version: 18
15
15
  - run: npm ci
package/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ### 0.7.8
2
+
3
+ - Bump actions/checkout from 6.0.0 to 6.0.1 (#154)
4
+ - Bump actions/setup-node from 6.0.0 to 6.1.0 (#153)
5
+ - Bump actions/checkout from 5.0.0 to 6.0.0 (#152)
6
+ - Bump flowfuse/github-actions-workflows from 0.42.0 to 0.43.0 (#150)
7
+ - Bump JS-DevTools/npm-publish from 4.0.1 to 4.1.1 (#148)
8
+ - Bump JS-DevTools/npm-publish from 4.0.0 to 4.0.1 (#147)
9
+ - Bump JS-DevTools/npm-publish from 3.1.1 to 4.0.0 (#146)
10
+ - Bump actions/setup-node from 4.4.0 to 5.0.0 (#145)
11
+ - Bump actions/checkout from 4.2.2 to 5.0.0 (#144)
12
+ - Bump flowfuse/github-actions-workflows from 0.40.0 to 0.42.0 (#143)
13
+ - Ensure validator is correct for link retrun mode (#156) @hardillb
14
+ - Bump glob from 10.4.5 to 10.5.0 (#151) @app/dependabot
15
+ - Bump actions/setup-node from 5.0.0 to 6.0.0 (#149) @app/dependabot
16
+ - Bump form-data and node-red (#138) @app/dependabot
17
+
1
18
  ### 0.7.7
2
19
 
3
20
  - Update the Project Nodes category to "FlowFuse" (#135) @joepavitt
@@ -353,6 +353,9 @@
353
353
  if (this.broadcast === 'true' || this.broadcast === true) {
354
354
  return true // don't need to validate project id if we are broadcasting to all
355
355
  }
356
+ if (this.mode === 'return') {
357
+ return true
358
+ }
356
359
  // otherwise, we need a valid project id
357
360
  return v && isValidProject(v)
358
361
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/nr-project-nodes",
3
- "version": "0.7.8-e4f870f-202510271324.0",
3
+ "version": "0.7.8",
4
4
  "description": "A collection of Node-RED nodes for easy communication between Node-RED instances running in the FlowFuse platform",
5
5
  "scripts": {
6
6
  "test": "mocha test/unit/**/*_spec.js --timeout 5000",