Version Packages
This commit is contained in:
@@ -1,5 +1,36 @@
|
||||
# @backstage/plugin-techdocs-backend
|
||||
|
||||
## 0.14.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- a925ba8385: BREAKING: constructor based initialization of DefaultTechDocsCollator now deprecated. Use static fromConfig method instead.
|
||||
|
||||
```diff
|
||||
indexBuilder.addCollator({
|
||||
defaultRefreshIntervalSeconds: 600,
|
||||
- collator: new DefaultTechDocsCollator({
|
||||
+ collator: DefaultTechDocsCollator.fromConfig(config, {
|
||||
discovery,
|
||||
logger,
|
||||
tokenManager,
|
||||
}),
|
||||
});
|
||||
```
|
||||
|
||||
Note: in an upcoming release, TechDocs backend's /sync/:namespace/:kind/:name endpoint will only respond to text/event-stream-based requests. Update any custom code at your organization accordingly.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 91eb01b5cf: Optimize DefaultTechDocsCollator get entities.
|
||||
- 919cf2f836: Minor updates to match the new `targetRef` field of relations, and to stop consuming the `target` field
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.11.0
|
||||
- @backstage/catalog-model@0.11.0
|
||||
- @backstage/catalog-client@0.7.2
|
||||
- @backstage/techdocs-common@0.11.10
|
||||
- @backstage/integration@0.7.5
|
||||
|
||||
## 0.13.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
Reference in New Issue
Block a user