@springfield/ham-radio-utils 3.1.0 → 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,7 @@
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
+
1
5
  ## 3.1.0 (2025-09-13)
2
6
 
3
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))
@@ -129,6 +129,7 @@
129
129
  "required": [
130
130
  "chunkSize",
131
131
  "addressSize",
132
+ "addressEndianness",
132
133
  "segments"
133
134
  ],
134
135
  "properties": {
@@ -143,6 +144,14 @@
143
144
  "minimum": 1,
144
145
  "maximum": 4
145
146
  },
147
+ "addressEndianness": {
148
+ "type": "string",
149
+ "description": "Byte order for address values in memory operations",
150
+ "enum": [
151
+ "big",
152
+ "little"
153
+ ]
154
+ },
146
155
  "segments": {
147
156
  "type": "object",
148
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.1.0",
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.2.0",
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",
@@ -129,6 +129,7 @@
129
129
  "required": [
130
130
  "chunkSize",
131
131
  "addressSize",
132
+ "addressEndianness",
132
133
  "segments"
133
134
  ],
134
135
  "properties": {
@@ -143,6 +144,14 @@
143
144
  "minimum": 1,
144
145
  "maximum": 4
145
146
  },
147
+ "addressEndianness": {
148
+ "type": "string",
149
+ "description": "Byte order for address values in memory operations",
150
+ "enum": [
151
+ "big",
152
+ "little"
153
+ ]
154
+ },
146
155
  "segments": {
147
156
  "type": "object",
148
157
  "description": "Memory segment definitions",