node-red-contrib-aedes 0.8.2 → 0.9.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.
- package/.github/workflows/nodejs.yml +2 -2
- package/CHANGELOG.md +5 -0
- package/package.json +3 -3
|
@@ -12,9 +12,9 @@ jobs:
|
|
|
12
12
|
node-version: [14.x, 16.x, 18.x]
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v3
|
|
16
16
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
17
|
-
uses: actions/setup-node@
|
|
17
|
+
uses: actions/setup-node@v3
|
|
18
18
|
with:
|
|
19
19
|
node-version: ${{ matrix.node-version }}
|
|
20
20
|
- run: npm install
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# node-red-contrib-aedes Changelog
|
|
2
2
|
|
|
3
|
+
## Oct 23, 2022, Version 0.9
|
|
4
|
+
### Notable changes
|
|
5
|
+
- Update aedes to version 0.48
|
|
6
|
+
- Update node-red-node-test-helper to version 0.3.0
|
|
7
|
+
|
|
3
8
|
## Jun 03, 2022, Version 0.8.2
|
|
4
9
|
### Notable changes
|
|
5
10
|
- Fix Scorecard Warnings
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-aedes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Node Red MQTT broker node based on aedes.js",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"aedes": "^0.
|
|
6
|
+
"aedes": "^0.48.0",
|
|
7
7
|
"aedes-persistence-mongodb": "^9.0.0",
|
|
8
8
|
"websocket-stream": "^5.5.2"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"mqtt": "^4.3.7",
|
|
12
|
-
"node-red-node-test-helper": "^0.
|
|
12
|
+
"node-red-node-test-helper": "^0.3.0"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"test": "semistandard --verbose | snazzy && mocha test/**/*.js --exit"
|