@backstage/backend-dynamic-feature-service 0.2.10-next.0 → 0.2.10-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 +31 -0
- package/README.md +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/backend-dynamic-feature-service
|
|
2
2
|
|
|
3
|
+
## 0.2.10-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b192752: Updated `README.md` to point to `packages/backend` instead of `packages/backend-next`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-backend@1.22.0-next.2
|
|
10
|
+
- @backstage/backend-common@0.22.0-next.2
|
|
11
|
+
- @backstage/plugin-scaffolder-node@0.4.4-next.2
|
|
12
|
+
- @backstage/plugin-events-node@0.3.4-next.2
|
|
13
|
+
|
|
14
|
+
## 0.2.10-next.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-app-api@0.7.2-next.1
|
|
20
|
+
- @backstage/backend-common@0.22.0-next.1
|
|
21
|
+
- @backstage/plugin-catalog-backend@1.22.0-next.1
|
|
22
|
+
- @backstage/plugin-scaffolder-node@0.4.4-next.1
|
|
23
|
+
- @backstage/backend-tasks@0.5.23-next.1
|
|
24
|
+
- @backstage/plugin-auth-node@0.4.13-next.1
|
|
25
|
+
- @backstage/plugin-events-backend@0.3.5-next.1
|
|
26
|
+
- @backstage/plugin-events-node@0.3.4-next.1
|
|
27
|
+
- @backstage/plugin-permission-node@0.7.29-next.1
|
|
28
|
+
- @backstage/plugin-search-backend-node@1.2.22-next.1
|
|
29
|
+
- @backstage/cli-node@0.2.5
|
|
30
|
+
- @backstage/config-loader@1.8.0
|
|
31
|
+
- @backstage/backend-plugin-api@0.6.18-next.1
|
|
32
|
+
- @backstage/plugin-app-node@0.1.18-next.1
|
|
33
|
+
|
|
3
34
|
## 0.2.10-next.0
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ In order to test the dynamic backend plugins feature provided by this package, e
|
|
|
10
10
|
|
|
11
11
|
The dynamic plugin manager is a service that scans a configured root directory (`dynamicPlugins.rootDirectory` in the app config) for dynamic plugin packages, and loads them dynamically.
|
|
12
12
|
|
|
13
|
-
In the `backend
|
|
13
|
+
In the `backend` application, it can be enabled by adding the `backend-dynamic-feature-service` as a dependency in the `package.json` and the following lines in the `src/index.ts` file:
|
|
14
14
|
|
|
15
15
|
```ts
|
|
16
16
|
const backend = createBackend();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-dynamic-feature-service",
|
|
3
3
|
"description": "Backstage dynamic feature service",
|
|
4
|
-
"version": "0.2.10-next.
|
|
4
|
+
"version": "0.2.10-next.2",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -38,24 +38,24 @@
|
|
|
38
38
|
"start": "backstage-cli package start"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-app-api": "^0.7.
|
|
42
|
-
"@backstage/backend-common": "^0.
|
|
43
|
-
"@backstage/backend-plugin-api": "^0.6.18-next.
|
|
44
|
-
"@backstage/backend-tasks": "^0.5.23-next.
|
|
41
|
+
"@backstage/backend-app-api": "^0.7.3-next.1",
|
|
42
|
+
"@backstage/backend-common": "^0.22.0-next.2",
|
|
43
|
+
"@backstage/backend-plugin-api": "^0.6.18-next.1",
|
|
44
|
+
"@backstage/backend-tasks": "^0.5.23-next.1",
|
|
45
45
|
"@backstage/cli-common": "^0.1.13",
|
|
46
46
|
"@backstage/cli-node": "^0.2.5",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
48
|
"@backstage/config-loader": "^1.8.0",
|
|
49
49
|
"@backstage/errors": "^1.2.4",
|
|
50
|
-
"@backstage/plugin-app-node": "^0.1.18-next.
|
|
51
|
-
"@backstage/plugin-auth-node": "^0.4.13-next.
|
|
52
|
-
"@backstage/plugin-catalog-backend": "^1.22.0-next.
|
|
53
|
-
"@backstage/plugin-events-backend": "^0.3.5-next.
|
|
54
|
-
"@backstage/plugin-events-node": "^0.3.4-next.
|
|
50
|
+
"@backstage/plugin-app-node": "^0.1.18-next.1",
|
|
51
|
+
"@backstage/plugin-auth-node": "^0.4.13-next.1",
|
|
52
|
+
"@backstage/plugin-catalog-backend": "^1.22.0-next.2",
|
|
53
|
+
"@backstage/plugin-events-backend": "^0.3.5-next.1",
|
|
54
|
+
"@backstage/plugin-events-node": "^0.3.4-next.2",
|
|
55
55
|
"@backstage/plugin-permission-common": "^0.7.13",
|
|
56
|
-
"@backstage/plugin-permission-node": "^0.7.29-next.
|
|
57
|
-
"@backstage/plugin-scaffolder-node": "^0.4.4-next.
|
|
58
|
-
"@backstage/plugin-search-backend-node": "^1.2.22-next.
|
|
56
|
+
"@backstage/plugin-permission-node": "^0.7.29-next.1",
|
|
57
|
+
"@backstage/plugin-scaffolder-node": "^0.4.4-next.2",
|
|
58
|
+
"@backstage/plugin-search-backend-node": "^1.2.22-next.1",
|
|
59
59
|
"@backstage/plugin-search-common": "^1.2.11",
|
|
60
60
|
"@backstage/types": "^1.1.1",
|
|
61
61
|
"@manypkg/get-packages": "^1.1.3",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"winston": "^3.2.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/backend-test-utils": "^0.3.8-next.
|
|
71
|
-
"@backstage/cli": "^0.26.5-next.
|
|
70
|
+
"@backstage/backend-test-utils": "^0.3.8-next.2",
|
|
71
|
+
"@backstage/cli": "^0.26.5-next.1",
|
|
72
72
|
"wait-for-expect": "^3.0.2"
|
|
73
73
|
},
|
|
74
74
|
"files": [
|