@backstage/plugin-app-node 0.1.0-next.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @backstage/plugin-app-node
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.6.1
9
+
10
+ ## 0.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 9fbe95ef6503: Added the `app` plugin node library, initially providing an extension point that can be used to configure a static fallback handler.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @backstage/backend-plugin-api@0.6.0
20
+
3
21
  ## 0.1.0-next.0
4
22
 
5
23
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-node",
3
3
  "description": "Node.js library for the app plugin",
4
- "version": "0.1.0-next.0",
4
+ "version": "0.1.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -22,13 +22,13 @@
22
22
  "postpack": "backstage-cli package postpack"
23
23
  },
24
24
  "devDependencies": {
25
- "@backstage/cli": "^0.22.10-next.1"
25
+ "@backstage/cli": "^0.22.11"
26
26
  },
27
27
  "files": [
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@backstage/backend-plugin-api": "^0.6.0-next.2",
31
+ "@backstage/backend-plugin-api": "^0.6.1",
32
32
  "@types/express": "^4.17.6",
33
33
  "express": "^4.17.1"
34
34
  }