@backstage/plugin-app-backend 0.3.23 → 0.3.26

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 +45 -0
  2. package/package.json +21 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,50 @@
1
1
  # @backstage/plugin-app-backend
2
2
 
3
+ ## 0.3.26
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix for the previous release with missing type declarations.
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.10.9
10
+ - @backstage/config@0.1.15
11
+ - @backstage/config-loader@0.9.5
12
+ - @backstage/types@0.1.3
13
+
14
+ ## 0.3.25
15
+
16
+ ### Patch Changes
17
+
18
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
19
+ - 0107c9aa08: chore(deps): bump `helmet` from 4.4.1 to 5.0.2
20
+ - Updated dependencies
21
+ - @backstage/backend-common@0.10.8
22
+ - @backstage/config-loader@0.9.4
23
+ - @backstage/config@0.1.14
24
+ - @backstage/types@0.1.2
25
+
26
+ ## 0.3.24
27
+
28
+ ### Patch Changes
29
+
30
+ - 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
31
+
32
+ This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
33
+
34
+ - Updated dependencies
35
+ - @backstage/backend-common@0.10.7
36
+
37
+ ## 0.3.24-next.0
38
+
39
+ ### Patch Changes
40
+
41
+ - 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
42
+
43
+ This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
44
+
45
+ - Updated dependencies
46
+ - @backstage/backend-common@0.10.7-next.0
47
+
3
48
  ## 0.3.23
4
49
 
5
50
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-backend",
3
3
  "description": "A Backstage backend plugin that serves the Backstage frontend app",
4
- "version": "0.3.23",
4
+ "version": "0.3.26",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -11,6 +11,9 @@
11
11
  "main": "dist/index.cjs.js",
12
12
  "types": "dist/index.d.ts"
13
13
  },
14
+ "backstage": {
15
+ "role": "backend-plugin"
16
+ },
14
17
  "homepage": "https://backstage.io",
15
18
  "repository": {
16
19
  "type": "git",
@@ -21,35 +24,35 @@
21
24
  "backstage"
22
25
  ],
23
26
  "scripts": {
24
- "start": "backstage-cli backend:dev",
25
- "build": "backstage-cli backend:build",
26
- "lint": "backstage-cli lint",
27
- "test": "backstage-cli test",
28
- "prepack": "backstage-cli prepack",
29
- "postpack": "backstage-cli postpack",
30
- "clean": "backstage-cli clean"
27
+ "start": "backstage-cli package start",
28
+ "build": "backstage-cli package build",
29
+ "lint": "backstage-cli package lint",
30
+ "test": "backstage-cli package test",
31
+ "prepack": "backstage-cli package prepack",
32
+ "postpack": "backstage-cli package postpack",
33
+ "clean": "backstage-cli package clean"
31
34
  },
32
35
  "dependencies": {
33
- "@backstage/backend-common": "^0.10.6",
34
- "@backstage/config": "^0.1.13",
35
- "@backstage/config-loader": "^0.9.3",
36
- "@backstage/types": "^0.1.1",
36
+ "@backstage/backend-common": "^0.10.9",
37
+ "@backstage/config": "^0.1.15",
38
+ "@backstage/config-loader": "^0.9.5",
39
+ "@backstage/types": "^0.1.3",
37
40
  "@types/express": "^4.17.6",
38
41
  "express": "^4.17.1",
39
42
  "express-promise-router": "^4.1.0",
40
43
  "fs-extra": "9.1.0",
41
44
  "globby": "^11.0.0",
42
- "helmet": "^4.0.0",
43
- "knex": "^0.95.1",
45
+ "helmet": "^5.0.2",
46
+ "knex": "^1.0.2",
44
47
  "lodash": "^4.17.21",
45
48
  "luxon": "^2.0.2",
46
49
  "winston": "^3.2.1",
47
50
  "yn": "^4.0.0"
48
51
  },
49
52
  "devDependencies": {
50
- "@backstage/backend-test-utils": "^0.1.16",
51
- "@backstage/cli": "^0.13.1",
52
- "@backstage/types": "^0.1.1",
53
+ "@backstage/backend-test-utils": "^0.1.18",
54
+ "@backstage/cli": "^0.14.0",
55
+ "@backstage/types": "^0.1.3",
53
56
  "@types/supertest": "^2.0.8",
54
57
  "mock-fs": "^5.1.0",
55
58
  "msw": "^0.35.0",
@@ -60,5 +63,5 @@
60
63
  "migrations/**/*.{js,d.ts}",
61
64
  "static"
62
65
  ],
63
- "gitHead": "f944a625c4a8ec7f6a6237502691da9209ce6b14"
66
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
64
67
  }