@backstage/plugin-app-node 0.0.0-nightly-20240214021031 → 0.0.0-nightly-20240216021020

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 +5 -3
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,14 +1,16 @@
1
1
  # @backstage/plugin-app-node
2
2
 
3
- ## 0.0.0-nightly-20240214021031
3
+ ## 0.0.0-nightly-20240216021020
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - 8472188: Added or fixed the `repository` field in `package.json`.
8
+ - 6bb6f3e: Updated dependency `fs-extra` to `^11.2.0`.
9
+ Updated dependency `@types/fs-extra` to `^11.0.0`.
8
10
  - 54ad8e1: Allow the `app-backend` plugin to use a global configuration schema provided externally through an extension.
9
11
  - Updated dependencies
10
- - @backstage/backend-plugin-api@0.0.0-nightly-20240214021031
11
- - @backstage/config-loader@0.0.0-nightly-20240214021031
12
+ - @backstage/backend-plugin-api@0.0.0-nightly-20240216021020
13
+ - @backstage/config-loader@0.0.0-nightly-20240216021020
12
14
 
13
15
  ## 0.1.10-next.3
14
16
 
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.0.0-nightly-20240214021031",
4
+ "version": "0.0.0-nightly-20240216021020",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -27,16 +27,16 @@
27
27
  "postpack": "backstage-cli package postpack"
28
28
  },
29
29
  "devDependencies": {
30
- "@backstage/cli": "^0.0.0-nightly-20240214021031"
30
+ "@backstage/cli": "^0.0.0-nightly-20240216021020"
31
31
  },
32
32
  "files": [
33
33
  "dist"
34
34
  ],
35
35
  "dependencies": {
36
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240214021031",
37
- "@backstage/config-loader": "^0.0.0-nightly-20240214021031",
36
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20240216021020",
37
+ "@backstage/config-loader": "^0.0.0-nightly-20240216021020",
38
38
  "@types/express": "^4.17.6",
39
39
  "express": "^4.17.1",
40
- "fs-extra": "10.1.0"
40
+ "fs-extra": "^11.2.0"
41
41
  }
42
42
  }