add patch changeset description

Signed-off-by: Pedro Nastasi <pnastasi@expediagroup.com>
This commit is contained in:
Pedro Nastasi
2026-02-10 14:16:31 +00:00
parent f37439749b
commit 08a5813358
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Fixed O(n²) performance bottleneck in `buildEntitySearch` `traverse()` by replacing `Array.some()` linear scan with a `Set` for O(1) duplicate path key detection.