@backstage-community/plugin-github-actions 0.7.0 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage-community/plugin-github-actions
|
|
2
2
|
|
|
3
|
+
## 0.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 58d4734: Fixed plugin setup documentation to show example of use with availability check in the catalog EntityPage
|
|
8
|
+
|
|
9
|
+
## 0.7.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b11a62d: Backstage version bump to v1.35.0
|
|
14
|
+
|
|
3
15
|
## 0.7.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ import {
|
|
|
108
108
|
const serviceEntityPage = (
|
|
109
109
|
<EntityLayout>
|
|
110
110
|
{/* other tabs... */}
|
|
111
|
-
<EntityLayout.Route path="/github-actions" title="GitHub Actions">
|
|
111
|
+
<EntityLayout.Route path="/github-actions" title="GitHub Actions" if={isGithubActionsAvailable}>
|
|
112
112
|
<EntityGithubActionsContent />
|
|
113
113
|
</EntityLayout.Route>
|
|
114
114
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-github-actions",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "A Backstage plugin that integrates towards GitHub Actions",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"test": "backstage-cli package test"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@backstage/catalog-model": "^1.7.
|
|
68
|
-
"@backstage/core-compat-api": "^0.3.
|
|
69
|
-
"@backstage/core-components": "^0.16.
|
|
70
|
-
"@backstage/core-plugin-api": "^1.10.
|
|
71
|
-
"@backstage/frontend-plugin-api": "^0.9.
|
|
72
|
-
"@backstage/integration": "^1.16.
|
|
73
|
-
"@backstage/integration-react": "^1.2.
|
|
74
|
-
"@backstage/plugin-catalog-react": "^1.15.
|
|
67
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
68
|
+
"@backstage/core-compat-api": "^0.3.5",
|
|
69
|
+
"@backstage/core-components": "^0.16.3",
|
|
70
|
+
"@backstage/core-plugin-api": "^1.10.3",
|
|
71
|
+
"@backstage/frontend-plugin-api": "^0.9.4",
|
|
72
|
+
"@backstage/integration": "^1.16.1",
|
|
73
|
+
"@backstage/integration-react": "^1.2.3",
|
|
74
|
+
"@backstage/plugin-catalog-react": "^1.15.1",
|
|
75
75
|
"@material-ui/core": "^4.12.2",
|
|
76
76
|
"@material-ui/icons": "^4.9.1",
|
|
77
77
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
"react-use": "^17.2.4"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/cli": "^0.29.
|
|
86
|
-
"@backstage/core-app-api": "^1.15.
|
|
87
|
-
"@backstage/dev-utils": "^1.1.
|
|
88
|
-
"@backstage/frontend-test-utils": "^0.2.
|
|
89
|
-
"@backstage/test-utils": "^1.7.
|
|
85
|
+
"@backstage/cli": "^0.29.5",
|
|
86
|
+
"@backstage/core-app-api": "^1.15.4",
|
|
87
|
+
"@backstage/dev-utils": "^1.1.6",
|
|
88
|
+
"@backstage/frontend-test-utils": "^0.2.5",
|
|
89
|
+
"@backstage/test-utils": "^1.7.4",
|
|
90
90
|
"@testing-library/dom": "^10.0.0",
|
|
91
91
|
"@testing-library/jest-dom": "^6.0.0",
|
|
92
92
|
"@testing-library/react": "^15.0.0",
|