@ya-modbus/transport 0.5.1 → 0.6.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
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.1](https://github.com/groupsky/ya-modbus/compare/@ya-modbus/transport@0.6.0...@ya-modbus/transport@0.6.1) (2026-01-08)
7
+
8
+ **Note:** Version bump only for package @ya-modbus/transport
9
+
10
+ # 0.6.0 (2026-01-04)
11
+
12
+ ### Bug Fixes
13
+
14
+ - 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)
15
+ - **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))
16
+ - **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))
17
+ - **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)
18
+
19
+ ### Features
20
+
21
+ - **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))
22
+ - **transport:** add debug logging for retry attempts ([#115](https://github.com/groupsky/ya-modbus/issues/115)) ([e63de85](https://github.com/groupsky/ya-modbus/commit/e63de85bcca5caea05008065b38ae517009a583d)), closes [#109](https://github.com/groupsky/ya-modbus/issues/109)
23
+ - **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)
24
+ - **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)
25
+
26
+ ### Reverts
27
+
28
+ - Revert "chore(release): publish packages" ([a6d080d](https://github.com/groupsky/ya-modbus/commit/a6d080deeacf306f4911b6d78eab05dac8bfa7a7))
29
+
6
30
  ## [0.5.1](https://github.com/groupsky/ya-modbus/compare/@ya-modbus/transport@0.5.0...@ya-modbus/transport@0.5.1) (2026-01-04)
7
31
 
8
32
  **Note:** Version bump only for package @ya-modbus/transport
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ya-modbus/transport",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "description": "Modbus transport implementations for ya-modbus",
5
5
  "keywords": [
6
6
  "modbus",
@@ -10,7 +10,7 @@
10
10
  "serial",
11
11
  "ya-modbus"
12
12
  ],
13
- "author": "Geno Roupsky <geno@roupsky.name>",
13
+ "author": "Geno Roupsky <185580+groupsky@users.noreply.github.com>",
14
14
  "license": "GPL-3.0-or-later",
15
15
  "type": "module",
16
16
  "main": "dist/index.js",
@@ -39,12 +39,12 @@
39
39
  "lint": "eslint ."
40
40
  },
41
41
  "dependencies": {
42
- "@ya-modbus/driver-types": "^0.5.1",
42
+ "@ya-modbus/driver-types": "^0.6.0",
43
43
  "async-mutex": "^0.5.0",
44
44
  "modbus-serial": "^8.0.18"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=20.0.0"
48
48
  },
49
- "gitHead": "52f4cb86fb2c5f6a2ba898c46ae29103048141e0"
49
+ "gitHead": "6fe7a076bd72b473e4c229945eb18c5c64c5fe34"
50
50
  }