@genesislcap/blank-app-seed 5.14.0 → 5.15.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/.genx/package.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.15.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.14.0...v5.15.0) (2026-06-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* report error boundary failures to genesis-telemetry GENC-1272 b7f2ded
|
|
9
|
+
* report error boundary failures to genesis-telemetry GENC-1272 (#582) 3eb3588
|
|
10
|
+
|
|
3
11
|
## [5.14.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.5...v5.14.0) (2026-06-03)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -152,6 +152,11 @@ class BaseErrorBoundary extends React.Component<BaseErrorBoundaryProps, BaseErro
|
|
|
152
152
|
error: normalized,
|
|
153
153
|
componentStack: errorInfo.componentStack,
|
|
154
154
|
});
|
|
155
|
+
|
|
156
|
+
// Expose to genesis-telemetry.js so the UI Builder agent can read it via get_preview_diagnostics
|
|
157
|
+
const reports: unknown[] = ((window as any).__GENESIS_ERROR_BOUNDARY_REPORTS__ ??= []);
|
|
158
|
+
reports.push({ message: normalized.message, stack: normalized.stack ?? null, componentStack: errorInfo.componentStack ?? null, ts: Date.now() });
|
|
159
|
+
if (reports.length > 20) reports.shift();
|
|
155
160
|
}
|
|
156
161
|
|
|
157
162
|
private readonly handleRetry = (): void => {
|