Version Packages

This commit is contained in:
github-actions[bot]
2022-03-03 15:23:53 +00:00
parent 17e0b29a42
commit 3c8bb2854d
324 changed files with 2644 additions and 1649 deletions
+26
View File
@@ -1,5 +1,31 @@
# @backstage/plugin-techdocs-backend
## 0.14.1
### Patch Changes
- 6537a601c7: Added a new interface that allows for customization of when to build techdocs
- 899f196af5: Use `getEntityByRef` instead of `getEntityByName` in the catalog client
- 022507c860: A `DefaultTechDocsCollatorFactory`, which works with the new stream-based
search indexing subsystem, is now available. The `DefaultTechDocsCollator` will
continue to be available for those unable to upgrade to the stream-based
`@backstage/search-backend-node` (and related packages), however it is now
marked as deprecated and will be removed in a future version.
To upgrade this plugin and the search indexing subsystem in one go, check
[this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for necessary changes to your search backend plugin configuration.
- 36aa63022b: Use `CompoundEntityRef` instead of `EntityName`, and `getCompoundEntityRef` instead of `getEntityName`, from `@backstage/catalog-model`.
- Updated dependencies
- @backstage/catalog-model@0.12.0
- @backstage/catalog-client@0.8.0
- @backstage/backend-common@0.12.0
- @backstage/plugin-catalog-common@0.2.0
- @backstage/integration@0.8.0
- @backstage/search-common@0.3.0
- @backstage/techdocs-common@0.11.11
## 0.14.0
### Minor Changes
+11 -11
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-techdocs-backend",
"description": "The Backstage backend plugin that renders technical documentation for your components",
"version": "0.14.0",
"version": "0.14.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -34,15 +34,15 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.11.0",
"@backstage/catalog-client": "^0.7.2",
"@backstage/catalog-model": "^0.11.0",
"@backstage/backend-common": "^0.12.0",
"@backstage/catalog-client": "^0.8.0",
"@backstage/catalog-model": "^0.12.0",
"@backstage/config": "^0.1.15",
"@backstage/errors": "^0.2.2",
"@backstage/integration": "^0.7.5",
"@backstage/plugin-catalog-common": "^0.1.4",
"@backstage/search-common": "^0.2.4",
"@backstage/techdocs-common": "^0.11.10",
"@backstage/integration": "^0.8.0",
"@backstage/plugin-catalog-common": "^0.2.0",
"@backstage/search-common": "^0.3.0",
"@backstage/techdocs-common": "^0.11.11",
"@types/express": "^4.17.6",
"dockerode": "^3.3.1",
"express": "^4.17.1",
@@ -55,9 +55,9 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.14.1",
"@backstage/plugin-search-backend-node": "0.4.7",
"@backstage/test-utils": "^0.2.6",
"@backstage/cli": "^0.15.0",
"@backstage/plugin-search-backend-node": "0.5.0",
"@backstage/test-utils": "^0.3.0",
"@types/dockerode": "^3.3.0",
"msw": "^0.35.0",
"supertest": "^6.1.3"