Version Packages
This commit is contained in:
@@ -1,5 +1,39 @@
|
||||
# @backstage/plugin-todo-backend
|
||||
|
||||
## 0.1.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 67a7c02d26: Remove usages of `EntityRef` and `parseEntityName` from `@backstage/catalog-model`
|
||||
- 6e1cbc12a6: Updated according to the new `getEntityFacets` catalog API method
|
||||
- be9e010da0: Add support to exclude certain folders in `todo` plugin.
|
||||
|
||||
You can add function by configuring your own exclusion logic, for example:
|
||||
|
||||
```ts
|
||||
import {
|
||||
TodoScmReader,
|
||||
createTodoParser,
|
||||
} from '@backstage/plugin-todo-backend';
|
||||
|
||||
// ...
|
||||
|
||||
const todoReader = TodoScmReader.fromConfig(config, {
|
||||
logger,
|
||||
reader,
|
||||
filePathFilter: (filePath: string): boolean => {
|
||||
...
|
||||
YOUR LOGIC HERE
|
||||
},
|
||||
});
|
||||
```
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.11.0
|
||||
- @backstage/catalog-model@0.11.0
|
||||
- @backstage/catalog-client@0.7.2
|
||||
- @backstage/integration@0.7.5
|
||||
|
||||
## 0.1.23
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-todo-backend",
|
||||
"description": "A Backstage backend plugin that lets you browse TODO comments in your source code",
|
||||
"version": "0.1.22",
|
||||
"version": "0.1.24",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -29,12 +29,12 @@
|
||||
"start": "backstage-cli package start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.10.8",
|
||||
"@backstage/catalog-client": "^0.7.0",
|
||||
"@backstage/catalog-model": "^0.10.0",
|
||||
"@backstage/config": "^0.1.14",
|
||||
"@backstage/errors": "^0.2.1",
|
||||
"@backstage/integration": "^0.7.3",
|
||||
"@backstage/backend-common": "^0.11.0",
|
||||
"@backstage/catalog-client": "^0.7.2",
|
||||
"@backstage/catalog-model": "^0.11.0",
|
||||
"@backstage/config": "^0.1.15",
|
||||
"@backstage/errors": "^0.2.2",
|
||||
"@backstage/integration": "^0.7.5",
|
||||
"@types/express": "^4.17.6",
|
||||
"express": "^4.17.1",
|
||||
"express-promise-router": "^4.1.0",
|
||||
@@ -43,7 +43,7 @@
|
||||
"yn": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.14.0",
|
||||
"@backstage/cli": "^0.14.1",
|
||||
"@types/supertest": "^2.0.8",
|
||||
"msw": "^0.35.0",
|
||||
"supertest": "^6.1.3"
|
||||
|
||||
Reference in New Issue
Block a user