@backstage/plugin-catalog-backend-module-github 0.0.0-nightly-20260330031639 → 0.0.0-nightly-20260401031737
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 +14 -4
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-github
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20260401031737
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- b11e338: Fixed a bug where `GithubEntityProvider` with `validateLocationsExist: true` and `filters.branch` configured would always check for the catalog file on the repository's default branch (`HEAD`) instead of the configured branch. This caused repositories to be filtered out when the catalog file only existed on the non-default branch.
|
|
8
8
|
- edf465f: Removed the `type-fest` dev dependency, replacing its `PartialDeep` import with a local helper type in tests.
|
|
9
9
|
- Updated dependencies
|
|
10
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
11
|
-
- @backstage/plugin-catalog-node@0.0.0-nightly-
|
|
12
|
-
- @backstage/plugin-events-node@0.0.0-nightly-
|
|
10
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20260401031737
|
|
11
|
+
- @backstage/plugin-catalog-node@0.0.0-nightly-20260401031737
|
|
12
|
+
- @backstage/plugin-events-node@0.0.0-nightly-20260401031737
|
|
13
13
|
- @backstage/catalog-model@1.7.7
|
|
14
14
|
- @backstage/config@1.3.6
|
|
15
15
|
- @backstage/errors@1.2.7
|
|
@@ -17,6 +17,16 @@
|
|
|
17
17
|
- @backstage/types@1.2.2
|
|
18
18
|
- @backstage/plugin-catalog-common@1.1.8
|
|
19
19
|
|
|
20
|
+
## 0.13.1-next.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- b11e338: Fixed a bug where `GithubEntityProvider` with `validateLocationsExist: true` and `filters.branch` configured would always check for the catalog file on the repository's default branch (`HEAD`) instead of the configured branch. This caused repositories to be filtered out when the catalog file only existed on the non-default branch.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/backend-plugin-api@1.9.0-next.1
|
|
27
|
+
- @backstage/plugin-catalog-node@2.1.1-next.1
|
|
28
|
+
- @backstage/plugin-events-node@0.4.21-next.1
|
|
29
|
+
|
|
20
30
|
## 0.13.1-next.0
|
|
21
31
|
|
|
22
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-github",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20260401031737",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards GitHub",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/backend-plugin-api": "0.0.0-nightly-
|
|
68
|
+
"@backstage/backend-plugin-api": "0.0.0-nightly-20260401031737",
|
|
69
69
|
"@backstage/catalog-model": "1.7.7",
|
|
70
70
|
"@backstage/config": "1.3.6",
|
|
71
71
|
"@backstage/errors": "1.2.7",
|
|
72
72
|
"@backstage/integration": "2.0.0",
|
|
73
73
|
"@backstage/plugin-catalog-common": "1.1.8",
|
|
74
|
-
"@backstage/plugin-catalog-node": "0.0.0-nightly-
|
|
75
|
-
"@backstage/plugin-events-node": "0.0.0-nightly-
|
|
74
|
+
"@backstage/plugin-catalog-node": "0.0.0-nightly-20260401031737",
|
|
75
|
+
"@backstage/plugin-events-node": "0.0.0-nightly-20260401031737",
|
|
76
76
|
"@backstage/types": "1.2.2",
|
|
77
77
|
"@octokit/auth-callback": "^5.0.0",
|
|
78
78
|
"@octokit/core": "^5.2.0",
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
"uuid": "^11.0.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@backstage/backend-defaults": "0.0.0-nightly-
|
|
91
|
-
"@backstage/backend-test-utils": "0.0.0-nightly-
|
|
92
|
-
"@backstage/cli": "0.0.0-nightly-
|
|
93
|
-
"@backstage/plugin-catalog-backend": "0.0.0-nightly-
|
|
94
|
-
"@backstage/plugin-events-backend": "0.0.0-nightly-
|
|
95
|
-
"@backstage/plugin-events-backend-module-github": "0.0.0-nightly-
|
|
96
|
-
"@backstage/plugin-events-backend-module-google-pubsub": "0.0.0-nightly-
|
|
90
|
+
"@backstage/backend-defaults": "0.0.0-nightly-20260401031737",
|
|
91
|
+
"@backstage/backend-test-utils": "0.0.0-nightly-20260401031737",
|
|
92
|
+
"@backstage/cli": "0.0.0-nightly-20260401031737",
|
|
93
|
+
"@backstage/plugin-catalog-backend": "0.0.0-nightly-20260401031737",
|
|
94
|
+
"@backstage/plugin-events-backend": "0.0.0-nightly-20260401031737",
|
|
95
|
+
"@backstage/plugin-events-backend-module-github": "0.0.0-nightly-20260401031737",
|
|
96
|
+
"@backstage/plugin-events-backend-module-google-pubsub": "0.0.0-nightly-20260401031737",
|
|
97
97
|
"@types/lodash": "^4.14.151",
|
|
98
98
|
"msw": "^2.0.0"
|
|
99
99
|
},
|