@backstage/backend-dynamic-feature-service 0.2.15-next.1 → 0.2.16-next.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,58 @@
1
1
  # @backstage/backend-dynamic-feature-service
2
2
 
3
+ ## 0.2.16-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.23.4-next.0
9
+ - @backstage/plugin-catalog-backend@1.24.1-next.0
10
+ - @backstage/config-loader@1.8.2-next.0
11
+ - @backstage/backend-app-api@0.8.1-next.0
12
+ - @backstage/backend-plugin-api@0.7.1-next.0
13
+ - @backstage/backend-tasks@0.5.28-next.0
14
+ - @backstage/cli-common@0.1.14
15
+ - @backstage/cli-node@0.2.7
16
+ - @backstage/config@1.2.0
17
+ - @backstage/errors@1.2.4
18
+ - @backstage/types@1.1.1
19
+ - @backstage/plugin-app-node@0.1.23-next.0
20
+ - @backstage/plugin-auth-node@0.4.18-next.0
21
+ - @backstage/plugin-events-backend@0.3.10-next.0
22
+ - @backstage/plugin-events-node@0.3.9-next.0
23
+ - @backstage/plugin-permission-common@0.8.0
24
+ - @backstage/plugin-permission-node@0.8.1-next.0
25
+ - @backstage/plugin-scaffolder-node@0.4.9-next.0
26
+ - @backstage/plugin-search-backend-node@1.2.28-next.0
27
+ - @backstage/plugin-search-common@1.2.13
28
+
29
+ ## 0.2.15
30
+
31
+ ### Patch Changes
32
+
33
+ - b05e1e1: Service factories exported by this package have been updated to use the new service factory format that doesn't use a callback.
34
+ - Updated dependencies
35
+ - @backstage/backend-plugin-api@0.7.0
36
+ - @backstage/backend-app-api@0.8.0
37
+ - @backstage/backend-common@0.23.3
38
+ - @backstage/cli-node@0.2.7
39
+ - @backstage/backend-tasks@0.5.27
40
+ - @backstage/plugin-permission-common@0.8.0
41
+ - @backstage/plugin-permission-node@0.8.0
42
+ - @backstage/plugin-scaffolder-node@0.4.8
43
+ - @backstage/plugin-events-node@0.3.8
44
+ - @backstage/plugin-auth-node@0.4.17
45
+ - @backstage/plugin-catalog-backend@1.24.0
46
+ - @backstage/plugin-app-node@0.1.22
47
+ - @backstage/plugin-events-backend@0.3.9
48
+ - @backstage/plugin-search-backend-node@1.2.27
49
+ - @backstage/config-loader@1.8.1
50
+ - @backstage/plugin-search-common@1.2.13
51
+ - @backstage/cli-common@0.1.14
52
+ - @backstage/config@1.2.0
53
+ - @backstage/errors@1.2.4
54
+ - @backstage/types@1.1.1
55
+
3
56
  ## 0.2.15-next.1
4
57
 
