@springfield/ham-radio-utils 3.0.0 → 3.1.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 CHANGED
@@ -1,3 +1,22 @@
1
+ ## 3.1.0 (2025-09-13)
2
+
3
+ * feat(deps): update @springfield/ham-radio-api to ^16.2.0 and add addressSize to radio protocol schem ([7ebcb7b](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/7ebcb7b))
4
+
5
+ ## <small>3.0.1 (2025-09-12)</small>
6
+
7
+ * Merge branch 'renovate/chai-5.x' into 'main' ([5e47735](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/5e47735))
8
+ * Merge branch 'renovate/oxlint-1.x' into 'main' ([5c2dcc0](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/5c2dcc0))
9
+ * Merge branch 'renovate/semantic-release-monorepo' into 'main' ([efbd8ed](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/efbd8ed))
10
+ * Merge branch 'renovate/springfield-ham-radio-api-16.x' into 'main' ([9707285](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/9707285))
11
+ * Merge branch 'renovate/yarn-monorepo' into 'main' ([a12a662](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/a12a662))
12
+ * fix(deps): update dependency @springfield/ham-radio-api to ^16.1.4 ([275773f](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/275773f))
13
+ * chore: better oxlint config ([2e3c6c2](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/2e3c6c2))
14
+ * chore(deps): update dependencies in package.json and yarn.lock ([876fcce](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/876fcce))
15
+ * chore(deps): update dependency @semantic-release/gitlab to v13.2.8 ([33d9e2a](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/33d9e2a))
16
+ * chore(deps): update dependency chai to v5.3.3 ([aa14fcb](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/aa14fcb))
17
+ * chore(deps): update dependency oxlint to v1.12.0 ([1bd7a3f](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/1bd7a3f))
18
+ * chore(deps): update yarn to v4.9.4 ([de4403d](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/de4403d))
19
+
1
20
  ## [3.0.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/compare/v2.2.2...v3.0.0) (2025-08-17)
2
21
 
3
22
 
@@ -128,6 +128,7 @@
128
128
  "description": "Memory configuration for radio segments",
129
129
  "required": [
130
130
  "chunkSize",
131
+ "addressSize",
131
132
  "segments"
132
133
  ],
133
134
  "properties": {
@@ -136,6 +137,12 @@
136
137
  "description": "Size of memory chunks in bytes",
137
138
  "minimum": 1
138
139
  },
140
+ "addressSize": {
141
+ "type": "integer",
142
+ "description": "Size of addresses in bytes for memory operations",
143
+ "minimum": 1,
144
+ "maximum": 4
145
+ },
139
146
  "segments": {
140
147
  "type": "object",
141
148
  "description": "Memory segment definitions",
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@springfield/ham-radio-utils",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "author": "Bryan Hunt",
5
5
  "license": "MIT",
6
- "packageManager": "yarn@4.9.2",
6
+ "packageManager": "yarn@4.9.4",
7
7
  "readme": "README.md",
8
8
  "type": "module",
9
9
  "main": "dist/index.js",
@@ -15,8 +15,8 @@
15
15
  "scripts": {
16
16
  "build": "tsc && cp src/db/* dist/db/ && cp src/schemas/* dist/schemas/",
17
17
  "commitlint": "commitlint --edit",
18
- "lint": "oxlint --import-plugin --tsconfig tsconfig.json",
19
- "lint:fix": "oxlint --import-plugin --tsconfig tsconfig.json --fix --fix-suggestions",
18
+ "lint": "oxlint",
19
+ "lint:fix": "oxlint --fix --fix-suggestions",
20
20
  "release": "semantic-release",
21
21
  "prepare": "husky"
22
22
  },
@@ -51,11 +51,11 @@
51
51
  "access": "public"
52
52
  },
53
53
  "dependencies": {
54
- "@springfield/ham-radio-api": "^16.1.3",
54
+ "@springfield/ham-radio-api": "^16.2.0",
55
55
  "ajv": "^8.17.1",
56
56
  "ajv-formats": "^3.0.1",
57
57
  "fishery": "^2.3.1",
58
- "loglayer": "^6.6.0",
58
+ "loglayer": "^6.7.0",
59
59
  "sprintf-js": "^1.1.3"
60
60
  },
61
61
  "devDependencies": {
@@ -63,13 +63,13 @@
63
63
  "@commitlint/config-conventional": "19.8.1",
64
64
  "@semantic-release/changelog": "6.0.3",
65
65
  "@semantic-release/git": "10.0.1",
66
- "@semantic-release/gitlab": "13.2.6",
66
+ "@semantic-release/gitlab": "13.2.8",
67
67
  "@types/chai": "5.2.2",
68
68
  "@types/sprintf-js": "1.1.4",
69
- "chai": "5.2.1",
69
+ "chai": "6.0.1",
70
70
  "husky": "9.1.7",
71
- "oxlint": "1.11.2",
72
- "semantic-release": "23.1.1",
71
+ "oxlint": "1.15.0",
72
+ "semantic-release": "24.2.8",
73
73
  "semantic-release-yarn": "3.0.2",
74
74
  "typescript": "5.9.2"
75
75
  }
@@ -128,6 +128,7 @@
128
128
  "description": "Memory configuration for radio segments",
129
129
  "required": [
130
130
  "chunkSize",
131
+ "addressSize",
131
132
  "segments"
132
133
  ],
133
134
  "properties": {
@@ -136,6 +137,12 @@
136
137
  "description": "Size of memory chunks in bytes",
137
138
  "minimum": 1
138
139
  },
140
+ "addressSize": {
141
+ "type": "integer",
142
+ "description": "Size of addresses in bytes for memory operations",
143
+ "minimum": 1,
144
+ "maximum": 4
145
+ },
139
146
  "segments": {
140
147
  "type": "object",
141
148
  "description": "Memory segment definitions",