forgeos 0.1.0-alpha.61 → 0.1.0-alpha.62
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/AGENTS.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @forge-generated generator=0.1.0-alpha.
|
|
1
|
+
// @forge-generated generator=0.1.0-alpha.62 input=6d662d6d67e5ba8c06b4c2543b8321a6a73af214ac46455b42c29ba2b204464e content=721818a6f9a664aa898092d4aa5cd68cbbd8ad6e150c7d3ad3ef785a2e3fcf53
|
|
2
2
|
# AGENTS.md
|
|
3
3
|
|
|
4
4
|
<!-- forge-generated:start -->
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# forgeos
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.62
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Keep commit-ready change views from exposing local secrets or WorkOS state.
|
|
8
|
+
|
|
9
|
+
- Classify real `.env*` files as operational while keeping `.env.example`
|
|
10
|
+
and `.env.*.example` files commit-ready.
|
|
11
|
+
- Exclude `.workos-seed-state.json` and `.workos-fga-state.json` from
|
|
12
|
+
commit-ready summaries.
|
|
13
|
+
- Add regression coverage so deploy examples stay visible while
|
|
14
|
+
`deploy/.env.production` remains excluded.
|
|
15
|
+
|
|
3
16
|
## 0.1.0-alpha.61
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"defaultProvider":"local","diagnostics":[],"env":{"deployEnv":"FORGE_DEPLOY_ENV","deployId":"FORGE_DEPLOY_ID","publicReleaseId":"NEXT_PUBLIC_FORGE_RELEASE_ID","releaseId":"FORGE_RELEASE_ID"},"gitSha":"unknown","optionalProviders":["local","sentry-compatible","sentry","glitchtip","bugsink","otel","custom"],"packageName":"forgeos","packageVersion":"0.1.0-alpha.
|
|
1
|
+
{"defaultProvider":"local","diagnostics":[],"env":{"deployEnv":"FORGE_DEPLOY_ENV","deployId":"FORGE_DEPLOY_ID","publicReleaseId":"NEXT_PUBLIC_FORGE_RELEASE_ID","releaseId":"FORGE_RELEASE_ID"},"gitSha":"unknown","optionalProviders":["local","sentry-compatible","sentry","glitchtip","bugsink","otel","custom"],"packageName":"forgeos","packageVersion":"0.1.0-alpha.62","releaseId":"forgeos@0.1.0-alpha.62+unknown","schemaVersion":"0.1.0"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @forge-generated generator=0.1.0-alpha.
|
|
1
|
+
// @forge-generated generator=0.1.0-alpha.62 input=6d662d6d67e5ba8c06b4c2543b8321a6a73af214ac46455b42c29ba2b204464e content=8a470a45bbe552975fddbdbe722ebec71ebc829cb37bc6e9e4673243f18fb7c5
|
|
2
2
|
export const releaseManifest = {
|
|
3
3
|
"defaultProvider": "local",
|
|
4
4
|
"diagnostics": [],
|
|
@@ -19,7 +19,7 @@ export const releaseManifest = {
|
|
|
19
19
|
"custom"
|
|
20
20
|
],
|
|
21
21
|
"packageName": "forgeos",
|
|
22
|
-
"packageVersion": "0.1.0-alpha.
|
|
23
|
-
"releaseId": "forgeos@0.1.0-alpha.
|
|
22
|
+
"packageVersion": "0.1.0-alpha.62",
|
|
23
|
+
"releaseId": "forgeos@0.1.0-alpha.62+unknown",
|
|
24
24
|
"schemaVersion": "0.1.0"
|
|
25
25
|
} as const;
|
package/src/forge/version.ts
CHANGED
|
@@ -78,6 +78,11 @@ export function classifyChangeType(file: string): ChangeType {
|
|
|
78
78
|
const normalized = file.replace(/\\/g, "/");
|
|
79
79
|
const lower = normalized.toLowerCase();
|
|
80
80
|
const basename = lower.split("/").pop() ?? lower;
|
|
81
|
+
const isEnvExample =
|
|
82
|
+
basename === ".env.example" ||
|
|
83
|
+
(basename.startsWith(".env.") && basename.endsWith(".example"));
|
|
84
|
+
const isLocalEnvFile =
|
|
85
|
+
(basename === ".env" || basename.startsWith(".env.")) && !isEnvExample;
|
|
81
86
|
|
|
82
87
|
if (
|
|
83
88
|
lower.startsWith("src/forge/_generated/") ||
|
|
@@ -90,6 +95,13 @@ export function classifyChangeType(file: string): ChangeType {
|
|
|
90
95
|
if (lower === ".codex/hooks.json") {
|
|
91
96
|
return "config";
|
|
92
97
|
}
|
|
98
|
+
if (
|
|
99
|
+
isLocalEnvFile ||
|
|
100
|
+
lower === ".workos-seed-state.json" ||
|
|
101
|
+
lower === ".workos-fga-state.json"
|
|
102
|
+
) {
|
|
103
|
+
return "operational";
|
|
104
|
+
}
|
|
93
105
|
if (lower.startsWith(".playwright-cli/")) {
|
|
94
106
|
return "operational";
|
|
95
107
|
}
|
|
@@ -134,7 +146,7 @@ export function classifyChangeType(file: string): ChangeType {
|
|
|
134
146
|
}
|
|
135
147
|
if (
|
|
136
148
|
basename === "package.json" ||
|
|
137
|
-
|
|
149
|
+
isEnvExample ||
|
|
138
150
|
basename === "bun.lock" ||
|
|
139
151
|
basename === "package-lock.json" ||
|
|
140
152
|
basename === "pnpm-lock.yaml" ||
|