@backstage/plugin-catalog-backend-module-github 0.8.0-next.2 → 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.
- package/CHANGELOG.md +24 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-github
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f0c22eb: **BREAKING**: Explicitly rejects branch names containing a slash character.
|
|
8
|
+
|
|
9
|
+
The module now rejects any configuration that contains slashes in branch names. The reason for this is that the ingestion will run into downstream problems if they were let through. If you had configuration with a slash in the branch name in `filters.branch`, your application may fail to start up.
|
|
10
|
+
|
|
11
|
+
If you are affected by this, please move over to using branches that do not have slashes in them.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 16648ef: Added `validateLocationsExist` to the config definition where it was missing.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/plugin-catalog-node@1.16.3
|
|
18
|
+
- @backstage/plugin-catalog-backend@1.32.1
|
|
19
|
+
- @backstage/backend-plugin-api@1.3.0
|
|
20
|
+
- @backstage/integration@1.16.3
|
|
21
|
+
- @backstage/catalog-client@1.9.1
|
|
22
|
+
- @backstage/catalog-model@1.7.3
|
|
23
|
+
- @backstage/config@1.3.2
|
|
24
|
+
- @backstage/plugin-catalog-common@1.1.3
|
|
25
|
+
- @backstage/plugin-events-node@0.4.10
|
|
26
|
+
|
|
3
27
|
## 0.8.0-next.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-github",
|
|
3
|
-
"version": "0.8.0
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards GitHub",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -66,15 +66,15 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@backstage/backend-common": "^0.25.0",
|
|
69
|
-
"@backstage/backend-plugin-api": "1.
|
|
70
|
-
"@backstage/catalog-client": "1.9.1",
|
|
71
|
-
"@backstage/catalog-model": "1.7.3",
|
|
72
|
-
"@backstage/config": "1.3.2",
|
|
73
|
-
"@backstage/integration": "1.16.3
|
|
74
|
-
"@backstage/plugin-catalog-backend": "1.32.1
|
|
75
|
-
"@backstage/plugin-catalog-common": "1.1.3",
|
|
76
|
-
"@backstage/plugin-catalog-node": "1.16.3
|
|
77
|
-
"@backstage/plugin-events-node": "0.4.
|
|
69
|
+
"@backstage/backend-plugin-api": "^1.3.0",
|
|
70
|
+
"@backstage/catalog-client": "^1.9.1",
|
|
71
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
72
|
+
"@backstage/config": "^1.3.2",
|
|
73
|
+
"@backstage/integration": "^1.16.3",
|
|
74
|
+
"@backstage/plugin-catalog-backend": "^1.32.1",
|
|
75
|
+
"@backstage/plugin-catalog-common": "^1.1.3",
|
|
76
|
+
"@backstage/plugin-catalog-node": "^1.16.3",
|
|
77
|
+
"@backstage/plugin-events-node": "^0.4.10",
|
|
78
78
|
"@octokit/core": "^5.2.0",
|
|
79
79
|
"@octokit/graphql": "^7.0.2",
|
|
80
80
|
"@octokit/plugin-throttling": "^8.1.3",
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
"uuid": "^11.0.0"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@backstage/backend-test-utils": "1.
|
|
89
|
-
"@backstage/cli": "0.32.0
|
|
88
|
+
"@backstage/backend-test-utils": "^1.4.0",
|
|
89
|
+
"@backstage/cli": "^0.32.0",
|
|
90
90
|
"@types/lodash": "^4.14.151",
|
|
91
91
|
"luxon": "^3.0.0",
|
|
92
92
|
"msw": "^2.0.0"
|