@clossys/architect 0.1.3 → 0.1.6

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 (3) hide show
  1. package/CHANGELOG.md +40 -1
  2. package/LICENSE +1 -1
  3. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -5,6 +5,45 @@ All notable changes to this package are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.6] - 2026-09-14
9
+
10
+ ### Changed
11
+
12
+ - Patch version bump only, to obtain a fresh, never-before-used
13
+ `governance/release-qualifications/` record path. The 0.1.5 qualification
14
+ record added by #811 was orphaned when that pull request was squash-merged
15
+ (#821) and had to be removed (#834); the immutability gate that protects
16
+ already-introduced record paths (`check-candidate-qualification.mjs`'s
17
+ single-introduction-commit invariant) means a valid record can never again
18
+ be introduced at the `0.1.5` path, so this package moves to `0.1.6`
19
+ purely to regain one. No functional or behavioral change.
20
+
21
+
22
+ ## [0.1.5] - 2026-09-09
23
+
24
+ ### Changed
25
+
26
+ - Historical entries below now describe the previous npm scope without naming
27
+ the producer account this catalogue no longer publishes under, and links to
28
+ this repository use its current `clossys/foundry` path. No date, version,
29
+ or recorded fact changed — only the way the retired scope is referred to.
30
+
31
+
32
+ ## [0.1.4] - 2026-09-02
33
+
34
+ ### Fixed
35
+
36
+ - Declared `bin` targets without a leading `./`. npm rejected the dotted
37
+ form as an invalid script name and **removed the entry entirely** on
38
+ publish, so `architect-check` would not have been installed
39
+ by a consumer of the previous release.
40
+
41
+ ### Changed
42
+
43
+ - Named Clossys as copyright holder in `LICENSE` and as `author` in the
44
+ package manifest, so every package in the catalogue attributes identically.
45
+
46
+
8
47
  ## [0.1.3] - 2026-08-31
9
48
 
10
49
  ### Changed
@@ -34,4 +73,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
73
  - Evidence-based architecture exception assessment with explicit indeterminate
35
74
  results when no material changes have been observed.
36
75
  - `architect-check` topology and exception-assessment commands.
37
- - Ontology model and snapshot API under `@vespeneventures/architect/ontology`.
76
+ - Ontology model and snapshot API under `@clossys/architect/ontology`.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Calvin Hung
3
+ Copyright (c) 2026 Clossys
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clossys/architect",
3
- "version": "0.1.3",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  }
19
19
  },
20
20
  "bin": {
21
- "architect-check": "./dist/cli.js"
21
+ "architect-check": "dist/cli.js"
22
22
  },
23
23
  "files": [
24
24
  "dist",
@@ -38,7 +38,7 @@
38
38
  "validation",
39
39
  "typescript"
40
40
  ],
41
- "author": "Calvin Hung",
41
+ "author": "Clossys",
42
42
  "repository": {
43
43
  "type": "git",
44
44
  "url": "git+https://github.com/clossys/foundry.git",
@@ -58,9 +58,9 @@
58
58
  "test": "vitest run"
59
59
  },
60
60
  "devDependencies": {
61
- "@types/node": "^22.10.0",
61
+ "@types/node": "^26.4.1",
62
62
  "typescript": "~6.0.0",
63
- "vitest": "^4.1.9"
63
+ "vitest": "^5.0.0"
64
64
  },
65
65
  "publishConfig": {
66
66
  "registry": "https://registry.npmjs.org",