Version Packages
This commit is contained in:
@@ -1,5 +1,34 @@
|
||||
# @backstage/plugin-techdocs
|
||||
|
||||
## 0.12.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 82bb0842a3: Adds support for being able to customize and compose your TechDocs reader page in the App.
|
||||
|
||||
You can likely upgrade to this version without issue. If, however, you have
|
||||
imported the `<Reader />` component in your custom code, the name of a property
|
||||
has changed. You will need to make the following change anywhere you use it:
|
||||
|
||||
```diff
|
||||
-<Reader entityId={value} />
|
||||
+<Reader entityRef={value} />
|
||||
```
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 79ebee7a6b: Add "data-testid" for e2e tests and fix techdocs entity not found error.
|
||||
- 3df2e8532b: Fixed the URL for the "Click to copy documentation link to clipboard" action
|
||||
- 0a8bec0877: Added a check for the TechDocs annotation on the entity
|
||||
- Updated dependencies
|
||||
- @backstage/integration@0.6.6
|
||||
- @backstage/core-plugin-api@0.1.9
|
||||
- @backstage/core-components@0.6.0
|
||||
- @backstage/integration-react@0.1.11
|
||||
- @backstage/plugin-catalog@0.6.17
|
||||
- @backstage/plugin-catalog-react@0.5.1
|
||||
- @backstage/plugin-search@0.4.13
|
||||
|
||||
## 0.11.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-techdocs",
|
||||
"description": "The Backstage plugin that renders technical documentation for your components",
|
||||
"version": "0.11.3",
|
||||
"version": "0.12.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -34,14 +34,14 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^0.9.3",
|
||||
"@backstage/config": "^0.1.10",
|
||||
"@backstage/core-components": "^0.5.0",
|
||||
"@backstage/core-plugin-api": "^0.1.8",
|
||||
"@backstage/core-components": "^0.6.0",
|
||||
"@backstage/core-plugin-api": "^0.1.9",
|
||||
"@backstage/errors": "^0.1.1",
|
||||
"@backstage/integration": "^0.6.5",
|
||||
"@backstage/integration-react": "^0.1.10",
|
||||
"@backstage/plugin-catalog": "^0.6.16",
|
||||
"@backstage/plugin-catalog-react": "^0.5.0",
|
||||
"@backstage/plugin-search": "^0.4.12",
|
||||
"@backstage/integration": "^0.6.6",
|
||||
"@backstage/integration-react": "^0.1.11",
|
||||
"@backstage/plugin-catalog": "^0.6.17",
|
||||
"@backstage/plugin-catalog-react": "^0.5.1",
|
||||
"@backstage/plugin-search": "^0.4.13",
|
||||
"@backstage/theme": "^0.2.10",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -61,9 +61,9 @@
|
||||
"react-use": "^17.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.7.13",
|
||||
"@backstage/core-app-api": "^0.1.14",
|
||||
"@backstage/dev-utils": "^0.2.10",
|
||||
"@backstage/cli": "^0.7.14",
|
||||
"@backstage/core-app-api": "^0.1.15",
|
||||
"@backstage/dev-utils": "^0.2.11",
|
||||
"@backstage/test-utils": "^0.1.17",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^11.2.5",
|
||||
|
||||
Reference in New Issue
Block a user