Version Packages

This commit is contained in:
github-actions[bot]
2023-06-20 13:54:09 +00:00
parent 91fd39cd7e
commit bc0c4bc64c
575 changed files with 6299 additions and 1817 deletions
+61
View File
@@ -1,5 +1,66 @@
# @backstage/plugin-explore-backend
## 0.0.8
### Patch Changes
- 31616c1fc4e4: Allow to provide explore tools through config instead of data in code.
```yaml title="app-config.yaml"
explore:
tools:
- title: New Relic
description: Observability platform built to help engineers create and monitor their software
url: /newrelic
image: https://i.imgur.com/L37ikrX.jpg
tags:
- newrelic
- performance
- monitoring
- errors
- alerting
- title: CircleCI
description: Provides builds overview, detailed build info and retriggering functionality for CircleCI.
url: /circleci
image: https://miro.medium.com/max/1200/1*hkTBp22vLAqlIHkrkZHPnw.png
tags:
- circleci
- ci
- dev
# [...]
```
```diff title="packages/backend/src/plugins/explore.ts"
- import { ExploreTool } from '@backstage/plugin-explore-common';
- const exploreTools: ExploreTool[] = [
- {
- title: 'New Relic',
- description: 'Observability platform built to help engineers create and monitor their software',
- url: '/newrelic',
- image: 'https://i.imgur.com/L37ikrX.jpg',
- tags: ['newrelic', 'performance', 'monitoring', 'errors', 'alerting'],
- },
- {
- title: 'CircleCI',
- description: 'Provides builds overview, detailed build info and retriggering functionality for CircleCI.',
- url: '/circleci',
- image: 'https://miro.medium.com/max/1200/1*hkTBp22vLAqlIHkrkZHPnw.png',
- tags: ['circleci', 'ci', 'dev'],
- },
- ];
-
- StaticExploreToolProvider.fromData(tools)
+ StaticExploreToolProvider.fromData(env.config)
```
- Updated dependencies
- @backstage/backend-common@0.19.0
- @backstage/types@1.1.0
- @backstage/plugin-search-backend-module-explore@0.1.2
- @backstage/config@1.0.8
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.4
## 0.0.8-next.2
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-explore-backend",
"version": "0.0.8-next.2",
"version": "0.0.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",