@backstage/plugin-catalog-backend-module-github 0.2.2-next.2 → 0.2.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 CHANGED
@@ -1,5 +1,59 @@
1
1
  # @backstage/plugin-catalog-backend-module-github
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 70fa5ec3ec: Fixes the assignment of group member references in `GithubMultiOrgProcessor` so membership relations are resolved correctly.
8
+ - 884d749b14: Refactored to use `coreServices` from `@backstage/backend-plugin-api`.
9
+ - fe93cce743: Added the githubCredentialsProvider property to the GithubLocationAnalyzerOptions to be able to override the GithubCredentialsProvider.
10
+ - a0fd4af94a: Handle GitHub `push` events at the `GithubEntityProvider` by subscribing to the topic `github.push.`
11
+
12
+ Implements `EventSubscriber` to receive events for the topic `github.push`.
13
+
14
+ On `github.push`, the affected repository will be refreshed.
15
+ This includes adding new Location entities, refreshing existing ones,
16
+ and removing obsolete ones.
17
+
18
+ Please find more information at
19
+ https://backstage.io/docs/integrations/github/discovery#installation-with-events-support
20
+
21
+ - 3280711113: Updated dependency `msw` to `^0.49.0`.
22
+ - 754b5854df: Fix incorrectly exported GithubOrgEntityProvider as a type
23
+ - Updated dependencies
24
+ - @backstage/plugin-catalog-backend@1.6.0
25
+ - @backstage/catalog-client@1.2.0
26
+ - @backstage/backend-common@0.17.0
27
+ - @backstage/plugin-catalog-node@1.3.0
28
+ - @backstage/backend-tasks@0.4.0
29
+ - @backstage/errors@1.1.4
30
+ - @backstage/backend-plugin-api@0.2.0
31
+ - @backstage/plugin-events-node@0.2.0
32
+ - @backstage/integration@1.4.1
33
+ - @backstage/types@1.0.2
34
+ - @backstage/catalog-model@1.1.4
35
+ - @backstage/config@1.0.5
36
+ - @backstage/plugin-catalog-common@1.0.9
37
+
38
+ ## 0.2.2-next.3
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies
43
+ - @backstage/plugin-catalog-backend@1.6.0-next.3
44
+ - @backstage/backend-tasks@0.4.0-next.3
45
+ - @backstage/backend-common@0.17.0-next.3
46
+ - @backstage/backend-plugin-api@0.2.0-next.3
47
+ - @backstage/catalog-client@1.2.0-next.1
48
+ - @backstage/catalog-model@1.1.4-next.1
49
+ - @backstage/config@1.0.5-next.1
50
+ - @backstage/errors@1.1.4-next.1
51
+ - @backstage/integration@1.4.1-next.1
52
+ - @backstage/types@1.0.2-next.1
53
+ - @backstage/plugin-catalog-common@1.0.9-next.3
54
+ - @backstage/plugin-catalog-node@1.3.0-next.3
55
+ - @backstage/plugin-events-node@0.2.0-next.3
56
+
3
57
  ## 0.2.2-next.2
4
58
 
5
59
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-github",
3
- "version": "0.2.2-next.2",
3
+ "version": "0.2.2",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-github",
3
3
  "description": "A Backstage catalog backend module that helps integrate towards GitHub",
4
- "version": "0.2.2-next.2",
4
+ "version": "0.2.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -33,19 +33,19 @@
33
33
  "start": "backstage-cli package start"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-common": "^0.17.0-next.2",
37
- "@backstage/backend-plugin-api": "^0.2.0-next.2",
38
- "@backstage/backend-tasks": "^0.4.0-next.2",
39
- "@backstage/catalog-client": "^1.2.0-next.1",
40
- "@backstage/catalog-model": "^1.1.4-next.1",
41
- "@backstage/config": "^1.0.5-next.1",
42
- "@backstage/errors": "^1.1.4-next.1",
43
- "@backstage/integration": "^1.4.1-next.1",
44
- "@backstage/plugin-catalog-backend": "^1.6.0-next.2",
45
- "@backstage/plugin-catalog-common": "^1.0.9-next.2",
46
- "@backstage/plugin-catalog-node": "^1.3.0-next.2",
47
- "@backstage/plugin-events-node": "^0.2.0-next.2",
48
- "@backstage/types": "^1.0.2-next.1",
36
+ "@backstage/backend-common": "^0.17.0",
37
+ "@backstage/backend-plugin-api": "^0.2.0",
38
+ "@backstage/backend-tasks": "^0.4.0",
39
+ "@backstage/catalog-client": "^1.2.0",
40
+ "@backstage/catalog-model": "^1.1.4",
41
+ "@backstage/config": "^1.0.5",
42
+ "@backstage/errors": "^1.1.4",
43
+ "@backstage/integration": "^1.4.1",
44
+ "@backstage/plugin-catalog-backend": "^1.6.0",
45
+ "@backstage/plugin-catalog-common": "^1.0.9",
46
+ "@backstage/plugin-catalog-node": "^1.3.0",
47
+ "@backstage/plugin-events-node": "^0.2.0",
48
+ "@backstage/types": "^1.0.2",
49
49
  "@octokit/graphql": "^5.0.0",
50
50
  "@octokit/rest": "^19.0.3",
51
51
  "git-url-parse": "^13.0.0",
@@ -55,8 +55,8 @@
55
55
  "winston": "^3.2.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-test-utils": "^0.1.31-next.2",
59
- "@backstage/cli": "^0.21.2-next.2",
58
+ "@backstage/backend-test-utils": "^0.1.31",
59
+ "@backstage/cli": "^0.22.0",
60
60
  "@types/lodash": "^4.14.151",
61
61
  "luxon": "^3.0.0",
62
62
  "msw": "^0.49.0"