node-red-contrib-aedes 0.13.2 → 0.14.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 +7 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# node-red-contrib-aedes Changelog
|
|
2
2
|
|
|
3
|
+
## Jul 02, 2025, Version 0.14.0
|
|
4
|
+
### Breaking changes
|
|
5
|
+
- Dependencies require NodeJS 20
|
|
6
|
+
- Requires NodeR-RED 3 and up
|
|
7
|
+
- Update aedes to version 0.51.3
|
|
8
|
+
- Update edes-persistence-mongodb to version 9.3.0
|
|
9
|
+
|
|
3
10
|
## Jul 29, 2024, Version 0.13.2
|
|
4
11
|
### Notable changes
|
|
5
12
|
- New tests with NodeJS 22
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-aedes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Node Red MQTT broker node based on aedes.js",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"aedes": "^0.51.
|
|
7
|
-
"aedes-persistence-mongodb": "^9.
|
|
6
|
+
"aedes": "^0.51.3",
|
|
7
|
+
"aedes-persistence-mongodb": "^9.3.0",
|
|
8
8
|
"websocket-stream": "^5.5.2"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"mqtt": "^5.
|
|
11
|
+
"mqtt": "^5.13.1",
|
|
12
12
|
"node-red-node-test-helper": "^0.3.3"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"test": "semistandard --verbose | snazzy && mocha test/**/*.js --exit"
|
|
19
19
|
},
|
|
20
20
|
"node-red": {
|
|
21
|
-
"version": ">=
|
|
21
|
+
"version": ">=3.0.0",
|
|
22
22
|
"nodes": {
|
|
23
23
|
"aedes-mqtt-broker": "aedes.js"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
27
|
+
"node": ">=20.0.0"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|