@backstage/plugin-catalog-backend-module-github 0.2.3-next.2 → 0.2.3

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,34 @@
1
1
  # @backstage/plugin-catalog-backend-module-github
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 427d8f4411: Added support for event based updates in the `GithubOrgEntityProvider`!
8
+ Based on webhook events from GitHub the affected `User` or `Group` entity will be refreshed.
9
+ This includes adding new entities, refreshing existing ones, and removing obsolete ones.
10
+
11
+ Please find more information at
12
+ https://backstage.io/docs/integrations/github/org#installation-with-events-support
13
+
14
+ - f8d91a8810: fixed `catalogPath` option to properly glob match on received GitHub events.
15
+ - 9f2b786fc9: Provide context for logged errors.
16
+ - 8e06f3cf00: Switched imports of `loggerToWinstonLogger` to `@backstage/backend-common`.
17
+ - Updated dependencies
18
+ - @backstage/backend-plugin-api@0.3.0
19
+ - @backstage/backend-common@0.18.0
20
+ - @backstage/catalog-model@1.1.5
21
+ - @backstage/catalog-client@1.3.0
22
+ - @backstage/backend-tasks@0.4.1
23
+ - @backstage/plugin-catalog-node@1.3.1
24
+ - @backstage/plugin-catalog-backend@1.7.0
25
+ - @backstage/config@1.0.6
26
+ - @backstage/plugin-events-node@0.2.1
27
+ - @backstage/errors@1.1.4
28
+ - @backstage/integration@1.4.2
29
+ - @backstage/types@1.0.2
30
+ - @backstage/plugin-catalog-common@1.0.10
31
+
3
32
  ## 0.2.3-next.2
4
33
 
5
34
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-github",
3
- "version": "0.2.3-next.2",
3
+ "version": "0.2.3",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
@@ -138,7 +138,7 @@ export declare class GithubEntityProvider implements EntityProvider, EventSubscr
138
138
  *
139
139
  * @alpha
140
140
  */
141
- export declare const githubEntityProviderCatalogModule: (options?: undefined) => BackendFeature;
141
+ export declare const githubEntityProviderCatalogModule: () => BackendFeature;
142
142
 
143
143
  /** @public */
144
144
  export declare class GithubLocationAnalyzer implements ScmLocationAnalyzer {
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.3-next.2",
4
+ "version": "0.2.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -33,18 +33,18 @@
33
33
  "start": "backstage-cli package start"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-common": "^0.18.0-next.1",
37
- "@backstage/backend-plugin-api": "^0.3.0-next.1",
38
- "@backstage/backend-tasks": "^0.4.1-next.1",
39
- "@backstage/catalog-client": "^1.3.0-next.2",
40
- "@backstage/catalog-model": "^1.1.5-next.1",
41
- "@backstage/config": "^1.0.6-next.0",
36
+ "@backstage/backend-common": "^0.18.0",
37
+ "@backstage/backend-plugin-api": "^0.3.0",
38
+ "@backstage/backend-tasks": "^0.4.1",
39
+ "@backstage/catalog-client": "^1.3.0",
40
+ "@backstage/catalog-model": "^1.1.5",
41
+ "@backstage/config": "^1.0.6",
42
42
  "@backstage/errors": "^1.1.4",
43
- "@backstage/integration": "^1.4.2-next.0",
44
- "@backstage/plugin-catalog-backend": "^1.7.0-next.2",
45
- "@backstage/plugin-catalog-common": "^1.0.10-next.1",
46
- "@backstage/plugin-catalog-node": "^1.3.1-next.2",
47
- "@backstage/plugin-events-node": "^0.2.1-next.1",
43
+ "@backstage/integration": "^1.4.2",
44
+ "@backstage/plugin-catalog-backend": "^1.7.0",
45
+ "@backstage/plugin-catalog-common": "^1.0.10",
46
+ "@backstage/plugin-catalog-node": "^1.3.1",
47
+ "@backstage/plugin-events-node": "^0.2.1",
48
48
  "@backstage/types": "^1.0.2",
49
49
  "@octokit/graphql": "^5.0.0",
50
50
  "@octokit/rest": "^19.0.3",
@@ -56,8 +56,8 @@
56
56
  "winston": "^3.2.1"
57
57
  },
58
58
  "devDependencies": {
59
- "@backstage/backend-test-utils": "^0.1.32-next.2",
60
- "@backstage/cli": "^0.22.1-next.2",
59
+ "@backstage/backend-test-utils": "^0.1.32",
60
+ "@backstage/cli": "^0.22.1",
61
61
  "@types/lodash": "^4.14.151",
62
62
  "luxon": "^3.0.0",
63
63
  "msw": "^0.49.0"