@backstage/plugin-catalog-backend-module-gerrit 0.1.0-next.2 → 0.1.1-next.1

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 (3) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/config.d.ts +22 -21
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @backstage/plugin-catalog-backend-module-gerrit
2
2
 
3
+ ## 0.1.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
8
+ - Updated dependencies
9
+ - @backstage/backend-tasks@0.3.2-next.1
10
+ - @backstage/backend-common@0.13.6-next.1
11
+ - @backstage/integration@1.2.1-next.1
12
+ - @backstage/plugin-catalog-backend@1.2.0-next.1
13
+ - @backstage/catalog-model@1.0.3-next.0
14
+
15
+ ## 0.1.1-next.0
16
+
17
+ ### Patch Changes
18
+
19
+ - eb2544b21b: Inline config interfaces
20
+ - Updated dependencies
21
+ - @backstage/backend-tasks@0.3.2-next.0
22
+ - @backstage/backend-common@0.13.6-next.0
23
+ - @backstage/integration@1.2.1-next.0
24
+ - @backstage/plugin-catalog-backend@1.2.0-next.0
25
+
26
+ ## 0.1.0
27
+
28
+ ### Minor Changes
29
+
30
+ - 566407bf8a: Initial version of the `plugin-catalog-backend-module-gerrit` plugin
31
+
32
+ ### Patch Changes
33
+
34
+ - 57f684f59c: Fix incorrect main path in `publishConfig`
35
+ - cfc0f19699: Updated dependency `fs-extra` to `10.1.0`.
36
+ - Updated dependencies
37
+ - @backstage/backend-common@0.13.3
38
+ - @backstage/plugin-catalog-backend@1.1.2
39
+ - @backstage/backend-tasks@0.3.1
40
+ - @backstage/integration@1.2.0
41
+ - @backstage/config@1.0.1
42
+ - @backstage/catalog-model@1.0.2
43
+
3
44
  ## 0.1.0-next.2
4
45
 
5
46
  ### Patch Changes
package/config.d.ts CHANGED
@@ -14,26 +14,6 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- interface GerritConfig {
18
- /**
19
- * (Required) The host of the Gerrit integration to use.
20
- * @visibility backend
21
- */
22
- host: string;
23
- /**
24
- * (Required) The query to use for the "List Projects" API call. Used to limit the
25
- * scope of the projects that the provider tries to ingest.
26
- * @visibility backend
27
- */
28
- query: string;
29
- /**
30
- * (Optional) Branch.
31
- * The branch where the provider will try to find entities. Defaults to "master".
32
- * @visibility backend
33
- */
34
- branch?: string;
35
- }
36
-
37
17
  export interface Config {
38
18
  catalog?: {
39
19
  /**
@@ -45,7 +25,28 @@ export interface Config {
45
25
  *
46
26
  * Maps provider id with configuration.
47
27
  */
48
- gerrit?: Record<string, GerritConfig>;
28
+ gerrit?: Record<
29
+ string,
30
+ {
31
+ /**
32
+ * (Required) The host of the Gerrit integration to use.
33
+ * @visibility backend
34
+ */
35
+ host: string;
36
+ /**
37
+ * (Required) The query to use for the "List Projects" API call. Used to limit the
38
+ * scope of the projects that the provider tries to ingest.
39
+ * @visibility backend
40
+ */
41
+ query: string;
42
+ /**
43
+ * (Optional) Branch.
44
+ * The branch where the provider will try to find entities. Defaults to "master".
45
+ * @visibility backend
46
+ */
47
+ branch?: string;
48
+ }
49
+ >;
49
50
  };
50
51
  };
51
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gerrit",
3
- "version": "0.1.0-next.2",
3
+ "version": "0.1.1-next.1",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -28,22 +28,22 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/backend-common": "^0.13.3-next.2",
32
- "@backstage/backend-tasks": "^0.3.1-next.1",
33
- "@backstage/catalog-model": "^1.0.2-next.0",
34
- "@backstage/config": "^1.0.1-next.0",
31
+ "@backstage/backend-common": "^0.13.6-next.1",
32
+ "@backstage/backend-tasks": "^0.3.2-next.1",
33
+ "@backstage/catalog-model": "^1.0.3-next.0",
34
+ "@backstage/config": "^1.0.1",
35
35
  "@backstage/errors": "^1.0.0",
36
- "@backstage/integration": "^1.2.0-next.1",
37
- "@backstage/plugin-catalog-backend": "^1.1.2-next.2",
36
+ "@backstage/integration": "^1.2.1-next.1",
37
+ "@backstage/plugin-catalog-backend": "^1.2.0-next.1",
38
38
  "fs-extra": "10.1.0",
39
- "msw": "^0.35.0",
39
+ "msw": "^0.42.0",
40
40
  "node-fetch": "^2.6.7",
41
41
  "uuid": "^8.0.0",
42
42
  "winston": "^3.2.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/backend-test-utils": "^0.1.24-next.1",
46
- "@backstage/cli": "^0.17.1-next.2",
45
+ "@backstage/backend-test-utils": "^0.1.25-next.1",
46
+ "@backstage/cli": "^0.17.2-next.1",
47
47
  "@types/fs-extra": "^9.0.1"
48
48
  },
49
49
  "files": [
@@ -51,5 +51,5 @@
51
51
  "config.d.ts"
52
52
  ],
53
53
  "configSchema": "config.d.ts",
54
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
54
+ "gitHead": "e15c24ddb5d14034629ced8a5a5d8f12b8f1a7dd"
55
55
  }