@backstage/plugin-app-node 0.1.24 → 0.1.25-next.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 +11 -2
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,11 +1,20 @@
1
1
  # @backstage/plugin-app-node
2
2
 
3
- ## 0.1.24
3
+ ## 0.1.25-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-plugin-api@0.8.1
8
+ - @backstage/backend-plugin-api@0.9.0-next.1
9
+ - @backstage/config-loader@1.9.0
10
+
11
+ ## 0.1.25-next.0
12
+
13
+ ### Patch Changes
14
+
15
+ - d3f79d1: Fixing dependency metadata with the new `@backstage/plugin-app` package
16
+ - Updated dependencies
17
+ - @backstage/backend-plugin-api@0.9.0-next.0
9
18
  - @backstage/config-loader@1.9.0
10
19
 
11
20
  ## 0.1.23
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-node",
3
- "version": "0.1.24",
3
+ "version": "0.1.25-next.1",
4
4
  "description": "Node.js library for the app plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
7
7
  "pluginId": "app",
8
8
  "pluginPackages": [
9
+ "@backstage/plugin-app",
9
10
  "@backstage/plugin-app-backend",
10
11
  "@backstage/plugin-app-node"
11
12
  ]
@@ -35,13 +36,13 @@
35
36
  "test": "backstage-cli package test"
36
37
  },
37
38
  "dependencies": {
38
- "@backstage/backend-plugin-api": "^0.8.1",
39
+ "@backstage/backend-plugin-api": "^0.9.0-next.1",
39
40
  "@backstage/config-loader": "^1.9.0",
40
41
  "@types/express": "^4.17.6",
41
42
  "express": "^4.17.1",
42
43
  "fs-extra": "^11.2.0"
43
44
  },
44
45
  "devDependencies": {
45
- "@backstage/cli": "^0.27.0"
46
+ "@backstage/cli": "^0.27.1-next.1"
46
47
  }
47
48
  }