@backstage/backend-defaults 0.1.7-next.2 → 0.1.7

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,15 @@
1
1
  # @backstage/backend-defaults
2
2
 
3
+ ## 0.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 725383f69d: Tweaked messaging in the README.
8
+ - e412d33025: Use the new `*ServiceFactory` exports from `@backstage/backend-app-api`
9
+ - Updated dependencies
10
+ - @backstage/backend-app-api@0.4.0
11
+ - @backstage/backend-plugin-api@0.4.0
12
+
3
13
  ## 0.1.7-next.2
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @backstage/backend-defaults
2
2
 
3
- **This package is HIGHLY EXPERIMENTAL, do not use this for production**
3
+ **This package is EXPERIMENTAL, we recommend against using it for production deployments**
4
4
 
5
- This package provides the core API used by Backstage backend apps.
5
+ This package provides the default implementations and setup for a standard Backstage backend app.
6
6
 
7
7
  ## Installation
8
8
 
@@ -17,3 +17,4 @@ yarn add --cwd packages/backend @backstage/backend-defaults
17
17
 
18
18
  - [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
19
19
  - [Backstage Documentation](https://github.com/backstage/backstage/blob/master/docs/README.md)
20
+ - [Backstage Backend System](https://backstage.io/docs/backend-system/)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/backend-defaults",
3
3
  "description": "Backend defaults used by Backstage backend apps",
4
- "version": "0.1.7-next.2",
4
+ "version": "0.1.7",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "publishConfig": {
@@ -32,12 +32,12 @@
32
32
  "start": "backstage-cli package start"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/backend-app-api": "^0.4.0-next.2",
36
- "@backstage/backend-plugin-api": "^0.4.0-next.2"
35
+ "@backstage/backend-app-api": "^0.4.0",
36
+ "@backstage/backend-plugin-api": "^0.4.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@backstage/backend-test-utils": "^0.1.34-next.2",
40
- "@backstage/cli": "^0.22.2-next.1"
39
+ "@backstage/backend-test-utils": "^0.1.34",
40
+ "@backstage/cli": "^0.22.2"
41
41
  },
42
42
  "files": [
43
43
  "dist"