5
58
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -194,11 +194,11 @@ interface DynamicPluginsFactoryOptions {
194
194
  /**
195
195
  * @public
196
196
  */
197
- declare const dynamicPluginsServiceFactory: (options?: DynamicPluginsFactoryOptions | undefined) => _backstage_backend_plugin_api.ServiceFactory<DynamicPluginProvider, "root">;
197
+ declare const dynamicPluginsServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<DynamicPluginProvider, "root", DynamicPluginsFactoryOptions>;
198
198
  /**
199
199
  * @public
200
200
  */
201
- declare const dynamicPluginsFeatureDiscoveryServiceFactory: () => _backstage_backend_plugin_api.ServiceFactory<FeatureDiscoveryService, "root">;
201
+ declare const dynamicPluginsFeatureDiscoveryServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<FeatureDiscoveryService, "root", undefined>;
202
202
 
203
203
  /**
204
204
  *
@@ -227,12 +227,12 @@ interface DynamicPluginsSchemasOptions {
227
227
  /**
228
228
  * @public
229
229
  */
230
- declare const dynamicPluginsSchemasServiceFactory: (options?: DynamicPluginsSchemasOptions | undefined) => _backstage_backend_plugin_api.ServiceFactory<DynamicPluginsSchemasService, "root">;
230
+ declare const dynamicPluginsSchemasServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<DynamicPluginsSchemasService, "root", DynamicPluginsSchemasOptions>;
231
231
 
232
232
  /** @public */
233
233
  declare const dynamicPluginsFrontendSchemas: _backstage_backend_plugin_api.BackendFeatureCompat;
234
234
 
235
235
  /** @public */
236
- declare const dynamicPluginsRootLoggerServiceFactory: () => _backstage_backend_plugin_api.ServiceFactory<_backstage_backend_plugin_api.RootLoggerService, "root">;
236
+ declare const dynamicPluginsRootLoggerServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<_backstage_backend_plugin_api.RootLoggerService, "root", undefined>;
237
237
 
238
238
  export { type BackendDynamicPlugin, type BackendDynamicPluginInstaller, type BackendPluginProvider, type BaseDynamicPlugin, type DynamicPlugin, DynamicPluginManager, type DynamicPluginManagerOptions, type DynamicPluginProvider, type DynamicPluginsFactoryOptions, type DynamicPluginsSchemasOptions, type DynamicPluginsSchemasService, type FrontendDynamicPlugin, type FrontendPluginProvider, type LegacyBackendPluginInstaller, type LegacyPluginEnvironment, type ModuleLoader, type NewBackendPluginInstaller, type ScannedPluginManifest, type ScannedPluginPackage, dynamicPluginsFeatureDiscoveryServiceFactory, dynamicPluginsFrontendSchemas, dynamicPluginsRootLoggerServiceFactory, dynamicPluginsSchemasServiceFactory, dynamicPluginsServiceFactory, dynamicPluginsServiceRef, isBackendDynamicPluginInstaller };
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.15-next.1",
4
+ "version": "0.2.16-next.0",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "publishConfig": {
@@ -38,25 +38,25 @@
38
38
  "start": "backstage-cli package start"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-app-api": "^0.7.10-next.1",
42
- "@backstage/backend-common": "^0.23.3-next.1",
43
- "@backstage/backend-plugin-api": "^0.6.22-next.1",
44
- "@backstage/backend-tasks": "^0.5.27-next.1",
41
+ "@backstage/backend-app-api": "^0.8.1-next.0",
42
+ "@backstage/backend-common": "^0.23.4-next.0",
43
+ "@backstage/backend-plugin-api": "^0.7.1-next.0",
44
+ "@backstage/backend-tasks": "^0.5.28-next.0",
45
45
  "@backstage/cli-common": "^0.1.14",
46
- "@backstage/cli-node": "^0.2.6",
46
+ "@backstage/cli-node": "^0.2.7",
47
47
  "@backstage/config": "^1.2.0",
48
- "@backstage/config-loader": "^1.8.1",
48
+ "@backstage/config-loader": "^1.8.2-next.0",
49
49
  "@backstage/errors": "^1.2.4",
50
- "@backstage/plugin-app-node": "^0.1.22-next.1",
51
- "@backstage/plugin-auth-node": "^0.4.17-next.1",
52
- "@backstage/plugin-catalog-backend": "^1.24.0-next.1",
53
- "@backstage/plugin-events-backend": "^0.3.9-next.1",
54
- "@backstage/plugin-events-node": "^0.3.8-next.1",
55
- "@backstage/plugin-permission-common": "^0.7.14",
56
- "@backstage/plugin-permission-node": "^0.7.33-next.1",
57
- "@backstage/plugin-scaffolder-node": "^0.4.8-next.1",
58
- "@backstage/plugin-search-backend-node": "^1.2.27-next.1",
59
- "@backstage/plugin-search-common": "^1.2.12",
50
+ "@backstage/plugin-app-node": "^0.1.23-next.0",
51
+ "@backstage/plugin-auth-node": "^0.4.18-next.0",
52
+ "@backstage/plugin-catalog-backend": "^1.24.1-next.0",
53
+ "@backstage/plugin-events-backend": "^0.3.10-next.0",
54
+ "@backstage/plugin-events-node": "^0.3.9-next.0",
55
+ "@backstage/plugin-permission-common": "^0.8.0",
56
+ "@backstage/plugin-permission-node": "^0.8.1-next.0",
57
+ "@backstage/plugin-scaffolder-node": "^0.4.9-next.0",
58
+ "@backstage/plugin-search-backend-node": "^1.2.28-next.0",
59
+ "@backstage/plugin-search-common": "^1.2.13",
60
60
  "@backstage/types": "^1.1.1",
61
61
  "@manypkg/get-packages": "^1.1.3",
62
62
  "@types/express": "^4.17.6",
@@ -67,8 +67,8 @@
67
67
  "winston": "^3.2.1"
68
68
  },
69
69
  "devDependencies": {
70
- "@backstage/backend-test-utils": "^0.4.4-next.1",
71
- "@backstage/cli": "^0.26.11-next.1",
70
+ "@backstage/backend-test-utils": "^0.4.5-next.0",
71
+ "@backstage/cli": "^0.27.0-next.0",
72
72
  "wait-for-expect": "^3.0.2"
73
73
  },
74
74
  "files": [