@backstage/plugin-app-backend 0.3.22-next.0 → 0.3.24-next.0
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 +55 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.24-next.0
|
|
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.10.7-next.0
|
|
13
|
+
|
|
14
|
+
## 0.3.23
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-common@0.10.6
|
|
20
|
+
|
|
21
|
+
## 0.3.23-next.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/backend-common@0.10.6-next.0
|
|
27
|
+
|
|
28
|
+
## 0.3.22
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- f685e1398f: Loading of app configurations now reference the `@deprecated` construct from
|
|
33
|
+
JSDoc to determine if a property in-use has been deprecated. Users are notified
|
|
34
|
+
of deprecated keys in the format:
|
|
35
|
+
|
|
36
|
+
```txt
|
|
37
|
+
The configuration key 'catalog.processors.githubOrg' of app-config.yaml is deprecated and may be removed soon. Configure a GitHub integration instead.
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
When the `withDeprecatedKeys` option is set to `true` in the `process` method
|
|
41
|
+
of `loadConfigSchema`, the user will be notified that deprecated keys have been
|
|
42
|
+
identified in their app configuration.
|
|
43
|
+
|
|
44
|
+
The `backend-common` and `plugin-app-backend` packages have been updated to set
|
|
45
|
+
`withDeprecatedKeys` to true so that users are notified of deprecated settings
|
|
46
|
+
by default.
|
|
47
|
+
|
|
48
|
+
- eb00e8af14: Updated the cache control headers for static assets to instruct clients to cache them for 14 days.
|
|
49
|
+
- eb00e8af14: Added a new asset cache that stores static assets from previous deployments in the database. This fixes an issue where users have old browser tabs open and try to lazy-load static assets that no longer exist in the latest version.
|
|
50
|
+
|
|
51
|
+
The asset cache is enabled by passing the `database` option to `createRouter`.
|
|
52
|
+
|
|
53
|
+
- Updated dependencies
|
|
54
|
+
- @backstage/backend-common@0.10.4
|
|
55
|
+
- @backstage/config@0.1.13
|
|
56
|
+
- @backstage/config-loader@0.9.3
|
|
57
|
+
|
|
3
58
|
## 0.3.22-next.0
|
|
4
59
|
|
|
5
60
|
### 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.
|
|
4
|
+
"version": "0.3.24-next.0",
|
|
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.10.
|
|
34
|
-
"@backstage/config": "^0.1.13
|
|
35
|
-
"@backstage/config-loader": "^0.9.3
|
|
33
|
+
"@backstage/backend-common": "^0.10.7-next.0",
|
|
34
|
+
"@backstage/config": "^0.1.13",
|
|
35
|
+
"@backstage/config-loader": "^0.9.3",
|
|
36
36
|
"@backstage/types": "^0.1.1",
|
|
37
37
|
"@types/express": "^4.17.6",
|
|
38
38
|
"express": "^4.17.1",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"fs-extra": "9.1.0",
|
|
41
41
|
"globby": "^11.0.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.1.
|
|
51
|
-
"@backstage/cli": "^0.
|
|
50
|
+
"@backstage/backend-test-utils": "^0.1.17-next.0",
|
|
51
|
+
"@backstage/cli": "^0.13.2-next.0",
|
|
52
52
|
"@backstage/types": "^0.1.1",
|
|
53
53
|
"@types/supertest": "^2.0.8",
|
|
54
54
|
"mock-fs": "^5.1.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"migrations/**/*.{js,d.ts}",
|
|
61
61
|
"static"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "e6f167225d843beeb974c287c3364d951b587626"
|
|
64
64
|
}
|