@backstage/plugin-app-backend 0.0.0-nightly-202201921950 → 0.0.0-nightly-20220210021913
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 +40 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,42 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220210021913
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
|
|
8
|
+
|
|
9
|
+
This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-common@0.0.0-nightly-20220210021913
|
|
13
|
+
|
|
14
|
+
## 0.3.24-next.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
|
|
19
|
+
|
|
20
|
+
This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/backend-common@0.10.7-next.0
|
|
24
|
+
|
|
25
|
+
## 0.3.23
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/backend-common@0.10.6
|
|
31
|
+
|
|
32
|
+
## 0.3.23-next.0
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- Updated dependencies
|
|
37
|
+
- @backstage/backend-common@0.10.6-next.0
|
|
38
|
+
|
|
39
|
+
## 0.3.22
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
6
42
|
|
|
@@ -26,9 +62,9 @@
|
|
|
26
62
|
The asset cache is enabled by passing the `database` option to `createRouter`.
|
|
27
63
|
|
|
28
64
|
- Updated dependencies
|
|
29
|
-
- @backstage/backend-common@0.
|
|
30
|
-
- @backstage/config@0.
|
|
31
|
-
- @backstage/config-loader@0.
|
|
65
|
+
- @backstage/backend-common@0.10.4
|
|
66
|
+
- @backstage/config@0.1.13
|
|
67
|
+
- @backstage/config-loader@0.9.3
|
|
32
68
|
|
|
33
69
|
## 0.3.22-next.0
|
|
34
70
|
|
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.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20220210021913",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"clean": "backstage-cli clean"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
34
|
-
"@backstage/config-loader": "^0.
|
|
35
|
-
"@backstage/config": "^0.
|
|
33
|
+
"@backstage/backend-common": "^0.0.0-nightly-20220210021913",
|
|
34
|
+
"@backstage/config-loader": "^0.9.3",
|
|
35
|
+
"@backstage/config": "^0.1.13",
|
|
36
36
|
"@backstage/types": "^0.1.1",
|
|
37
37
|
"@types/express": "^4.17.6",
|
|
38
38
|
"globby": "^11.0.0",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"express-promise-router": "^4.1.0",
|
|
41
41
|
"fs-extra": "9.1.0",
|
|
42
42
|
"helmet": "^4.0.0",
|
|
43
|
-
"knex": "^0.
|
|
43
|
+
"knex": "^1.0.2",
|
|
44
44
|
"lodash": "^4.17.21",
|
|
45
45
|
"luxon": "^2.0.2",
|
|
46
46
|
"winston": "^3.2.1",
|
|
47
47
|
"yn": "^4.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
51
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
50
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20220210021913",
|
|
51
|
+
"@backstage/cli": "^0.0.0-nightly-20220210021913",
|
|
52
52
|
"@backstage/types": "^0.1.1",
|
|
53
53
|
"@types/supertest": "^2.0.8",
|
|
54
54
|
"mock-fs": "^5.1.0",
|