@backstage-community/plugin-jenkins-common 0.16.1 → 0.18.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage-community/plugin-jenkins-common
2
2
 
3
+ ## 0.18.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 54da0c1: Backstage version bump to v1.49.2
8
+
9
+ ## 0.17.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 5b10e9e: Backstage version bump to v1.48.2
14
+
3
15
  ## 0.16.1
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -72,7 +72,7 @@ declare class Jenkins {
72
72
  job: {
73
73
  get: (input: JobGetOptions) => Promise<any>;
74
74
  getBuilds: (name: string | string[], tree?: string) => Promise<unknown>;
75
- build: (name: string | string[], opts?: JobBuildOptions | undefined) => Promise<unknown>;
75
+ build: (name: string | string[], opts?: JobBuildOptions) => Promise<unknown>;
76
76
  copy: (name: string | string[], from: string) => Promise<void>;
77
77
  create: (name: string | string[], xml: string) => Promise<void>;
78
78
  destroy: (name: string | string[]) => Promise<void>;
@@ -80,8 +80,8 @@ declare class Jenkins {
80
80
  disable: (name: string | string[]) => Promise<void>;
81
81
  };
82
82
  build: {
83
- get: (name: string | string[], buildNumber: string | number) => Promise<JenkinsBuild>;
84
- getConsoleText: (name: string | string[], buildNumber: string | number) => Promise<string>;
83
+ get: (name: string | string[], buildNumber: number | string) => Promise<JenkinsBuild>;
84
+ getConsoleText: (name: string | string[], buildNumber: number | string) => Promise<string>;
85
85
  };
86
86
  /**
87
87
  * Retrieves and caches the Jenkins CSRF protection crumb.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-jenkins-common",
3
- "version": "0.16.1",
3
+ "version": "0.18.0",
4
4
  "backstage": {
5
5
  "role": "common-library",
6
6
  "pluginId": "jenkins",
@@ -38,12 +38,12 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/plugin-catalog-common": "^1.1.7",
42
- "@backstage/plugin-permission-common": "^0.9.5",
41
+ "@backstage/plugin-catalog-common": "^1.1.8",
42
+ "@backstage/plugin-permission-common": "^0.9.7",
43
43
  "node-fetch": "^2.6.7"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.35.3"
46
+ "@backstage/cli": "^0.36.0"
47
47
  },
48
48
  "typesVersions": {
49
49
  "*": {