@ya-modbus/emulator 0.5.1 → 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 +19 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
- **emulator:** use fake timers in timing tests to fix CI flakiness ([#156](https://github.com/groupsky/ya-modbus/issues/156)) ([67b7d8d](https://github.com/groupsky/ya-modbus/commit/67b7d8d5e889be50f504a0c764c26966be3ae711)), closes [#139](https://github.com/groupsky/ya-modbus/issues/139)
|
|
11
|
+
- 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)
|
|
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
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **emulator:** implement v0.1.0 with CLI, RTU transport, and timing behaviors ([#106](https://github.com/groupsky/ya-modbus/issues/106)) ([62c5edb](https://github.com/groupsky/ya-modbus/commit/62c5edb41b220a0ae012baaedee7f36ad4b2b8e7)), closes [#112](https://github.com/groupsky/ya-modbus/issues/112)
|
|
19
|
+
- **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))
|
|
20
|
+
|
|
21
|
+
### Reverts
|
|
22
|
+
|
|
23
|
+
- Revert "chore(release): publish packages" ([a6d080d](https://github.com/groupsky/ya-modbus/commit/a6d080deeacf306f4911b6d78eab05dac8bfa7a7))
|
|
24
|
+
|
|
6
25
|
## [0.5.1](https://github.com/groupsky/ya-modbus/compare/@ya-modbus/emulator@0.5.0...@ya-modbus/emulator@0.5.1) (2026-01-04)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @ya-modbus/emulator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ya-modbus/emulator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Software Modbus device emulator for testing drivers without physical hardware",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"modbus",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"testing",
|
|
9
9
|
"simulation"
|
|
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
|
"main": "dist/index.js",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=20.0.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "37ca074321ce2847ac0c90048398f92591a10652"
|
|
54
54
|
}
|