Version Packages
This commit is contained in:
@@ -1,5 +1,35 @@
|
||||
# @backstage/plugin-app-backend
|
||||
|
||||
## 0.3.22
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- f685e1398f: Loading of app configurations now reference the `@deprecated` construct from
|
||||
JSDoc to determine if a property in-use has been deprecated. Users are notified
|
||||
of deprecated keys in the format:
|
||||
|
||||
```txt
|
||||
The configuration key 'catalog.processors.githubOrg' of app-config.yaml is deprecated and may be removed soon. Configure a GitHub integration instead.
|
||||
```
|
||||
|
||||
When the `withDeprecatedKeys` option is set to `true` in the `process` method
|
||||
of `loadConfigSchema`, the user will be notified that deprecated keys have been
|
||||
identified in their app configuration.
|
||||
|
||||
The `backend-common` and `plugin-app-backend` packages have been updated to set
|
||||
`withDeprecatedKeys` to true so that users are notified of deprecated settings
|
||||
by default.
|
||||
|
||||
- eb00e8af14: Updated the cache control headers for static assets to instruct clients to cache them for 14 days.
|
||||
- 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.
|
||||
|
||||
The asset cache is enabled by passing the `database` option to `createRouter`.
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.10.4
|
||||
- @backstage/config@0.1.13
|
||||
- @backstage/config-loader@0.9.3
|
||||
|
||||
## 0.3.22-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-app-backend",
|
||||
"description": "A Backstage backend plugin that serves the Backstage frontend app",
|
||||
"version": "0.3.22-next.0",
|
||||
"version": "0.3.22",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -30,9 +30,9 @@
|
||||
"clean": "backstage-cli clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.10.4-next.0",
|
||||
"@backstage/config-loader": "^0.9.3-next.0",
|
||||
"@backstage/config": "^0.1.13-next.0",
|
||||
"@backstage/backend-common": "^0.10.4",
|
||||
"@backstage/config-loader": "^0.9.3",
|
||||
"@backstage/config": "^0.1.13",
|
||||
"@backstage/types": "^0.1.1",
|
||||
"@types/express": "^4.17.6",
|
||||
"globby": "^11.0.0",
|
||||
@@ -47,8 +47,8 @@
|
||||
"yn": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.14-next.0",
|
||||
"@backstage/cli": "^0.12.0-next.0",
|
||||
"@backstage/backend-test-utils": "^0.1.14",
|
||||
"@backstage/cli": "^0.12.0",
|
||||
"@backstage/types": "^0.1.1",
|
||||
"@types/supertest": "^2.0.8",
|
||||
"mock-fs": "^5.1.0",
|
||||
|
||||
Reference in New Issue
Block a user