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

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 (3) hide show
  1. package/CHANGELOG.md +47 -2
  2. package/README.md +2 -2
  3. package/package.json +22 -22
package/CHANGELOG.md CHANGED
@@ -1,11 +1,56 @@
1
1
  # @backstage/backend-dynamic-feature-service
2
2
 
3
- ## 0.4.1
3
+ ## 0.4.2-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/plugin-catalog-backend@1.26.1
8
+ - @backstage/plugin-catalog-backend@1.26.2-next.1
9
+ - @backstage/backend-defaults@0.5.1-next.1
10
+ - @backstage/backend-app-api@1.0.1-next.0
11
+ - @backstage/backend-plugin-api@1.0.1-next.0
12
+ - @backstage/cli-common@0.1.14
13
+ - @backstage/cli-node@0.2.8
14
+ - @backstage/config@1.2.0
15
+ - @backstage/config-loader@1.9.1
16
+ - @backstage/errors@1.2.4
17
+ - @backstage/types@1.1.1
18
+ - @backstage/plugin-app-node@0.1.26-next.0
19
+ - @backstage/plugin-auth-node@0.5.3-next.0
20
+ - @backstage/plugin-events-backend@0.3.13-next.0
21
+ - @backstage/plugin-events-node@0.4.1-next.0
22
+ - @backstage/plugin-permission-common@0.8.1
23
+ - @backstage/plugin-permission-node@0.8.4-next.0
24
+ - @backstage/plugin-scaffolder-node@0.5.0-next.1
25
+ - @backstage/plugin-search-backend-node@1.3.3-next.1
26
+ - @backstage/plugin-search-common@1.2.14
27
+
28
+ ## 0.4.1-next.0
29
+
30
+ ### Patch Changes
31
+
32
+ - 094eaa3: Remove references to in-repo backend-common
33
+ - 2f88f88: Updated backend installation instructions.
34
+ - Updated dependencies
35
+ - @backstage/plugin-scaffolder-node@0.5.0-next.0
36
+ - @backstage/plugin-search-backend-node@1.3.3-next.0
37
+ - @backstage/backend-defaults@0.5.1-next.0
38
+ - @backstage/backend-app-api@1.0.1-next.0
39
+ - @backstage/plugin-catalog-backend@1.26.1-next.0
40
+ - @backstage/plugin-permission-node@0.8.4-next.0
41
+ - @backstage/plugin-events-backend@0.3.13-next.0
42
+ - @backstage/plugin-events-node@0.4.1-next.0
43
+ - @backstage/plugin-auth-node@0.5.3-next.0
44
+ - @backstage/backend-plugin-api@1.0.1-next.0
45
+ - @backstage/cli-common@0.1.14
46
+ - @backstage/cli-node@0.2.8
47
+ - @backstage/config@1.2.0
48
+ - @backstage/config-loader@1.9.1
49
+ - @backstage/errors@1.2.4
50
+ - @backstage/types@1.1.1
51
+ - @backstage/plugin-app-node@0.1.26-next.0
52
+ - @backstage/plugin-permission-common@0.8.1
53
+ - @backstage/plugin-search-common@1.2.14
9
54
 
10
55
  ## 0.4.0
11
56
 
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-dynamic-feature-service",
3
- "version": "0.4.1",
3
+ "version": "0.4.2-next.1",
4
4
  "description": "Backstage dynamic feature service",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -42,26 +42,26 @@
42
42
  "test": "backstage-cli package test"
43
43
  },
44
44
  "dependencies": {
45
- "@backstage/backend-app-api": "^1.0.0",
45
+ "@backstage/backend-app-api": "1.0.1-next.0",
46
46
  "@backstage/backend-common": "^0.25.0",
47
- "@backstage/backend-defaults": "^0.5.0",
48
- "@backstage/backend-plugin-api": "^1.0.0",
49
- "@backstage/cli-common": "^0.1.14",
50
- "@backstage/cli-node": "^0.2.8",
51
- "@backstage/config": "^1.2.0",
52
- "@backstage/config-loader": "^1.9.1",
53
- "@backstage/errors": "^1.2.4",
54
- "@backstage/plugin-app-node": "^0.1.25",
55
- "@backstage/plugin-auth-node": "^0.5.2",
56
- "@backstage/plugin-catalog-backend": "^1.26.1",
57
- "@backstage/plugin-events-backend": "^0.3.12",
58
- "@backstage/plugin-events-node": "^0.4.0",
59
- "@backstage/plugin-permission-common": "^0.8.1",
60
- "@backstage/plugin-permission-node": "^0.8.3",
61
- "@backstage/plugin-scaffolder-node": "^0.4.11",
62
- "@backstage/plugin-search-backend-node": "^1.3.2",
63
- "@backstage/plugin-search-common": "^1.2.14",
64
- "@backstage/types": "^1.1.1",
47
+ "@backstage/backend-defaults": "0.5.1-next.1",
48
+ "@backstage/backend-plugin-api": "1.0.1-next.0",
49
+ "@backstage/cli-common": "0.1.14",
50
+ "@backstage/cli-node": "0.2.8",
51
+ "@backstage/config": "1.2.0",
52
+ "@backstage/config-loader": "1.9.1",
53
+ "@backstage/errors": "1.2.4",
54
+ "@backstage/plugin-app-node": "0.1.26-next.0",
55
+ "@backstage/plugin-auth-node": "0.5.3-next.0",
56
+ "@backstage/plugin-catalog-backend": "1.26.2-next.1",
57
+ "@backstage/plugin-events-backend": "0.3.13-next.0",
58
+ "@backstage/plugin-events-node": "0.4.1-next.0",
59
+ "@backstage/plugin-permission-common": "0.8.1",
60
+ "@backstage/plugin-permission-node": "0.8.4-next.0",
61
+ "@backstage/plugin-scaffolder-node": "0.5.0-next.1",
62
+ "@backstage/plugin-search-backend-node": "1.3.3-next.1",
63
+ "@backstage/plugin-search-common": "1.2.14",
64
+ "@backstage/types": "1.1.1",
65
65
  "@manypkg/get-packages": "^1.1.3",
66
66
  "@types/express": "^4.17.6",
67
67
  "chokidar": "^3.5.3",
@@ -71,8 +71,8 @@
71
71
  "winston": "^3.2.1"
72
72
  },
73
73
  "devDependencies": {
74
- "@backstage/backend-test-utils": "^1.0.0",
75
- "@backstage/cli": "^0.27.1",
74
+ "@backstage/backend-test-utils": "1.0.1-next.1",
75
+ "@backstage/cli": "0.28.0-next.1",
76
76
  "wait-for-expect": "^3.0.2"
77
77
  }
78
78
  }