Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions automation/sentry-triage/ledger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1186,6 +1186,96 @@
"lastAnalyzed": "2026-05-16",
"duplicateOf": "CLI-44",
"problemSignature": "MDX parse error surfaced as InternalError from unwrapped replaceImagePathsAndUrls call sites."
},
"CLI-42": {
"title": "Generic Error (minified, no actionable signature)",
"disposition": "ignored",
"rationale": "Single event with generic Error and no useful stack trace or context after minification; no actionable product signature to fix or suppress safely.",
"fixSummary": "—",
"prOrIssue": "Ignored after event-level review",
"lastAnalyzed": "2026-05-16",
"problemSignature": "Minified generic Error with no actionable stack trace or context."
},
"CLI-46": {
"title": "Filepath is not relative (Linux absolute path)",
"disposition": "keep_sentry",
"rationale": "Absolute path reached a relative-path invariant; same family as CLI-3J and CLI-18.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "OpenAPI or workspace path conversion received an absolute path where a relative path was required; path boundary bug."
},
"CLI-4C": {
"title": "Endpoint not found in readme config",
"disposition": "keep_sentry",
"rationale": "convertReadmeConfig could not match an endpoint; either user readme config is wrong or the endpoint matcher has a product bug.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "IR generation readme config endpoint matcher failed to locate a matching endpoint; needs product investigation."
},
"CLI-4G": {
"title": "Endpoint not found in readme config",
"disposition": "keep_sentry",
"rationale": "Same readme config endpoint resolution family as CLI-4C.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "IR generation readme config endpoint matcher failed to locate a matching endpoint; needs product investigation."
},
"CLI-4J": {
"title": "Unsupported OpenAPI version 3.2.0",
"disposition": "keep_sentry",
"rationale": "Redocly threw for unsupported OpenAPI 3.2.0; the CLI should either support it or classify as ParseError at the OpenAPI loading boundary. Needs product decision.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "Redocly rejected user OpenAPI spec version 3.2.0 as unsupported; needs product decision on classification or support."
},
"CLI-4P": {
"title": "Undefined server name in IR-to-FDR conversion",
"disposition": "keep_sentry",
"rationale": "ir-to-fdr-converter encountered an undefined server name; this is a product/conversion bug in server URL mapping.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "IR-to-FDR converter encountered undefined server name at endpoint; server URL mapping product bug."
},
"CLI-4T": {
"title": "Failed to find PronunciationItem",
"disposition": "keep_sentry",
"rationale": "FDR SDK example generation failed to resolve a type; this is a product/SDK bug in generateEndpointExampleCall.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "FDR SDK example generation failed to locate a referenced type during endpoint example call generation; true product bug."
},
"CLI-4V": {
"title": "Cannot find declaration of type in IR generator",
"disposition": "keep_sentry",
"rationale": "IR generator TypeResolver could not find a declared type; this is a product/resolution bug.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "IR generation TypeResolver failed to locate a declared type; possible reference/resolution product bug."
},
"CLI-4W": {
"title": "Failed to find NorthErrorType",
"disposition": "keep_sentry",
"rationale": "FDR SDK example generation failed to resolve a type; same product bug family as CLI-4T.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "FDR SDK example generation failed to locate a referenced type during endpoint example call generation; true product bug."
},
"CLI-4X": {
"title": "Failed to find Error type",
"disposition": "keep_sentry",
"rationale": "FDR SDK example generation failed to resolve a type; same product bug family as CLI-4T.",
"fixSummary": "—",
"prOrIssue": "Keep in Sentry until product fix",
"lastAnalyzed": "2026-05-16",
"problemSignature": "FDR SDK example generation failed to locate a referenced type during endpoint example call generation; true product bug."
}
},
"CLI-49": {
Expand Down
9 changes: 9 additions & 0 deletions packages/cli/cli/versions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# yaml-language-server: $schema=../../../fern-versions-yml.schema.json
- version: 5.27.5
changelogEntry:
- summary: |
Wrap `replaceImagePathsAndUrls` calls in `DocsDefinitionResolver` and `previewDocs` with
try/catch boundaries that convert MDX parse failures to `CliError(ParseError)`, preventing
user-authored MDX syntax errors from reaching Sentry as false-positive InternalErrors.
type: fix
createdAt: "2026-05-16"
irVersion: 66
- version: 5.27.4
changelogEntry:
- summary: |
Expand Down
Loading