Merge branch 'backstage:master' into feature/catalog-export

This commit is contained in:
1337
2026-04-22 09:17:13 +02:00
committed by GitHub
446 changed files with 6984 additions and 220 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Fixed a performance regression in the `/entity-facets` endpoint when filters or permission conditions are applied, by routing the EXISTS-based filter through `final_entities` instead of correlating against the much larger `search` table.
+35 -1
View File
@@ -225,5 +225,39 @@
"@backstage/plugin-user-settings-backend": "0.4.2",
"@backstage/plugin-user-settings-common": "0.1.0"
},
"changesets": []
"changesets": [
"add-missing-transitive-deps",
"add-service-unavailable-error-name",
"brave-groups-learn",
"chubby-candies-cry",
"clamp-react-aria-deps",
"deduplicate-joinpaths-routing",
"delegate-attach-mock-api-factory",
"extension-point-middleware-backend-app-api",
"extension-point-middleware-backend-defaults",
"fix-alter-target-nullability",
"fix-dialog-dark-theme-selector",
"fix-embedded-postgres-config-paths",
"fix-facets-perf-regression",
"fix-implicit-any-renderInTestApp",
"fix-scheduler-sleep-overflow",
"fix-tabs-active-indicator-disappearing",
"fix-widget-resize-after-edit",
"free-ways-flow",
"funny-areas-rescue",
"gold-drinks-poke",
"move-registermswtesthooks-to-test-utils",
"owner-column-cleanup",
"remove-duplicate-deps",
"remove-portable-schema-deprecated-prop",
"remove-unused-deps",
"remove-unused-getgithubintegrationconfig",
"replace-duplicate-error-utilities",
"shy-ways-lay",
"slack-scope-message-updates",
"ui-date-range-picker",
"upgrade-module-federation-v2",
"zod-v3-config-schema-docs",
"zod-v4-dep-bump"
]
}
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Added new `DateRangePicker` component — combines two date fields and a calendar popover for selecting a date range, built on React Aria with full keyboard and screen reader accessibility. Uses BUI design tokens throughout, including auto-incremented backgrounds via the bg consumer pattern.