@backstage/backend-dynamic-feature-service 0.0.0-nightly-20240506021511 → 0.0.0-nightly-20240507021634

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 +14 -13
  2. package/README.md +1 -1
  3. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,23 +1,24 @@
1
1
  # @backstage/backend-dynamic-feature-service
2
2
 
3
- ## 0.0.0-nightly-20240506021511
3
+ ## 0.0.0-nightly-20240507021634
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - b192752: Updated `README.md` to point to `packages/backend` instead of `packages/backend-next`.
7
8
  - b611fd0: Updates the `scanRoot` method in the `PluginScanner` class to specifically ignore the `lost+found` directory, which is a system-generated directory used for file recovery on Unix-like systems. Skipping this directory avoids unnecessary errors.
8
9
  - Updated dependencies
9
- - @backstage/plugin-catalog-backend@0.0.0-nightly-20240506021511
10
- - @backstage/backend-app-api@0.0.0-nightly-20240506021511
11
- - @backstage/backend-common@0.0.0-nightly-20240506021511
12
- - @backstage/plugin-search-backend-node@0.0.0-nightly-20240506021511
13
- - @backstage/plugin-auth-node@0.0.0-nightly-20240506021511
14
- - @backstage/backend-plugin-api@0.0.0-nightly-20240506021511
15
- - @backstage/backend-tasks@0.0.0-nightly-20240506021511
16
- - @backstage/plugin-app-node@0.0.0-nightly-20240506021511
17
- - @backstage/plugin-events-backend@0.0.0-nightly-20240506021511
18
- - @backstage/plugin-events-node@0.0.0-nightly-20240506021511
19
- - @backstage/plugin-permission-node@0.0.0-nightly-20240506021511
20
- - @backstage/plugin-scaffolder-node@0.0.0-nightly-20240506021511
10
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-20240507021634
11
+ - @backstage/backend-app-api@0.0.0-nightly-20240507021634
12
+ - @backstage/backend-common@0.0.0-nightly-20240507021634
13
+ - @backstage/plugin-search-backend-node@0.0.0-nightly-20240507021634
14
+ - @backstage/plugin-auth-node@0.0.0-nightly-20240507021634
15
+ - @backstage/backend-plugin-api@0.0.0-nightly-20240507021634
16
+ - @backstage/backend-tasks@0.0.0-nightly-20240507021634
17
+ - @backstage/plugin-app-node@0.0.0-nightly-20240507021634
18
+ - @backstage/plugin-events-backend@0.0.0-nightly-20240507021634
19
+ - @backstage/plugin-events-node@0.0.0-nightly-20240507021634
20
+ - @backstage/plugin-permission-node@0.0.0-nightly-20240507021634
21
+ - @backstage/plugin-scaffolder-node@0.0.0-nightly-20240507021634
21
22
 
22
23
  ## 0.2.10-next.1
23
24
 
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-next` 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:
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.0.0-nightly-20240506021511",
4
+ "version": "0.0.0-nightly-20240507021634",
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.0.0-nightly-20240506021511",
42
- "@backstage/backend-common": "^0.0.0-nightly-20240506021511",
43
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240506021511",
44
- "@backstage/backend-tasks": "^0.0.0-nightly-20240506021511",
41
+ "@backstage/backend-app-api": "^0.0.0-nightly-20240507021634",
42
+ "@backstage/backend-common": "^0.0.0-nightly-20240507021634",
43
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20240507021634",
44
+ "@backstage/backend-tasks": "^0.0.0-nightly-20240507021634",
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.0.0-nightly-20240506021511",
51
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20240506021511",
52
- "@backstage/plugin-catalog-backend": "^0.0.0-nightly-20240506021511",
53
- "@backstage/plugin-events-backend": "^0.0.0-nightly-20240506021511",
54
- "@backstage/plugin-events-node": "^0.0.0-nightly-20240506021511",
50
+ "@backstage/plugin-app-node": "^0.0.0-nightly-20240507021634",
51
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20240507021634",
52
+ "@backstage/plugin-catalog-backend": "^0.0.0-nightly-20240507021634",
53
+ "@backstage/plugin-events-backend": "^0.0.0-nightly-20240507021634",
54
+ "@backstage/plugin-events-node": "^0.0.0-nightly-20240507021634",
55
55
  "@backstage/plugin-permission-common": "^0.7.13",
56
- "@backstage/plugin-permission-node": "^0.0.0-nightly-20240506021511",
57
- "@backstage/plugin-scaffolder-node": "^0.0.0-nightly-20240506021511",
58
- "@backstage/plugin-search-backend-node": "^0.0.0-nightly-20240506021511",
56
+ "@backstage/plugin-permission-node": "^0.0.0-nightly-20240507021634",
57
+ "@backstage/plugin-scaffolder-node": "^0.0.0-nightly-20240507021634",
58
+ "@backstage/plugin-search-backend-node": "^0.0.0-nightly-20240507021634",
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.0.0-nightly-20240506021511",
71
- "@backstage/cli": "^0.0.0-nightly-20240506021511",
70
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20240507021634",
71
+ "@backstage/cli": "^0.0.0-nightly-20240507021634",
72
72
  "wait-for-expect": "^3.0.2"
73
73
  },
74
74
  "files": [