@ya-modbus/mqtt-bridge 0.5.0 → 0.6.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/CHANGELOG.md +41 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,47 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 0.6.0 (2026-01-04)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- enable linting without build and fix monorepo build order ([#129](https://github.com/groupsky/ya-modbus/issues/129)) ([e4ba4fd](https://github.com/groupsky/ya-modbus/commit/e4ba4fdc61c8695c3ab0b9504ef340d19861c599)), closes [#130](https://github.com/groupsky/ya-modbus/issues/130)
|
|
11
|
+
- **mqtt-bridge:** resolve race conditions in device operations ([#116](https://github.com/groupsky/ya-modbus/issues/116)) ([cafbde4](https://github.com/groupsky/ya-modbus/commit/cafbde4d8412714c80db4e27b33f8e208ed2888c)), closes [#96](https://github.com/groupsky/ya-modbus/issues/96)
|
|
12
|
+
- **release:** bump versions to 0.2.0 to bypass npm 24h block ([#148](https://github.com/groupsky/ya-modbus/issues/148)) ([aa2be6a](https://github.com/groupsky/ya-modbus/commit/aa2be6ae998f4443774b43507e7991601ec3068a))
|
|
13
|
+
- **release:** revert failed release and add missing publishConfig ([#147](https://github.com/groupsky/ya-modbus/issues/147)) ([60ea209](https://github.com/groupsky/ya-modbus/commit/60ea2091cbb350b0f474dc45d3ab33177b050764))
|
|
14
|
+
- **release:** revert failed release and cleanup tags ([#145](https://github.com/groupsky/ya-modbus/issues/145)) ([228ae2b](https://github.com/groupsky/ya-modbus/commit/228ae2b4da0c433e475825d068202efd3f0d3a5a)), closes [#143](https://github.com/groupsky/ya-modbus/issues/143) [#144](https://github.com/groupsky/ya-modbus/issues/144)
|
|
15
|
+
|
|
16
|
+
### Code Refactoring
|
|
17
|
+
|
|
18
|
+
- **mqtt-bridge:** remove duplicate consecutiveFailures tracking ([#127](https://github.com/groupsky/ya-modbus/issues/127)) ([c6288eb](https://github.com/groupsky/ya-modbus/commit/c6288eb1016aaa8d3cb9f0e4e19585167fbdbde4)), closes [#93](https://github.com/groupsky/ya-modbus/issues/93)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- **mqtt-bridge:** add MQTT bridge package with CLI ([#86](https://github.com/groupsky/ya-modbus/issues/86)) ([acc03a0](https://github.com/groupsky/ya-modbus/commit/acc03a09277b4a16c799234b6319a13d1db18d8e))
|
|
23
|
+
- **mqtt-bridge:** Phase 2 - Driver Integration ([#90](https://github.com/groupsky/ya-modbus/issues/90)) ([ae647b2](https://github.com/groupsky/ya-modbus/commit/ae647b2c3a3eb6f8278bbb2731465f9cece64d82)), closes [#87](https://github.com/groupsky/ya-modbus/issues/87)
|
|
24
|
+
- **release:** add Lerna-Lite publishing with pre-release support ([#135](https://github.com/groupsky/ya-modbus/issues/135)) ([3db7542](https://github.com/groupsky/ya-modbus/commit/3db7542ddbb7bb150b4deab50d5c96e5d668c852))
|
|
25
|
+
- **transport:** extract transport package for code reusability ([#102](https://github.com/groupsky/ya-modbus/issues/102)) ([aea6946](https://github.com/groupsky/ya-modbus/commit/aea6946b40f502ff630c7a0ec599088899c30a90)), closes [#107](https://github.com/groupsky/ya-modbus/issues/107) [#108](https://github.com/groupsky/ya-modbus/issues/108) [#109](https://github.com/groupsky/ya-modbus/issues/109) [#91](https://github.com/groupsky/ya-modbus/issues/91)
|
|
26
|
+
- **transport:** implement TransportManager with mutex serialization ([#125](https://github.com/groupsky/ya-modbus/issues/125)) ([012a9e0](https://github.com/groupsky/ya-modbus/commit/012a9e06ad37f7dc07ff2903948ec1454fe3392e)), closes [#126](https://github.com/groupsky/ya-modbus/issues/126)
|
|
27
|
+
|
|
28
|
+
### Reverts
|
|
29
|
+
|
|
30
|
+
- Revert "chore(release): publish packages" ([a6d080d](https://github.com/groupsky/ya-modbus/commit/a6d080deeacf306f4911b6d78eab05dac8bfa7a7))
|
|
31
|
+
|
|
32
|
+
### BREAKING CHANGES
|
|
33
|
+
|
|
34
|
+
- **mqtt-bridge:** - ErrorCallback signature changed from (deviceId, error) => number to
|
|
35
|
+
(deviceId, error, failureCount) => void
|
|
36
|
+
|
|
37
|
+
Testing:
|
|
38
|
+
|
|
39
|
+
- Added TDD regression tests for both bugs
|
|
40
|
+
- All 272 tests passing with 97.77% coverage
|
|
41
|
+
- Defensive error handling for callback exceptions
|
|
42
|
+
|
|
43
|
+
## [0.5.1](https://github.com/groupsky/ya-modbus/compare/@ya-modbus/mqtt-bridge@0.5.0...@ya-modbus/mqtt-bridge@0.5.1) (2026-01-04)
|
|
44
|
+
|
|
45
|
+
**Note:** Version bump only for package @ya-modbus/mqtt-bridge
|
|
46
|
+
|
|
6
47
|
# 0.5.0 (2026-01-04)
|
|
7
48
|
|
|
8
49
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ya-modbus/mqtt-bridge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "MQTT bridge for ya-modbus - orchestrates device management, polling, and MQTT publishing",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"modbus",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"bridge",
|
|
9
9
|
"iot"
|
|
10
10
|
],
|
|
11
|
-
"author": "Geno Roupsky <
|
|
11
|
+
"author": "Geno Roupsky <185580+groupsky@users.noreply.github.com>",
|
|
12
12
|
"license": "GPL-3.0-or-later",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"bin": {
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"prepublishOnly": "npm run build && chmod +x dist/bin/ya-modbus-bridge.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@ya-modbus/driver-loader": "^0.
|
|
48
|
-
"@ya-modbus/driver-types": "^0.
|
|
49
|
-
"@ya-modbus/transport": "^0.
|
|
47
|
+
"@ya-modbus/driver-loader": "^0.6.0",
|
|
48
|
+
"@ya-modbus/driver-types": "^0.6.0",
|
|
49
|
+
"@ya-modbus/transport": "^0.6.0",
|
|
50
50
|
"chalk": "^5.6.2",
|
|
51
51
|
"commander": "^14.0.2",
|
|
52
52
|
"mqtt": "^5.14.1",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"ts-jest": "^29.1.1",
|
|
60
60
|
"typescript": "^5.7.2"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "37ca074321ce2847ac0c90048398f92591a10652"
|
|
63
63
|
}
|