forgeos 0.1.0-alpha.52 → 0.1.0-alpha.53
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.53 input=3ed440f80e50b242cb2753283b0f3bb633fa0fc4ab79d0242f469d3a6bd258ba content=721818a6f9a664aa898092d4aa5cd68cbbd8ad6e150c7d3ad3ef785a2e3fcf53
|
|
2
2
|
# AGENTS.md
|
|
3
3
|
|
|
4
4
|
<!-- forge-generated:start -->
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# forgeos
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.53
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Keep WorkOS FGA proof messaging honest across local and real modes.
|
|
8
|
+
|
|
9
|
+
- `forge workos fga doctor --json` now reports local proof timestamps as
|
|
10
|
+
local proof instead of using real-production wording when the state file was
|
|
11
|
+
produced by local FGA proof commands.
|
|
12
|
+
- This prevents local/mock FGA evidence from being mistaken for hosted WorkOS
|
|
13
|
+
Authorization API proof during production-readiness handoff.
|
|
14
|
+
|
|
3
15
|
## 0.1.0-alpha.52
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/docs/changelog.md
CHANGED
|
@@ -6,6 +6,12 @@ The canonical source file in the repository is `CHANGELOG.md`.
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## 0.1.0-alpha.53
|
|
10
|
+
|
|
11
|
+
- `forge workos fga doctor --json` now distinguishes local FGA proof timestamps
|
|
12
|
+
from real WorkOS Authorization API proof timestamps, avoiding production
|
|
13
|
+
readiness confusion in agent handoffs.
|
|
14
|
+
|
|
9
15
|
## 0.1.0-alpha.52
|
|
10
16
|
|
|
11
17
|
- Generated WorkOS FGA setup guides now include an explicit automation boundary
|
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.53","releaseId":"forgeos@0.1.0-alpha.53+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.53 input=3ed440f80e50b242cb2753283b0f3bb633fa0fc4ab79d0242f469d3a6bd258ba content=a648def26a36193279d13f385b2c17a555fadf46893ffee57e87f439642c958e
|
|
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.53",
|
|
23
|
+
"releaseId": "forgeos@0.1.0-alpha.53+unknown",
|
|
24
24
|
"schemaVersion": "0.1.0"
|
|
25
25
|
} as const;
|
package/src/forge/cli/workos.ts
CHANGED
|
@@ -2621,7 +2621,9 @@ function collectWorkOSFgaChecks(input: {
|
|
|
2621
2621
|
name: "fga-proof-state",
|
|
2622
2622
|
ok: !input.requireProof || Boolean(input.state.provedAt),
|
|
2623
2623
|
detail: input.state.provedAt
|
|
2624
|
-
?
|
|
2624
|
+
? input.state.mode === "real"
|
|
2625
|
+
? `${WORKOS_FGA_STATE_FILE} records real proof at ${input.state.provedAt}`
|
|
2626
|
+
: `${WORKOS_FGA_STATE_FILE} records local proof at ${input.state.provedAt}`
|
|
2625
2627
|
: input.requireProof
|
|
2626
2628
|
? `${WORKOS_FGA_STATE_FILE} must be produced by forge workos fga prove --real --json`
|
|
2627
2629
|
: `${WORKOS_FGA_STATE_FILE} proof timestamp not required for this command`,
|
package/src/forge/version.ts
CHANGED