@backstage/plugin-catalog-backend-module-github 0.13.1-next.2 → 0.13.2-next.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 (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @backstage/plugin-catalog-backend-module-github
2
2
 
3
+ ## 0.13.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/errors@1.3.1-next.0
9
+ - @backstage/integration@2.0.2-next.0
10
+ - @backstage/backend-plugin-api@1.9.1-next.0
11
+ - @backstage/catalog-model@1.8.1-next.0
12
+ - @backstage/config@1.3.8-next.0
13
+ - @backstage/plugin-catalog-node@2.2.1-next.0
14
+ - @backstage/plugin-events-node@0.4.22-next.0
15
+ - @backstage/types@1.2.2
16
+ - @backstage/plugin-catalog-common@1.1.10-next.0
17
+
18
+ ## 0.13.1
19
+
20
+ ### Patch Changes
21
+
22
+ - 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.
23
+ - edf465f: Removed the `type-fest` dev dependency, replacing its `PartialDeep` import with a local helper type in tests.
24
+ - cca9fc2: Added automatic retry on temporary errors (like 5XX) to the shared GitHub GraphQL client used by `GithubOrgEntityProvider` and replaced the GraphQL client in `GithubEntityProvider` by this one as well, improving resilience against intermittent GitHub API failures.
25
+ - Updated dependencies
26
+ - @backstage/backend-plugin-api@1.9.0
27
+ - @backstage/errors@1.3.0
28
+ - @backstage/catalog-model@1.8.0
29
+ - @backstage/plugin-catalog-node@2.2.0
30
+ - @backstage/integration@2.0.1
31
+ - @backstage/config@1.3.7
32
+ - @backstage/plugin-catalog-common@1.1.9
33
+ - @backstage/plugin-events-node@0.4.21
34
+
3
35
  ## 0.13.1-next.2
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-github",
3
- "version": "0.13.1-next.2",
3
+ "version": "0.13.2-next.0",
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": "1.9.0-next.2",
69
- "@backstage/catalog-model": "1.7.8-next.0",
70
- "@backstage/config": "1.3.7-next.0",
71
- "@backstage/errors": "1.3.0-next.0",
72
- "@backstage/integration": "2.0.1-next.0",
73
- "@backstage/plugin-catalog-common": "1.1.9-next.0",
74
- "@backstage/plugin-catalog-node": "2.2.0-next.2",
75
- "@backstage/plugin-events-node": "0.4.21-next.2",
68
+ "@backstage/backend-plugin-api": "1.9.1-next.0",
69
+ "@backstage/catalog-model": "1.8.1-next.0",
70
+ "@backstage/config": "1.3.8-next.0",
71
+ "@backstage/errors": "1.3.1-next.0",
72
+ "@backstage/integration": "2.0.2-next.0",
73
+ "@backstage/plugin-catalog-common": "1.1.10-next.0",
74
+ "@backstage/plugin-catalog-node": "2.2.1-next.0",
75
+ "@backstage/plugin-events-node": "0.4.22-next.0",
76
76
  "@backstage/types": "1.2.2",
77
77
  "@octokit/auth-callback": "^5.0.0",
78
78
  "@octokit/core": "^5.2.0",
@@ -88,13 +88,13 @@
88
88
  "uuid": "^11.0.0"
89
89
  },
90
90
  "devDependencies": {
91
- "@backstage/backend-defaults": "0.16.1-next.2",
92
- "@backstage/backend-test-utils": "1.11.2-next.2",
93
- "@backstage/cli": "0.36.1-next.2",
94
- "@backstage/plugin-catalog-backend": "3.6.0-next.2",
95
- "@backstage/plugin-events-backend": "0.6.1-next.2",
96
- "@backstage/plugin-events-backend-module-github": "0.4.11-next.2",
97
- "@backstage/plugin-events-backend-module-google-pubsub": "0.2.2-next.2",
91
+ "@backstage/backend-defaults": "0.17.1-next.0",
92
+ "@backstage/backend-test-utils": "1.11.3-next.0",
93
+ "@backstage/cli": "0.36.2-next.0",
94
+ "@backstage/plugin-catalog-backend": "3.6.1-next.0",
95
+ "@backstage/plugin-events-backend": "0.6.2-next.0",
96
+ "@backstage/plugin-events-backend-module-github": "0.4.12-next.0",
97
+ "@backstage/plugin-events-backend-module-google-pubsub": "0.2.3-next.0",
98
98
  "@types/lodash": "^4.14.151",
99
99
  "msw": "^2.0.0"
100
100
  },