@backstage/backend-plugin-api 0.1.2-next.2 → 0.1.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/backend-plugin-api
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 2c57c0c499: Made `ApiRef.defaultFactory` internal.
8
+ - 91eed37a39: Updated `createBackendPlugin` and `createBackendModule` to properly forward lack of options.
9
+ - 409ed984e8: Service are now scoped to either `'plugin'` or `'root'` scope. Service factories have been updated to provide dependency instances directly rather than factory functions.
10
+ - eef91a2558: Simplified the `ServiceFactory` type and removed `AnyServiceFactory`.
11
+ - 854ba37357: The `createServiceFactory` method has been updated to return a higher-order factory that can accept options.
12
+ - 68513f169a: When defining a new `ServiceRef` you can now also include a `defaultFactory`, which will be used to construct instances of the service in case there is no explicit factory defined.
13
+ - Updated dependencies
14
+ - @backstage/backend-common@0.15.1
15
+ - @backstage/backend-tasks@0.3.5
16
+ - @backstage/config@1.0.2
17
+ - @backstage/plugin-permission-common@0.6.4
18
+
3
19
  ## 0.1.2-next.2
4
20
 
5
21
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-plugin-api",
3
- "version": "0.1.2-next.2",
3
+ "version": "0.1.2",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/backend-plugin-api",
3
3
  "description": "Core API used by Backstage backend plugins",
4
- "version": "0.1.2-next.2",
4
+ "version": "0.1.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "publishConfig": {
@@ -33,21 +33,21 @@
33
33
  "start": "backstage-cli package start"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-common": "^0.15.1-next.3",
37
- "@backstage/backend-tasks": "^0.3.5-next.1",
38
- "@backstage/config": "^1.0.2-next.0",
39
- "@backstage/plugin-permission-common": "^0.6.4-next.2",
36
+ "@backstage/backend-common": "^0.15.1",
37
+ "@backstage/backend-tasks": "^0.3.5",
38
+ "@backstage/config": "^1.0.2",
39
+ "@backstage/plugin-permission-common": "^0.6.4",
40
40
  "@types/express": "^4.17.6",
41
41
  "express": "^4.17.1",
42
42
  "winston": "^3.2.1",
43
43
  "winston-transport": "^4.5.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.19.0-next.3"
46
+ "@backstage/cli": "^0.19.0"
47
47
  },
48
48
  "files": [
49
49
  "dist",
50
50
  "alpha"
51
51
  ],
52
- "gitHead": "2f458448f850dc68a711e2f31d14a91f96cf175d"
52
+ "gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406"
53
53
  }