@ya-modbus/driver-sdk 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
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
+ - **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))
12
+ - **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))
13
+ - **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)
14
+ - use tsc --build and add composite to all packages ([6001bfa](https://github.com/groupsky/ya-modbus/commit/6001bfa77c6dd87930604b0e7eb6c342991b3988))
15
+
16
+ ### Features
17
+
18
+ - add Dependabot with auto-merge and optimize dependencies ([790b31a](https://github.com/groupsky/ya-modbus/commit/790b31aa3282df56517d6d07052204b65c061cdc))
19
+ - add XYMD1 temperature/humidity sensor driver ([b657fc9](https://github.com/groupsky/ya-modbus/commit/b657fc9d142a1b7dcf0f0d82b53b415b5ed7f51a))
20
+ - **driver-sdk:** add reusable utilities for driver development ([#82](https://github.com/groupsky/ya-modbus/issues/82)) ([5283b8e](https://github.com/groupsky/ya-modbus/commit/5283b8ed36ab95f5f0719dd517f31e4ce6aeef09))
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:** 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)
23
+
24
+ ### Reverts
25
+
26
+ - Revert "chore(release): publish packages" ([a6d080d](https://github.com/groupsky/ya-modbus/commit/a6d080deeacf306f4911b6d78eab05dac8bfa7a7))
27
+
6
28
  ## [0.5.1](https://github.com/groupsky/ya-modbus/compare/@ya-modbus/driver-sdk@0.5.0...@ya-modbus/driver-sdk@0.5.1) (2026-01-04)
7
29
 
8
30
  **Note:** Version bump only for package @ya-modbus/driver-sdk
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ya-modbus/driver-sdk",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Runtime SDK for ya-modbus device drivers with transformation utilities and helpers",
5
5
  "keywords": [
6
6
  "modbus",
@@ -8,7 +8,7 @@
8
8
  "sdk",
9
9
  "runtime"
10
10
  ],
11
- "author": "Geno Roupsky <geno@roupsky.name>",
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",
@@ -36,10 +36,10 @@
36
36
  "test": "jest"
37
37
  },
38
38
  "dependencies": {
39
- "@ya-modbus/driver-types": "^0.5.1"
39
+ "@ya-modbus/driver-types": "^0.6.0"
40
40
  },
41
41
  "engines": {
42
42
  "node": ">=20.0.0"
43
43
  },
44
- "gitHead": "52f4cb86fb2c5f6a2ba898c46ae29103048141e0"
44
+ "gitHead": "37ca074321ce2847ac0c90048398f92591a10652"
45
45
  }