@backstage-community/plugin-github-actions 0.7.1 → 0.8.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +1 -1
  3. package/package.json +16 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage-community/plugin-github-actions
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 435f142: Backstage version bump to v1.36.0
8
+
9
+ ## 0.7.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 58d4734: Fixed plugin setup documentation to show example of use with availability check in the catalog EntityPage
14
+
3
15
  ## 0.7.1
4
16
 
5
17
  ### Patch 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,13 +1,16 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-github-actions",
3
- "version": "0.7.1",
3
+ "version": "0.8.0",
4
4
  "description": "A Backstage plugin that integrates towards GitHub Actions",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
7
7
  "pluginId": "github-actions",
8
8
  "pluginPackages": [
9
9
  "@backstage-community/plugin-github-actions"
10
- ]
10
+ ],
11
+ "features": {
12
+ "./alpha": "@backstage/FrontendPlugin"
13
+ }
11
14
  },
12
15
  "publishConfig": {
13
16
  "access": "public"
@@ -65,13 +68,13 @@
65
68
  },
66
69
  "dependencies": {
67
70
  "@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",
71
+ "@backstage/core-compat-api": "^0.3.6",
72
+ "@backstage/core-components": "^0.16.4",
73
+ "@backstage/core-plugin-api": "^1.10.4",
74
+ "@backstage/frontend-plugin-api": "^0.9.5",
72
75
  "@backstage/integration": "^1.16.1",
73
- "@backstage/integration-react": "^1.2.3",
74
- "@backstage/plugin-catalog-react": "^1.15.1",
76
+ "@backstage/integration-react": "^1.2.4",
77
+ "@backstage/plugin-catalog-react": "^1.15.2",
75
78
  "@material-ui/core": "^4.12.2",
76
79
  "@material-ui/icons": "^4.9.1",
77
80
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -82,11 +85,11 @@
82
85
  "react-use": "^17.2.4"
83
86
  },
84
87
  "devDependencies": {
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",
88
+ "@backstage/cli": "^0.30.0",
89
+ "@backstage/core-app-api": "^1.15.5",
90
+ "@backstage/dev-utils": "^1.1.7",
91
+ "@backstage/frontend-test-utils": "^0.2.6",
92
+ "@backstage/test-utils": "^1.7.5",
90
93
  "@testing-library/dom": "^10.0.0",
91
94
  "@testing-library/jest-dom": "^6.0.0",
92
95
  "@testing-library/react": "^15.0.0",