@systemfsoftware/hex-schema 1.7.0 → 1.8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @systemfsoftware/hex-schema
2
2
 
3
+ ## 1.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cut over to effect v4 (4.0.0-rc.108): public surface derives from effect types; peers flip effect ^3→^4
8
+
9
+ ### Patch Changes
10
+
11
+ - New version is published through npm trusted publishing, so it carries a provenance attestation you can verify.
12
+
13
+ - The `0x`-prefix codec directions move to a new internal `prefixed-hex.kernel.ts` as `stripHexPrefix` and `addHexPrefix`. `prefixed-hex.schema.ts` and `uint8array-from-prefixed-hex.schema.ts` encode and decode exactly as before.
14
+
15
+ - Each of these packages now has a README, so its registry page says what the package is, how
16
+ to install it, and what to import or register — previously the page was blank. The lint
17
+ plugins show the configuration line that enables what they recommend.
18
+
19
+ `@systemfsoftware/stryker-js-mutation-report` also carries its licence text
20
+
3
21
  ## 1.7.0
4
22
 
5
23
  ### Minor Changes
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@systemfsoftware/hex-schema",
3
3
  "license": "Apache-2.0",
4
- "version": "1.7.0",
4
+ "version": "1.8.0",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
9
- "directory": "packages/hex-schema"
9
+ "directory": "packages/core/hex/hex-schema"
10
10
  },
11
- "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/hex-schema#readme",
11
+ "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/core/hex/hex-schema#readme",
12
12
  "bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
13
13
  "description": "Effect Schema definitions for hexadecimal wire formats — strict, colon-delimited, prefixed, and byte-level schemas with branded types.",
14
14
  "keywords": [
@@ -44,12 +44,12 @@
44
44
  "rimraf": "^6.1.3",
45
45
  "tsdown": "^0.22.14",
46
46
  "vitest": "^4.1.10",
47
- "@systemfsoftware/effect-schema-vite": "^1.5.2",
47
+ "@systemfsoftware/effect-schema-law": "^0.8.0",
48
+ "@systemfsoftware/effect-schema-vite": "^1.5.3",
48
49
  "@systemfsoftware/oxlint-config": "^0.1.0",
49
- "@systemfsoftware/stryker-plugins": "^0.12.0",
50
- "@systemfsoftware/tsconfig": "^1.3.2",
50
+ "@systemfsoftware/tsconfig": "^1.3.3",
51
51
  "@systemfsoftware/vitest-config": "^0.1.0",
52
- "@systemfsoftware/effect-schema-law": "^0.7.0"
52
+ "@systemfsoftware/stryker-plugins": "^0.13.0"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "effect": "4.0.0-rc.108"