@springfield/ham-radio-utils 2.2.0 → 2.2.2

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,17 @@
1
+ ## [2.2.2](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/compare/v2.2.1...v2.2.2) (2025-08-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @springfield/ham-radio-api to ^16.1.2 ([5e45772](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/5e4577239236c3a32e43ce6c8dbbf6c75ab73196))
7
+
8
+ ## [2.2.1](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/compare/v2.2.0...v2.2.1) (2025-07-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency loglayer to ^6.6.0 ([d34f07a](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/commit/d34f07abdb341b24fef9e685a1c73f0f63f3ce23))
14
+
1
15
  ## [2.2.0](https://gitlab.com/springfield-ham-radio/app/ham-radio-utils/compare/v2.1.0...v2.2.0) (2025-06-24)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@springfield/ham-radio-utils",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "author": "Bryan Hunt",
5
5
  "license": "MIT",
6
6
  "packageManager": "yarn@4.9.2",
@@ -51,11 +51,11 @@
51
51
  "access": "public"
52
52
  },
53
53
  "dependencies": {
54
- "@springfield/ham-radio-api": "^16.1.1",
54
+ "@springfield/ham-radio-api": "^16.1.2",
55
55
  "ajv": "^8.17.1",
56
56
  "ajv-formats": "^3.0.1",
57
57
  "fishery": "^2.3.1",
58
- "loglayer": "^6.4.3",
58
+ "loglayer": "^6.6.0",
59
59
  "sprintf-js": "^1.1.3"
60
60
  },
61
61
  "devDependencies": {
@@ -64,13 +64,13 @@
64
64
  "@semantic-release/changelog": "6.0.3",
65
65
  "@semantic-release/git": "10.0.1",
66
66
  "@semantic-release/gitlab": "13.2.6",
67
- "@types/chai": "^5.2.2",
67
+ "@types/chai": "5.2.2",
68
68
  "@types/sprintf-js": "1.1.4",
69
- "chai": "^5.2.0",
69
+ "chai": "5.2.1",
70
70
  "husky": "9.1.7",
71
71
  "oxlint": "1.3.0",
72
72
  "semantic-release": "23.1.1",
73
73
  "semantic-release-yarn": "3.0.2",
74
- "typescript": "5.8.3"
74
+ "typescript": "5.9.2"
75
75
  }
76
76
  }
@@ -1,3 +0,0 @@
1
- import type { RadioMemorySegment } from '@springfield/ham-radio-api';
2
- export declare const formatSegment: (segment: RadioMemorySegment) => string;
3
- //# sourceMappingURL=memory-segment-utils.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-segment-utils.d.ts","sourceRoot":"","sources":["../../src/utils/memory-segment-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAIrE,eAAO,MAAM,aAAa,GAAI,SAAS,kBAAkB,KAAG,MAE3D,CAAC"}
@@ -1,6 +0,0 @@
1
- import { sprintf } from 'sprintf-js';
2
- import { toHexWords } from './to-hex-words.js';
3
- export const formatSegment = (segment) => {
4
- return sprintf('%04X : %s', segment.startAddress, toHexWords(segment.data));
5
- };
6
- //# sourceMappingURL=memory-segment-utils.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory-segment-utils.js","sourceRoot":"","sources":["../../src/utils/memory-segment-utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,OAA2B,EAAU,EAAE;IACnE,OAAO,OAAO,CAAC,WAAW,EAAE,OAAO,CAAC,YAAY,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC;AAC9E,CAAC,CAAC","sourcesContent":["import type { RadioMemorySegment } from '@springfield/ham-radio-api';\nimport { sprintf } from 'sprintf-js';\nimport { toHexWords } from './to-hex-words.js';\n\nexport const formatSegment = (segment: RadioMemorySegment): string => {\n return sprintf('%04X : %s', segment.startAddress, toHexWords(segment.data));\n};\n"]}