Version Packages

This commit is contained in:
github-actions[bot]
2024-02-20 11:04:26 +00:00
parent e944c0d361
commit f1831dd9b2
771 changed files with 9304 additions and 2982 deletions
+44
View File
@@ -1,5 +1,49 @@
# @backstage/plugin-tech-insights-node
## 0.4.16
### Patch Changes
- 7201af3: Add support for the new backend system.
A new backend plugin for the tech-insights backend
was added and exported as `default`.
You can use it with the new backend system like
```ts title="packages/backend/src/index.ts"
backend.add(import('@backstage/plugin-tech-insights-backend'));
```
- 341c2a2: Move `FactRetrieverRegistry` and `PersistenceContext` to `@backstage/plugin-tech-insights-node`.
Original exports are marked as deprecated and re-export the moved types.
Please replace uses like
```ts
import {
FactRetrieverRegistry,
PersistenceContext,
} from '@backstage/plugin-tech-insights-backend';
```
with
```ts
import {
FactRetrieverRegistry,
PersistenceContext,
} from '@backstage/plugin-tech-insights-node';
```
- Updated dependencies
- @backstage/backend-common@0.21.0
- @backstage/backend-plugin-api@0.6.10
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
## 0.4.16-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-tech-insights-node",
"version": "0.4.16-next.3",
"version": "0.4.16",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",