Skip to content

Commit

Permalink
Merge branch 'main' into multipleProjectKeys
Browse files Browse the repository at this point in the history
  • Loading branch information
SaachiNayyer committed Jan 15, 2025
2 parents 7ff68e3 + 0dcbe5f commit 0472085
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 20 deletions.
7 changes: 7 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# app

## 0.10.10

### Patch Changes

- Updated dependencies [d166111]
- @axis-backstage/plugin-jira-dashboard@1.14.2

## 0.10.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app",
"version": "0.10.9",
"version": "0.10.10",
"private": true,
"bundled": true,
"backstage": {
Expand Down
6 changes: 6 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# backend

## 0.7.17

### Patch Changes

- [email protected]

## 0.7.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backend",
"version": "0.7.16",
"version": "0.7.17",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"private": true,
Expand Down
4 changes: 3 additions & 1 deletion plugins/jira-dashboard-backend/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ export const getIssuesByFilter = async (
Accept: 'application/json',
},
},
).then(resp => resp.json()).catch(() => null);
)
.then(resp => resp.json())
.catch(() => null);

if (response?.issues) {
issues.push(...response.issues);
Expand Down
6 changes: 6 additions & 0 deletions plugins/jira-dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @axis-backstage/plugin-jira-dashboard

## 1.14.2

### Patch Changes

- d166111: Add the "config.d.ts" file to the "files" in package.json.

## 1.14.1

### Patch Changes
Expand Down
22 changes: 7 additions & 15 deletions plugins/jira-dashboard/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,11 @@ export interface Config {
/**
* Configuration options for the Jira Dashboard plugin
*/
jiraDashboard:
| {
/**
* Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com
* @visibility frontend
*/
annotationPrefix?: string;
}
| {
/**
* Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com
* @visibility frontend
*/
annotationPrefix?: string;
};
jiraDashboard: {
/**
* Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com
* @visibility frontend
*/
annotationPrefix?: string;
};
}
5 changes: 3 additions & 2 deletions plugins/jira-dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axis-backstage/plugin-jira-dashboard",
"version": "1.14.1",
"version": "1.14.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -82,7 +82,8 @@
"msw": "^1.0.0"
},
"files": [
"dist"
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}

0 comments on commit 0472085

Please sign in to comment.