phasegate 0.137.0 → 0.138.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 +8 -0
- package/package.json +1 -1
- package/scripts/harness/config-foundation/domain/harness-config.ts +4 -0
- package/scripts/harness/config-foundation/infrastructure/schemas/harness-config-v2.schema.json +9 -0
- package/scripts/harness/config-foundation/infrastructure/schemas/harness-config-v3.schema.json +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.138.0] - 2026-05-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **WI-032 post-publish dogfood** — `phasegate init --with-ci` が生成する `phasegate.config.json` の `ci.enabled` を config schema v2/v3 で許可した。
|
|
15
|
+
- v0.137.0 published package の dogfood で、init 後の `ci:generate-template` / `ci:auto-refresh-agent-context` が `additionalProperties: /ci is not allowed` で失敗することを確認。
|
|
16
|
+
- `ci.enabled` は WI-031 以降の公開設定として生成済みのため、schema 側を追従させる。
|
|
17
|
+
|
|
10
18
|
## [0.137.0] - 2026-05-09
|
|
11
19
|
|
|
12
20
|
### Added
|
package/package.json
CHANGED
|
@@ -50,6 +50,7 @@ export interface HarnessConfigSourceDocument {
|
|
|
50
50
|
harnesses: Partial<HarnessConfigResolvedDocument['harnesses']>;
|
|
51
51
|
paths: HarnessConfigResolvedDocument['paths'];
|
|
52
52
|
reporting: HarnessConfigResolvedDocument['reporting'];
|
|
53
|
+
ci?: HarnessConfigResolvedDocument['ci'];
|
|
53
54
|
validate?: HarnessConfigResolvedDocument['validate'];
|
|
54
55
|
architecture?: ArchitectureConfigSource;
|
|
55
56
|
}
|
|
@@ -110,6 +111,9 @@ export interface HarnessConfigResolvedDocument {
|
|
|
110
111
|
format: string;
|
|
111
112
|
outputDir: string;
|
|
112
113
|
};
|
|
114
|
+
ci?: {
|
|
115
|
+
enabled: boolean;
|
|
116
|
+
};
|
|
113
117
|
validate: {
|
|
114
118
|
failOnWarning: boolean;
|
|
115
119
|
};
|
package/scripts/harness/config-foundation/infrastructure/schemas/harness-config-v2.schema.json
CHANGED
|
@@ -439,6 +439,15 @@
|
|
|
439
439
|
}
|
|
440
440
|
}
|
|
441
441
|
},
|
|
442
|
+
"ci": {
|
|
443
|
+
"type": "object",
|
|
444
|
+
"additionalProperties": false,
|
|
445
|
+
"properties": {
|
|
446
|
+
"enabled": {
|
|
447
|
+
"type": "boolean"
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
442
451
|
"validate": {
|
|
443
452
|
"type": "object",
|
|
444
453
|
"additionalProperties": false,
|
package/scripts/harness/config-foundation/infrastructure/schemas/harness-config-v3.schema.json
CHANGED
|
@@ -439,6 +439,15 @@
|
|
|
439
439
|
}
|
|
440
440
|
}
|
|
441
441
|
},
|
|
442
|
+
"ci": {
|
|
443
|
+
"type": "object",
|
|
444
|
+
"additionalProperties": false,
|
|
445
|
+
"properties": {
|
|
446
|
+
"enabled": {
|
|
447
|
+
"type": "boolean"
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
442
451
|
"validate": {
|
|
443
452
|
"type": "object",
|
|
444
453
|
"additionalProperties": false,
|