Version Packages

This commit is contained in:
github-actions[bot]
2020-12-29 10:59:38 +00:00
parent c1dea1a1bf
commit a1ebbdeee0
66 changed files with 302 additions and 239 deletions
+24
View File
@@ -1,5 +1,29 @@
# @backstage/plugin-techdocs-backend
## 0.5.1
### Patch Changes
- 8804e8981: Using @backstage/integration package for GitHub/GitLab/Azure tokens and request options.
Most probably you do not have to make any changes in the app because of this change.
However, if you are using the `DirectoryPreparer` or `CommonGitPreparer` exported by
`@backstage/techdocs-common` package, you now need to add pass in a `config` (from `@backstage/config`)
instance as argument.
```
<!-- Before -->
const directoryPreparer = new DirectoryPreparer(logger);
const commonGitPreparer = new CommonGitPreparer(logger);
<!-- Now -->
const directoryPreparer = new DirectoryPreparer(config, logger);
const commonGitPreparer = new CommonGitPreparer(config, logger);
```
- 359f9d2d8: Added configuration schema for the commonly used properties of techdocs and techdocs-backend plugins
- Updated dependencies [8804e8981]
- @backstage/techdocs-common@0.3.1
## 0.5.0
### Minor Changes