@backstage/backend-dynamic-feature-service 0.4.1 → 0.4.2-next.2

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,11 +1,81 @@
1
1
  # @backstage/backend-dynamic-feature-service
2
2
 
3
- ## 0.4.1
3
+ ## 0.4.2-next.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/plugin-catalog-backend@1.26.1
8
+ - @backstage/cli-node@0.2.9-next.0
9
+ - @backstage/backend-app-api@1.0.1-next.1
10
+ - @backstage/backend-defaults@0.5.1-next.2
11
+ - @backstage/plugin-auth-node@0.5.3-next.1
12
+ - @backstage/plugin-catalog-backend@1.26.2-next.2
13
+ - @backstage/plugin-scaffolder-node@0.5.0-next.2
14
+ - @backstage/backend-plugin-api@1.0.1-next.1
15
+ - @backstage/cli-common@0.1.14
16
+ - @backstage/config@1.2.0
17
+ - @backstage/config-loader@1.9.1
18
+ - @backstage/errors@1.2.4
19
+ - @backstage/types@1.1.1
20
+ - @backstage/plugin-app-node@0.1.26-next.1
21
+ - @backstage/plugin-events-backend@0.3.13-next.1
22
+ - @backstage/plugin-events-node@0.4.1-next.1
23
+ - @backstage/plugin-permission-common@0.8.1
24
+ - @backstage/plugin-permission-node@0.8.4-next.1
25
+ - @backstage/plugin-search-backend-node@1.3.3-next.2
26
+ - @backstage/plugin-search-common@1.2.14
27
+
28
+ ## 0.4.2-next.1
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @backstage/plugin-catalog-backend@1.26.2-next.1
34
+ - @backstage/backend-defaults@0.5.1-next.1
35
+ - @backstage/backend-app-api@1.0.1-next.0
36
+ - @backstage/backend-plugin-api@1.0.1-next.0
37
+ - @backstage/cli-common@0.1.14
38
+ - @backstage/cli-node@0.2.8
39
+ - @backstage/config@1.2.0
40
+ - @backstage/config-loader@1.9.1
41
+ - @backstage/errors@1.2.4
42
+ - @backstage/types@1.1.1
43
+ - @backstage/plugin-app-node@0.1.26-next.0
44
+ - @backstage/plugin-auth-node@0.5.3-next.0
45
+ - @backstage/plugin-events-backend@0.3.13-next.0
46
+ - @backstage/plugin-events-node@0.4.1-next.0
47
+ - @backstage/plugin-permission-common@0.8.1
48
+ - @backstage/plugin-permission-node@0.8.4-next.0
49
+ - @backstage/plugin-scaffolder-node@0.5.0-next.1
50
+ - @backstage/plugin-search-backend-node@1.3.3-next.1
51
+ - @backstage/plugin-search-common@1.2.14
52
+
53
+ ## 0.4.1-next.0
54
+
55
+ ### Patch Changes
56
+
57
+ - 094eaa3: Remove references to in-repo backend-common
58
+ - 2f88f88: Updated backend installation instructions.
59
+ - Updated dependencies
60
+ - @backstage/plugin-scaffolder-node@0.5.0-next.0
61
+ - @backstage/plugin-search-backend-node@1.3.3-next.0
62
+ - @backstage/backend-defaults@0.5.1-next.0
63
+ - @backstage/backend-app-api@1.0.1-next.0
64
+ - @backstage/plugin-catalog-backend@1.26.1-next.0
65
+ - @backstage/plugin-permission-node@0.8.4-next.0
66
+ - @backstage/plugin-events-backend@0.3.13-next.0
67
+ - @backstage/plugin-events-node@0.4.1-next.0
68
+ - @backstage/plugin-auth-node@0.5.3-next.0
69
+ - @backstage/backend-plugin-api@1.0.1-next.0
70
+ - @backstage/cli-common@0.1.14
71
+ - @backstage/cli-node@0.2.8
72
+ - @backstage/config@1.2.0
73
+ - @backstage/config-loader@1.9.1
74
+ - @backstage/errors@1.2.4
75
+ - @backstage/types@1.1.1
76
+ - @backstage/plugin-app-node@0.1.26-next.0
77
+ - @backstage/plugin-permission-common@0.8.1
78
+ - @backstage/plugin-search-common@1.2.14
9
79
 
10
80
  ## 0.4.0
11
81
 
package/README.md CHANGED
@@ -15,8 +15,8 @@ In the `backend` application, it can be enabled by adding the `backend-dynamic-f
15
15
  ```ts
16
16
  const backend = createBackend();
17
17
  +
18
- + backend.add(dynamicPluginsFeatureDiscoveryServiceFactory()) // overridden version of the FeatureDiscoveryService which provides features loaded by dynamic plugins
19
- + backend.add(dynamicPluginsServiceFactory())
18
+ + backend.add(dynamicPluginsFeatureDiscoveryServiceFactory) // overridden version of the FeatureDiscoveryService which provides features loaded by dynamic plugins
19
+ + backend.add(dynamicPluginsServiceFactory)
20
20
  +
21
21
  ```
22
22