@backstage/plugin-catalog-backend 3.9.0-next.2 → 3.9.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +21 -21
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @backstage/plugin-catalog-backend
2
2
 
3
+ ## 3.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c7c0ec3: Added a `refresh-catalog-entity` action so agents and MCP clients can re-queue a single entity for processing after creating or updating it — useful for reading back fresh data immediately after a scaffolder run without waiting for the next scheduled processing loop.
8
+
9
+ ### Patch Changes
10
+
11
+ - aa318d0: Migrated internal query filter handling from `EntityFilter` to `FilterPredicate`, simplifying the filter parsing and query application pipeline.
12
+ - 10f0713: Replaced the delete-all and reinsert pattern for the `relations` table with a diff-based sync that only touches rows that actually changed. In steady state (the common case), zero writes occur, eliminating write churn, dead tuples, and WAL traffic from the processing path. Stitching is now also skipped for relation neighbors that did not change.
13
+ - ee40136: Fixed a missing promise return in a database migration rollback function.
14
+ - eb6dff2: Fixed an issue where PostgreSQL deadlock errors during entity provider mutations were silently swallowed, causing entities to be dropped until the next full refresh. Transactions are now automatically retried on deadlock with exponential back-off.
15
+ - dd562f0: Fixed a potential MySQL deadlock during concurrent entity processing by retrying the `updateProcessedEntity` transaction on deadlock errors.
16
+ - b031a48: Fixed an issue where SCM `location.moved` events would generate new locations in the database for files that were not actively tracked.
17
+ - b7650ad: Simplified internal router setup by removing unnecessary conditional guards around route registrations.
18
+ - Updated dependencies
19
+ - @backstage/catalog-model@1.10.0
20
+ - @backstage/backend-plugin-api@1.10.0
21
+ - @backstage/integration@2.1.0
22
+ - @backstage/plugin-permission-common@0.9.10
23
+ - @backstage/plugin-permission-node@0.11.3
24
+ - @backstage/backend-openapi-utils@0.7.1
25
+ - @backstage/plugin-catalog-node@2.2.4
26
+ - @backstage/plugin-events-node@0.4.25
27
+
3
28
  ## 3.9.0-next.2
4
29
 
5
30
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend",
3
- "version": "3.9.0-next.2",
3
+ "version": "3.9.0",
4
4
  "description": "The Backstage backend plugin that provides the Backstage catalog",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -75,20 +75,20 @@
75
75
  "test": "backstage-cli package test"
76
76
  },
77
77
  "dependencies": {
78
- "@backstage/backend-openapi-utils": "0.7.1-next.0",
79
- "@backstage/backend-plugin-api": "1.10.0-next.1",
80
- "@backstage/catalog-client": "1.16.1",
81
- "@backstage/catalog-model": "1.9.0",
82
- "@backstage/config": "1.3.8",
83
- "@backstage/errors": "1.3.1",
84
- "@backstage/filter-predicates": "0.1.4",
85
- "@backstage/integration": "2.1.0-next.0",
86
- "@backstage/plugin-catalog-common": "1.1.10",
87
- "@backstage/plugin-catalog-node": "2.2.4-next.0",
88
- "@backstage/plugin-events-node": "0.4.25-next.0",
89
- "@backstage/plugin-permission-common": "0.9.9",
90
- "@backstage/plugin-permission-node": "0.11.3-next.0",
91
- "@backstage/types": "1.2.2",
78
+ "@backstage/backend-openapi-utils": "^0.7.1",
79
+ "@backstage/backend-plugin-api": "^1.10.0",
80
+ "@backstage/catalog-client": "^1.16.1",
81
+ "@backstage/catalog-model": "^1.10.0",
82
+ "@backstage/config": "^1.3.8",
83
+ "@backstage/errors": "^1.3.1",
84
+ "@backstage/filter-predicates": "^0.1.4",
85
+ "@backstage/integration": "^2.1.0",
86
+ "@backstage/plugin-catalog-common": "^1.1.10",
87
+ "@backstage/plugin-catalog-node": "^2.2.4",
88
+ "@backstage/plugin-events-node": "^0.4.25",
89
+ "@backstage/plugin-permission-common": "^0.9.10",
90
+ "@backstage/plugin-permission-node": "^0.11.3",
91
+ "@backstage/types": "^1.2.2",
92
92
  "@opentelemetry/api": "^1.9.0",
93
93
  "ajv": "^8.10.0",
94
94
  "ajv-errors": "^3.0.0",
@@ -111,12 +111,12 @@
111
111
  "zod-validation-error": "^5.0.0"
112
112
  },
113
113
  "devDependencies": {
114
- "@backstage/backend-defaults": "0.17.7-next.2",
115
- "@backstage/backend-test-utils": "1.11.6-next.1",
116
- "@backstage/cli": "0.36.5-next.1",
117
- "@backstage/plugin-catalog-backend-module-logs": "0.1.25-next.1",
118
- "@backstage/plugin-scaffolder-common": "2.2.2-next.0",
119
- "@backstage/repo-tools": "0.18.1-next.1",
114
+ "@backstage/backend-defaults": "^0.17.7",
115
+ "@backstage/backend-test-utils": "^1.11.6",
116
+ "@backstage/cli": "^0.36.5",
117
+ "@backstage/plugin-catalog-backend-module-logs": "^0.1.25",
118
+ "@backstage/plugin-scaffolder-common": "^2.2.2",
119
+ "@backstage/repo-tools": "^0.19.0",
120
120
  "@types/core-js": "^2.5.4",
121
121
  "@types/express": "^4.17.6",
122
122
  "@types/git-url-parse": "^9.0.0",