Version Packages

This commit is contained in:
github-actions[bot]
2022-12-20 11:30:21 +00:00
parent 9ef94ccd4a
commit 3245539963
569 changed files with 6420 additions and 2404 deletions
+29
View File
@@ -0,0 +1,29 @@
# @backstage/plugin-sonarqube-react
## 0.1.0
### Minor Changes
- 6b59903bfa: Parts of plugin-sonarqube have been moved into a new plugin-sonarqube-react package. Additionally some types that were
previously internal to plugin-sonarqube have been made public and will allow access for third-parties. As the sonarqube
plugin has not yet reached 1.0 breaking changes are expected in the future. As such exports of plugin-sonarqube-react
require importing via the `/alpha` entrypoint:
```ts
import { sonarQubeApiRef } from '@backstage/plugin-sonarqube-react/alpha';
const sonarQubeApi = useApi(sonarQubeApiRef);
```
Moved from plugin-sonarqube to plugin-sonarqube-react:
- isSonarQubeAvailable
- SONARQUBE_PROJECT_KEY_ANNOTATION
Exports that been introduced to plugin-sonarqube-react are documented in the [API report](https://github.com/backstage/backstage/blob/master/plugins/sonarqube-react/api-report.md).
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.2.0
- @backstage/catalog-model@1.1.4
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-sonarqube-react",
"version": "0.0.0",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",