@backstage/backend-app-api 0.2.1-next.2 → 0.2.1

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.

Potentially problematic release.


This version of @backstage/backend-app-api might be problematic. Click here for more details.

package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2c57c0c499: Made `ApiRef.defaultFactory` internal.
8
+ - 854ba37357: Updated to support new `ServiceFactory` formats.
9
+ - af6bb42c68: Updated `ServiceRegistry` to not initialize factories more than once.
10
+ - 409ed984e8: Updated service implementations and backend wiring to support scoped service.
11
+ - de3347ca74: Updated usages of `ServiceFactory`.
12
+ - 1f384c5644: Improved error messaging when failing to instantiate services.
13
+ - Updated dependencies
14
+ - @backstage/backend-plugin-api@0.1.2
15
+ - @backstage/backend-common@0.15.1
16
+ - @backstage/plugin-permission-node@0.6.5
17
+ - @backstage/backend-tasks@0.3.5
18
+ - @backstage/errors@1.1.1
19
+
3
20
  ## 0.2.1-next.2
4
21
 
5
22
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "0.2.1-next.2",
3
+ "version": "0.2.1",
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-app-api",
3
3
  "description": "Core API used by Backstage backend apps",
4
- "version": "0.2.1-next.2",
4
+ "version": "0.2.1",
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-plugin-api": "^0.1.2-next.2",
38
- "@backstage/backend-tasks": "^0.3.5-next.1",
39
- "@backstage/errors": "^1.1.1-next.0",
40
- "@backstage/plugin-permission-node": "^0.6.5-next.3",
36
+ "@backstage/backend-common": "^0.15.1",
37
+ "@backstage/backend-plugin-api": "^0.1.2",
38
+ "@backstage/backend-tasks": "^0.3.5",
39
+ "@backstage/errors": "^1.1.1",
40
+ "@backstage/plugin-permission-node": "^0.6.5",
41
41
  "express": "^4.17.1",
42
42
  "express-promise-router": "^4.1.0",
43
43
  "winston": "^3.2.1"
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
  }