@springfield/ham-radio-utils 3.0.1 → 3.2.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,11 @@
1
+ ## 3.2.0 (2025-09-14)
2
+
3
+ * feat: update @springfield/ham-radio-api to ^16.3.0 and add addressEndianness to radio protocol schem ([6b8d9da](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/6b8d9da))
4
+
5
+ ## 3.1.0 (2025-09-13)
6
+
7
+ * 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))
8
+
1
9
  ## <small>3.0.1 (2025-09-12)</small>
2
10
 
3
11
  * Merge branch 'renovate/chai-5.x' into 'main' ([5e47735](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/5e47735))
@@ -128,6 +128,8 @@
128
128
  "description": "Memory configuration for radio segments",
129
129
  "required": [
130
130
  "chunkSize",
131
+ "addressSize",
132
+ "addressEndianness",
131
133
  "segments"
132
134
  ],
133
135
  "properties": {
@@ -136,6 +138,20 @@
136
138
  "description": "Size of memory chunks in bytes",
137
139
  "minimum": 1
138
140
  },
141
+ "addressSize": {
142
+ "type": "integer",
143
+ "description": "Size of addresses in bytes for memory operations",
144
+ "minimum": 1,
145
+ "maximum": 4
146
+ },
147
+ "addressEndianness": {
148
+ "type": "string",
149
+ "description": "Byte order for address values in memory operations",
150
+ "enum": [
151
+ "big",
152
+ "little"
153
+ ]
154
+ },
139
155
  "segments": {
140
156
  "type": "object",
141
157
  "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.1",
3
+ "version": "3.2.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.1.4",
54
+ "@springfield/ham-radio-api": "^16.3.0",
55
55
  "ajv": "^8.17.1",
56
56
  "ajv-formats": "^3.0.1",
57
57
  "fishery": "^2.3.1",
@@ -128,6 +128,8 @@
128
128
  "description": "Memory configuration for radio segments",
129
129
  "required": [
130
130
  "chunkSize",
131
+ "addressSize",
132
+ "addressEndianness",
131
133
  "segments"
132
134
  ],
133
135
  "properties": {
@@ -136,6 +138,20 @@
136
138
  "description": "Size of memory chunks in bytes",
137
139
  "minimum": 1
138
140
  },
141
+ "addressSize": {
142
+ "type": "integer",
143
+ "description": "Size of addresses in bytes for memory operations",
144
+ "minimum": 1,
145
+ "maximum": 4
146
+ },
147
+ "addressEndianness": {
148
+ "type": "string",
149
+ "description": "Byte order for address values in memory operations",
150
+ "enum": [
151
+ "big",
152
+ "little"
153
+ ]
154
+ },
139
155
  "segments": {
140
156
  "type": "object",
141
157
  "description": "Memory segment definitions",