Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-03-29 08:42:22 +00:00
parent 1ed39cd466
commit e6f3fb8575
196 changed files with 1439 additions and 523 deletions
@@ -1,5 +1,31 @@
# @backstage/plugin-tech-insights-backend
## 0.3.0-next.1
### Minor Changes
- 231fee736b: This backend now uses the `@backstage/backend-tasks` package facilities for scheduling fact retrievers.
**BREAKING**: The `buildTechInsightsContext` function now takes an additional field in its options argument: `scheduler`. This is an instance of `PluginTaskScheduler`, which can be found in your backend initialization code's `env`.
```diff
const builder = buildTechInsightsContext({
logger: env.logger,
config: env.config,
database: env.database,
discovery: env.discovery,
+ scheduler: env.scheduler,
factRetrievers: [ /* ... */ ],
});
```
### Patch Changes
- Updated dependencies
- @backstage/backend-tasks@0.3.0-next.1
- @backstage/plugin-tech-insights-node@0.2.9-next.1
- @backstage/backend-common@0.13.2-next.1
## 0.2.11-next.0
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-tech-insights-backend",
"version": "0.2.11-next.0",
"version": "0.3.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -34,14 +34,14 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.13.2-next.0",
"@backstage/backend-tasks": "^0.2.2-next.0",
"@backstage/backend-common": "^0.13.2-next.1",
"@backstage/backend-tasks": "^0.3.0-next.1",
"@backstage/catalog-client": "^1.0.1-next.0",
"@backstage/catalog-model": "^1.0.1-next.0",
"@backstage/config": "^1.0.0",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-tech-insights-common": "^0.2.4",
"@backstage/plugin-tech-insights-node": "^0.2.9-next.0",
"@backstage/plugin-tech-insights-node": "^0.2.9-next.1",
"@types/express": "^4.17.6",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
@@ -54,8 +54,8 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.23-next.0",
"@backstage/cli": "^0.16.1-next.0",
"@backstage/backend-test-utils": "^0.1.23-next.1",
"@backstage/cli": "^0.17.0-next.1",
"@types/supertest": "^2.0.8",
"@types/semver": "^7.3.8",
"supertest": "^6.1.3",