@backstage/backend-plugin-api 1.1.1-next.1 → 1.2.0-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,35 @@
1
1
  # @backstage/backend-plugin-api
2
2
 
3
+ ## 1.2.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a4aa244: This change introduces the `auditor` service definition.
8
+
9
+ ### Patch Changes
10
+
11
+ - 9ddfd94: Added new `PermissionsRegistryService` that is used by plugins to register permissions, resource types, and rules into the permission system. This replaces the existing `createPermissionIntegrationRouter` from `@backstage/plugin-permission-node`.
12
+ - Updated dependencies
13
+ - @backstage/plugin-permission-node@0.8.8-next.0
14
+ - @backstage/cli-common@0.1.15
15
+ - @backstage/config@1.3.2
16
+ - @backstage/errors@1.2.7
17
+ - @backstage/types@1.2.1
18
+ - @backstage/plugin-auth-node@0.5.7-next.0
19
+ - @backstage/plugin-permission-common@0.8.4
20
+
21
+ ## 1.1.1
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @backstage/types@1.2.1
27
+ - @backstage/plugin-auth-node@0.5.6
28
+ - @backstage/cli-common@0.1.15
29
+ - @backstage/config@1.3.2
30
+ - @backstage/errors@1.2.7
31
+ - @backstage/plugin-permission-common@0.8.4
32
+
3
33
  ## 1.1.1-next.1
4
34
 
5
35
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var coreServices = require('./services/definitions/coreServices.cjs.js');
4
3
  var SchedulerService = require('./services/definitions/SchedulerService.cjs.js');
4
+ var coreServices = require('./services/definitions/coreServices.cjs.js');
5
5
  var types = require('./services/system/types.cjs.js');
6
6
  var database = require('./services/utilities/database.cjs.js');
7
7
  var paths = require('./paths.cjs.js');
@@ -13,11 +13,11 @@ var cliCommon = require('@backstage/cli-common');
13
13
 
14
14
 
15
15
 
16
+ exports.readSchedulerServiceTaskScheduleDefinitionFromConfig = SchedulerService.readSchedulerServiceTaskScheduleDefinitionFromConfig;
16
17
  Object.defineProperty(exports, "coreServices", {
17
18
  enumerable: true,
18
19
  get: function () { return coreServices.coreServices; }
19
20
  });
20
- exports.readSchedulerServiceTaskScheduleDefinitionFromConfig = SchedulerService.readSchedulerServiceTaskScheduleDefinitionFromConfig;
21
21
  exports.createServiceFactory = types.createServiceFactory;
22
22
  exports.createServiceRef = types.createServiceRef;
23
23
  exports.isDatabaseConflictError = database.isDatabaseConflictError;