@springfield/ham-radio-utils 3.0.1 → 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,7 @@
|
|
|
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
|
+
|
|
1
5
|
## <small>3.0.1 (2025-09-12)</small>
|
|
2
6
|
|
|
3
7
|
* Merge branch 'renovate/chai-5.x' into 'main' ([5e47735](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/5e47735))
|
|
@@ -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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@springfield/ham-radio-utils",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"author": "Bryan Hunt",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"packageManager": "yarn@4.9.4",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@springfield/ham-radio-api": "^16.
|
|
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",
|
|
@@ -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",
|