node-red-contrib-modbus-modpackqt 2.0.2 → 2.0.4
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 +17 -0
- package/README.md +6 -10
- package/package.json +2 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to **node-red-contrib-modbus-modpackqt** are documented
|
|
|
4
4
|
here. This project follows [Semantic Versioning](https://semver.org/) — pin a
|
|
5
5
|
major version (`^2.0.0`) in production.
|
|
6
6
|
|
|
7
|
+
## [2.0.4] — 2026-05-09
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **README & package.json:** removed all GitHub repo and email references
|
|
12
|
+
(we don't have a public GitHub org or support inbox set up yet). Bug reports
|
|
13
|
+
and security disclosures now go through `modpackqt.com/contact` and
|
|
14
|
+
`modpackqt.com/security`. The `repository` field was removed from
|
|
15
|
+
package.json since the URL was a placeholder.
|
|
16
|
+
|
|
17
|
+
## [2.0.3] — 2026-05-09
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **README:** removed the external "safe-use checklist" link. Only standard
|
|
22
|
+
MIT "as is" disclaimer remains.
|
|
23
|
+
|
|
7
24
|
## [2.0.2] — 2026-05-09
|
|
8
25
|
|
|
9
26
|
### Changed
|
package/README.md
CHANGED
|
@@ -202,17 +202,14 @@ Make sure `node-red-contrib-bytes-modpackqt` is also installed before importing
|
|
|
202
202
|
|
|
203
203
|
## Reporting bugs & getting updates
|
|
204
204
|
|
|
205
|
-
- **Bugs / feature requests:**
|
|
206
|
-
|
|
207
|
-
- **Security issues:** see [`SECURITY.md`](./SECURITY.md) — please report
|
|
208
|
-
privately to **support@modpackqt.com**.
|
|
205
|
+
- **Bugs / feature requests:** use our [contact page](https://modpackqt.com/contact).
|
|
206
|
+
- **Security issues:** report privately via the [security page](https://modpackqt.com/security).
|
|
209
207
|
- **Updates are never automatic.** Node-RED's palette manager will show
|
|
210
208
|
"update available" when we publish a new version — you choose when to
|
|
211
209
|
upgrade. Pin a major version (`^2.0.0`) in production.
|
|
212
|
-
- **Changelog:**
|
|
213
|
-
[semver](https://semver.org/) — patch releases for bug fixes only.
|
|
214
|
-
- **Paid customers** get
|
|
215
|
-
releases.
|
|
210
|
+
- **Changelog:** the `CHANGELOG.md` file is shipped inside this package. We
|
|
211
|
+
follow [semver](https://semver.org/) — patch releases for bug fixes only.
|
|
212
|
+
- **Paid customers** get notice for security and breaking-change releases.
|
|
216
213
|
|
|
217
214
|
---
|
|
218
215
|
|
|
@@ -222,10 +219,9 @@ Make sure `node-red-contrib-bytes-modpackqt` is also installed before importing
|
|
|
222
219
|
- [Node-RED + ModPackQT docs](https://modpackqt.com/nodered)
|
|
223
220
|
- [Bytes palette (decoders/encoders)](https://www.npmjs.com/package/node-red-contrib-bytes-modpackqt)
|
|
224
221
|
- [Modbus tutorials](https://modpackqt.com/resources/tutorial)
|
|
225
|
-
- [Production safe-use checklist](https://modpackqt.com/nodered)
|
|
226
222
|
|
|
227
223
|
---
|
|
228
224
|
|
|
229
225
|
## License & disclaimer
|
|
230
226
|
|
|
231
|
-
MIT — © ModPackQT. Provided **"as is" without warranty of any kind**. You are responsible for validating this software in your environment before any production use.
|
|
227
|
+
MIT — © ModPackQT. Provided **"as is" without warranty of any kind**. You are responsible for validating this software in your environment before any production use.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-modbus-modpackqt",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Node-RED Modbus nodes — embedded Modbus TCP/RTU master + slave server, no extra apps required. By ModPackQT. FC1/FC2/FC3/FC4 reads, FC5/FC6/FC15/FC16 writes, a built-in slave register store, and a free passive traffic monitor for debugging.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node-red",
|
|
@@ -22,13 +22,8 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"author": "ModPackQT",
|
|
24
24
|
"homepage": "https://modpackqt.com/nodered",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/modpackqt/node-red-contrib-modbus-modpackqt.git"
|
|
28
|
-
},
|
|
29
25
|
"bugs": {
|
|
30
|
-
"url": "https://
|
|
31
|
-
"email": "support@modpackqt.com"
|
|
26
|
+
"url": "https://modpackqt.com/contact"
|
|
32
27
|
},
|
|
33
28
|
"engines": {
|
|
34
29
|
"node": ">=14"
|