@backstage/plugin-catalog-backend 0.17.1 → 0.18.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/CHANGELOG.md CHANGED
@@ -1,5 +1,111 @@
1
1
  # @backstage/plugin-catalog-backend
2
2
 
3
+ ## 0.18.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7f82ce9f51: **BREAKING** EntitiesSearchFilter fields have changed.
8
+
9
+ EntitiesSearchFilter now has only two fields: `key` and `value`. The `matchValueIn` and `matchValueExists` fields are no longer are supported. Previous filters written using the `matchValueIn` and `matchValueExists` fields can be rewritten as follows:
10
+
11
+ Filtering by existence of key only:
12
+
13
+ ```diff
14
+ filter: {
15
+ {
16
+ key: 'abc',
17
+ - matchValueExists: true,
18
+ },
19
+ }
20
+ ```
21
+
22
+ Filtering by key and values:
23
+
24
+ ```diff
25
+ filter: {
26
+ {
27
+ key: 'abc',
28
+ - matchValueExists: true,
29
+ - matchValueIn: ['xyz'],
30
+ + values: ['xyz'],
31
+ },
32
+ }
33
+ ```
34
+
35
+ Negation of filters can now be achieved through a `not` object:
36
+
37
+ ```
38
+ filter: {
39
+ not: {
40
+ key: 'abc',
41
+ values: ['xyz'],
42
+ },
43
+ }
44
+ ```
45
+
46
+ ### Patch Changes
47
+
48
+ - 740f958290: Providing an empty values array in an EntityFilter will now return no matches.
49
+ - bab752e2b3: Change default port of backend from 7000 to 7007.
50
+
51
+ This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
52
+
53
+ You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
54
+
55
+ ```
56
+ backend:
57
+ listen: 0.0.0.0:7123
58
+ baseUrl: http://localhost:7123
59
+ ```
60
+
61
+ More information can be found here: https://backstage.io/docs/conf/writing
62
+
63
+ - eddb82ab7c: Index User entities by displayName to be able to search by full name. Added displayName (if present) to the 'text' field in the indexed document.
64
+ - 563b039f0b: Added Azure DevOps discovery processor
65
+ - 8866b62f3d: Detect a duplicate entities when adding locations through dry run
66
+ - Updated dependencies
67
+ - @backstage/errors@0.1.5
68
+ - @backstage/backend-common@0.9.11
69
+
70
+ ## 0.17.4
71
+
72
+ ### Patch Changes
73
+
74
+ - 5d2a7303bd: This fixes a bug where locations couldn't be added unless the processing engine is started.
75
+ It's now possible to run the catalog backend without starting the processing engine and still allowing locations registrations.
76
+
77
+ This is done by refactor the `EntityProvider.connect` to happen outside the engine.
78
+
79
+ - 06934f2f52: Adjust entity query construction to ensure sub-queries are always isolated from one another.
80
+ - b90fc74d70: adds getDefaultProcessor method to CatalogBuilder
81
+ - Updated dependencies
82
+ - @backstage/catalog-client@0.5.2
83
+ - @backstage/catalog-model@0.9.7
84
+ - @backstage/backend-common@0.9.10
85
+
86
+ ## 0.17.3
87
+
88
+ ### Patch Changes
89
+
90
+ - 86bef79ad1: Allow singleton and flexibly nested EntityFilters
91
+ - Updated dependencies
92
+ - @backstage/backend-common@0.9.9
93
+ - @backstage/catalog-client@0.5.1
94
+
95
+ ## 0.17.2
96
+
97
+ ### Patch Changes
98
+
99
+ - b9ce1ce2c1: Allow custom LocationAnalyzer in NextCatalogBuilder
100
+ - 10615525f3: Switch to use the json and observable types from `@backstage/types`
101
+ - Updated dependencies
102
+ - @backstage/config@0.1.11
103
+ - @backstage/errors@0.1.4
104
+ - @backstage/integration@0.6.9
105
+ - @backstage/backend-common@0.9.8
106
+ - @backstage/catalog-model@0.9.6
107
+ - @backstage/search-common@0.2.1
108
+
3
109
  ## 0.17.1
4
110
 
5
111
  ### Patch Changes