Skip to content

Commit

Permalink
Merge branch 'main' into pluginImprovements
Browse files Browse the repository at this point in the history
  • Loading branch information
SaachiNayyer authored Mar 25, 2024
2 parents 86bd8a1 + 9b7de8f commit 7cc257d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
7 changes: 7 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# backend

## 0.3.8

### Patch Changes

- Updated dependencies [f23bacd]
- @axis-backstage/plugin-jira-dashboard-backend@0.7.4

## 0.3.7

### 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.3.7",
"version": "0.3.8",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"private": true,
Expand Down
6 changes: 6 additions & 0 deletions plugins/jira-dashboard-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @axis-backstage/plugin-jira-dashboard-backend

## 0.7.4

### Patch Changes

- f23bacd: added content type header to searchJira call

## 0.7.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/jira-dashboard-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axis-backstage/plugin-jira-dashboard-backend",
"version": "0.7.3",
"version": "0.7.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
1 change: 1 addition & 0 deletions plugins/jira-dashboard-backend/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const searchJira = async (
headers: {
Authorization: resolveJiraToken(config),
Accept: 'application/json',
'Content-Type': 'application/json',
},
}).then(resp => resp.json());
return response.issues;
Expand Down

0 comments on commit 7cc257d

Please sign in to comment.