@axis-backstage/plugin-jira-dashboard-backend 0.1.0 → 0.3.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 ADDED
@@ -0,0 +1,24 @@
1
+ # @axis-backstage/plugin-jira-dashboard-backend
2
+
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 23ff76a: Bumped Backstage version to v.1.21.0 in whole monorepo
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [23ff76a]
12
+ - @axis-backstage/plugin-jira-dashboard-common@0.2.0
13
+
14
+ ## 0.2.0
15
+
16
+ ### Minor Changes
17
+
18
+ - a67c963: Bumped Backstage to version 1.20.3
19
+
20
+ ### Patch Changes
21
+
22
+ - 1e7ee53: Added missing config.d.ts file to package.json
23
+ - Updated dependencies [9cf5ab1]
24
+ - @axis-backstage/plugin-jira-dashboard-common@0.1.1
package/README.md CHANGED
@@ -14,7 +14,7 @@ Install the plugin by following the example below:
14
14
 
15
15
  ```bash
16
16
  # From your Backstage root directory
17
- yarn add --cwd packages/backend @axis-backstage/plugin-jira-dashboard-backend
17
+ yarn --cwd packages/backend add @axis-backstage/plugin-jira-dashboard-backend
18
18
  ```
19
19
 
20
20
  ### Configuration
package/config.d.ts ADDED
@@ -0,0 +1,20 @@
1
+ export interface Config {
2
+ /** Configuration options for the Jira Dashboard plugin */
3
+ jiraDashboard: {
4
+ /**
5
+ * The API token to authenticate towards Jira. It can be found by visiting Atlassians page at https://developer.atlassian.com/cloud/jira/platform/basic-auth-for-rest-apis/
6
+ * @visibility secret
7
+ */
8
+ token: string;
9
+
10
+ /**
11
+ * The base url for Jira in your company, including the API version. For instance: https://jira.se.your-company.com/rest/api/2/'
12
+ */
13
+ baseUrl: string;
14
+
15
+ /**
16
+ * The email suffix used for retreiving a specific Jira user in a company. For instance @your-company.com
17
+ */
18
+ userEmailSuffix: string;
19
+ };
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axis-backstage/plugin-jira-dashboard-backend",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -22,13 +22,13 @@
22
22
  "postpack": "backstage-cli package postpack"
23
23
  },
24
24
  "dependencies": {
25
- "@axis-backstage/plugin-jira-dashboard-common": "^0.1.0",
26
- "@backstage/backend-common": "^0.19.8",
27
- "@backstage/backend-plugin-api": "^0.6.6",
28
- "@backstage/catalog-client": "^1.4.5",
25
+ "@axis-backstage/plugin-jira-dashboard-common": "^0.2.0",
26
+ "@backstage/backend-common": "^0.20.0",
27
+ "@backstage/backend-plugin-api": "^0.6.8",
28
+ "@backstage/catalog-client": "^1.5.0",
29
29
  "@backstage/config": "^1.1.1",
30
- "@backstage/plugin-auth-node": "^0.4.0",
31
- "@backstage/plugin-permission-common": "^0.7.9",
30
+ "@backstage/plugin-auth-node": "^0.4.2",
31
+ "@backstage/plugin-permission-common": "^0.7.11",
32
32
  "@types/express": "*",
33
33
  "express": "^4.17.1",
34
34
  "express-promise-router": "^4.1.0",
@@ -37,12 +37,14 @@
37
37
  "yn": "^4.0.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@backstage/cli": "^0.23.0",
40
+ "@backstage/cli": "^0.25.0",
41
41
  "@types/supertest": "^2.0.12",
42
42
  "msw": "^1.0.0",
43
43
  "supertest": "^6.2.4"
44
44
  },
45
45
  "files": [
46
- "dist"
47
- ]
46
+ "dist",
47
+ "config.d.ts"
48
+ ],
49
+ "configSchema": "config.d.ts"
48
50
  }