Merge branch 'master' of https://github.com/backstage/backstage into bazaar-workflow-changes

This commit is contained in:
Lykke Axlin
2021-12-13 16:01:44 +01:00
1181 changed files with 43445 additions and 7315 deletions
+39
View File
@@ -0,0 +1,39 @@
# @backstage/plugin-bazaar-backend
## 0.1.4
### Patch Changes
- 210fcf63ee: Handle migration error when old data is present in the database
- Updated dependencies
- @backstage/backend-common@0.9.13
## 0.1.3
### Patch Changes
- bab752e2b3: Change default port of backend from 7000 to 7007.
This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
```
backend:
listen: 0.0.0.0:7123
baseUrl: http://localhost:7123
```
More information can be found here: https://backstage.io/docs/conf/writing
- Updated dependencies
- @backstage/backend-common@0.9.11
## 0.1.2
### Patch Changes
- f6ba309d9e: A Bazaar project has been extended with the following fields: size, start date (optional), end date (optional) and a responsible person.
- Updated dependencies
- @backstage/backend-common@0.9.10
- @backstage/backend-test-utils@0.1.9
@@ -29,6 +29,7 @@ exports.up = async function up(knex) {
.comment('Optional end date of the project (ISO 8601 format)');
table
.text('responsible')
.defaultTo('')
.notNullable()
.comment('Contact person of the project');
});
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-bazaar-backend",
"version": "0.1.1",
"version": "0.1.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -20,8 +20,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.9.7",
"@backstage/backend-test-utils": "^0.1.8",
"@backstage/backend-common": "^0.9.13",
"@backstage/backend-test-utils": "^0.1.10",
"@backstage/config": "^0.1.5",
"@types/express": "^4.17.6",
"express": "^4.17.1",
@@ -31,7 +31,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.8.0"
"@backstage/cli": "^0.10.1"
},
"files": [
"dist",
+1 -1
View File
@@ -18,7 +18,7 @@ import { getRootLogger } from '@backstage/backend-common';
import yn from 'yn';
import { startStandaloneServer } from './service/standaloneServer';
const port = process.env.PLUGIN_PORT ? Number(process.env.PLUGIN_PORT) : 7000;
const port = process.env.PLUGIN_PORT ? Number(process.env.PLUGIN_PORT) : 7007;
const enableCors = yn(process.env.PLUGIN_CORS, { default: false });
const logger = getRootLogger();