@flowfuse/nr-file-nodes 0.0.6-c8fbecf-202311221507.0 → 0.0.6
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/CHANGELOG.md +19 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
#### 0.0.6: Release
|
|
2
|
+
|
|
3
|
+
- Bump ws and node-red (#64) @dependabot
|
|
4
|
+
- ci: Bump build_node_package workflow to 0.14.0 (#61) @ppawlowski
|
|
5
|
+
- Bump braces from 3.0.2 to 3.0.3 (#60) @dependabot
|
|
6
|
+
- Revert "Add proxy support" (#59) @Steve-Mcl
|
|
7
|
+
- Add proxy support (#56) @Steve-Mcl
|
|
8
|
+
- Update lint glob to cover test files (#58) @Steve-Mcl
|
|
9
|
+
- Bump actions/checkout from 1 to 4 (#52) @dependabot
|
|
10
|
+
- Bump actions/setup-node from 1 to 4 (#50) @dependabot
|
|
11
|
+
- Enable dependabot for github actions (#48) @ppawlowski
|
|
12
|
+
- Bump express, node-red and node-red-node-test-helper (#47) @dependabot
|
|
13
|
+
- Bump follow-redirects from 1.15.5 to 1.15.6 (#46) @dependabot
|
|
14
|
+
- Bump jsonata, @node-red/util and node-red (#45) @dependabot
|
|
15
|
+
- Bump ip from 2.0.0 to 2.0.1 (#43) @dependabot
|
|
16
|
+
- Bump follow-redirects from 1.15.3 to 1.15.4 (#42) @dependabot
|
|
17
|
+
- Update npm-publish action version to v2 (#41) @ppawlowski
|
|
18
|
+
- Bump axios and node-red-admin (#40) @dependabot
|
|
19
|
+
|
|
1
20
|
#### 0.0.5: Release
|
|
2
21
|
|
|
3
22
|
- Fix jsonata evaluation in filename field (#38) @knolleary
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowfuse/nr-file-nodes",
|
|
3
|
-
"version": "0.0.6
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Node-RED file nodes packaged for FlowFuse",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "npm run test:files && npm run test:memory",
|
|
8
8
|
"test:memory": "mocha 'test/memory_spec.js' --timeout 5000",
|
|
9
9
|
"test:files": "mocha 'test/file_spec.js' --timeout 5000",
|
|
10
|
-
"lint": "eslint -c .eslintrc *.js",
|
|
11
|
-
"lint:fix": "eslint -c .eslintrc *.js --fix"
|
|
10
|
+
"lint": "eslint -c .eslintrc *.js test/*.js",
|
|
11
|
+
"lint:fix": "eslint -c .eslintrc *.js test/*.js --fix"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"FlowFuse",
|