Version Packages

This commit is contained in:
github-actions[bot]
2020-12-22 12:14:20 +00:00
parent e20aeead4e
commit c3c04658f2
69 changed files with 426 additions and 258 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'example-backend': patch
---
use node 14 for backend Dockerfile
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-api': patch
---
Fix for GitHub and SAML auth not properly updating session state when already logged in.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/cli': patch
'@backstage/plugin-github-actions': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/plugin-scaffolder': patch
---
Added Github Actions for Create React App, and allow better imports of files inside a module when they're exposed using `files` in `package.json`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
GitLab preparer uses the right token (primarily the same one as the publisher, falling back to the integrations token)
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': minor
---
Add search plugin to default template for CLI created apps
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/core': patch
'@backstage/test-utils': patch
'@backstage/plugin-graphiql': patch
---
Update to use new plugin extension API
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/core': patch
'@backstage/plugin-catalog': patch
'@backstage/plugin-pagerduty': patch
---
Create AboutCard in core and use it in pagerduty and catalog plugin
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Start warning about usage of deprecated location types, such as `github`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-api': patch
---
Introduce new plugin extension API
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Added configuration schema for the commonly used properties
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Updated the config schema
-40
View File
@@ -1,40 +0,0 @@
---
'@backstage/create-app': patch
'@backstage/techdocs-common': minor
'@backstage/plugin-techdocs-backend': minor
---
techdocs-backend: Simplified file, removing individual preparers and generators.
techdocs-backend: UrlReader is now available to use in preparers.
In your Backstage app, `packages/backend/plugins/techdocs.ts` file has now been simplified,
to remove registering individual preparers and generators.
Please update the file when upgrading the version of `@backstage/plugin-techdocs-backend` package.
```typescript
const preparers = await Preparers.fromConfig(config, {
logger,
reader,
});
const generators = await Generators.fromConfig(config, {
logger,
});
const publisher = await Publisher.fromConfig(config, {
logger,
discovery,
});
```
You should be able to remove unnecessary imports, and just do
```typescript
import {
createRouter,
Preparers,
Generators,
Publisher,
} from '@backstage/plugin-techdocs-backend';
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Fix for `app.listen.host` configuration not properly overriding listening host.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Clearer error message when preparer or publisher type can't be determined.