@ya-modbus/driver-loader 0.4.1-refactor-scope-driver-packages.0 → 0.5.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 +11 -8
  2. package/package.json +7 -3
package/CHANGELOG.md CHANGED
@@ -3,20 +3,23 @@
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.4.1-refactor-scope-driver-packages.0 (2026-01-04)
6
+ ## [0.5.1](https://github.com/groupsky/ya-modbus/compare/@ya-modbus/driver-loader@0.5.0...@ya-modbus/driver-loader@0.5.1) (2026-01-04)
7
+
8
+ **Note:** Version bump only for package @ya-modbus/driver-loader
9
+
10
+ # 0.5.0 (2026-01-04)
7
11
 
8
12
  ### Bug Fixes
9
13
 
10
- * enable linting without build and fix monorepo build order ([#129](https://github.com/groupsky/ya-modbus/issues/129)) ([d3e027b](https://github.com/groupsky/ya-modbus/commit/d3e027bc75822d970f63733c4d069508a020122a)), 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)) ([98d6fd6](https://github.com/groupsky/ya-modbus/commit/98d6fd666322fb647390d851c43ba0cd8a02486d))
12
- * **release:** revert failed release and add missing publishConfig ([#147](https://github.com/groupsky/ya-modbus/issues/147)) ([8cbd4ba](https://github.com/groupsky/ya-modbus/commit/8cbd4baf9c140c8ef10080947ddd566014f32c77))
13
- * **release:** revert failed release and cleanup tags ([#145](https://github.com/groupsky/ya-modbus/issues/145)) ([ba85dd9](https://github.com/groupsky/ya-modbus/commit/ba85dd9518f85705bc3f87349b097f004a0e90a1)), closes [#143](https://github.com/groupsky/ya-modbus/issues/143) [#144](https://github.com/groupsky/ya-modbus/issues/144)
14
+ - enable linting without build and fix monorepo build order ([#129](https://github.com/groupsky/ya-modbus/issues/129)) ([d3e027b](https://github.com/groupsky/ya-modbus/commit/d3e027bc75822d970f63733c4d069508a020122a)), 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)) ([98d6fd6](https://github.com/groupsky/ya-modbus/commit/98d6fd666322fb647390d851c43ba0cd8a02486d))
16
+ - **release:** revert failed release and add missing publishConfig ([#147](https://github.com/groupsky/ya-modbus/issues/147)) ([8cbd4ba](https://github.com/groupsky/ya-modbus/commit/8cbd4baf9c140c8ef10080947ddd566014f32c77))
17
+ - **release:** revert failed release and cleanup tags ([#145](https://github.com/groupsky/ya-modbus/issues/145)) ([ba85dd9](https://github.com/groupsky/ya-modbus/commit/ba85dd9518f85705bc3f87349b097f004a0e90a1)), closes [#143](https://github.com/groupsky/ya-modbus/issues/143) [#144](https://github.com/groupsky/ya-modbus/issues/144)
14
18
 
15
19
  ### Features
16
20
 
17
- * **release:** add Lerna-Lite publishing with pre-release support ([#135](https://github.com/groupsky/ya-modbus/issues/135)) ([fcaf40a](https://github.com/groupsky/ya-modbus/commit/fcaf40a63452ecce09e82b397d448652354ecd16))
21
+ - **release:** add Lerna-Lite publishing with pre-release support ([#135](https://github.com/groupsky/ya-modbus/issues/135)) ([fcaf40a](https://github.com/groupsky/ya-modbus/commit/fcaf40a63452ecce09e82b397d448652354ecd16))
18
22
 
19
23
  ### Reverts
20
24
 
21
- * Revert "chore(release): publish packages" ([94fd33c](https://github.com/groupsky/ya-modbus/commit/94fd33ca0caa158c37a1a43609638843d08c792b))
22
- * Revert "chore(release): publish packages" ([b613837](https://github.com/groupsky/ya-modbus/commit/b6138375978fdebfd57e645367f3fc8011f0452f))
25
+ - Revert "chore(release): publish packages" ([b613837](https://github.com/groupsky/ya-modbus/commit/b6138375978fdebfd57e645367f3fc8011f0452f))
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@ya-modbus/driver-loader",
3
- "version": "0.4.1-refactor-scope-driver-packages.0",
3
+ "version": "0.5.1",
4
4
  "description": "Dynamic driver loader for ya-modbus device drivers",
5
+ "type": "module",
5
6
  "keywords": [
6
7
  "modbus",
7
8
  "driver",
@@ -45,7 +46,7 @@
45
46
  "lint": "eslint ."
46
47
  },
47
48
  "dependencies": {
48
- "@ya-modbus/driver-types": "^0.4.1-refactor-scope-driver-packages.0"
49
+ "@ya-modbus/driver-types": "^0.5.1"
49
50
  },
50
51
  "peerDependencies": {
51
52
  "jest": ">=29.0.0"
@@ -55,5 +56,8 @@
55
56
  "optional": true
56
57
  }
57
58
  },
58
- "gitHead": "b55d909d67dfff46fb79951e68a2d47ac3fab267"
59
+ "engines": {
60
+ "node": ">=20.0.0"
61
+ },
62
+ "gitHead": "52f4cb86fb2c5f6a2ba898c46ae29103048141e0"
59
63
  }