Skip to content

Commit d95185e

Browse files
Merge branch 'main' into AXON-771-visual-indication-for-auto-refresh-jira-issue
2 parents 39ec8bd + 329cd32 commit d95185e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1750
-70
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@
44

55
## What's new in 3.8.9
66

7+
### Features
8+
9+
- Added the possibility to remove a reviewer from a PR
10+
711
### Bug Fixes
812

913
- Removed setting options that had no practical or business logic use.
1014
- Added loading indicator to Refresh button for Jira issue auto-refreshes
1115
- Fixed a bug where Jira site icon is broken in create Jira issue page
16+
- Fixed a bug with getting the error when deleting multiple instances
17+
- Fixed a bug where we could not assign people to a Jira issue as DC users
1218

1319
## What's new in 3.8.8
1420

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { test as base } from '@playwright/test';
2+
3+
export const test = base.extend<{ forEachTest: void }>({
4+
forEachTest: [
5+
async ({ page }, use) => {
6+
await use();
7+
8+
// after test script
9+
await page.getByRole('button', { name: 'Manage' }).click();
10+
await page.waitForTimeout(250);
11+
await page.getByRole('menuitem', { name: 'Command Palette' }).click();
12+
await page.waitForTimeout(500);
13+
await page.keyboard.type('Workspaces: Close Workspace');
14+
await page.waitForTimeout(250);
15+
await page.keyboard.press('Enter');
16+
await page.waitForTimeout(1500);
17+
},
18+
{ auto: true },
19+
],
20+
});

e2e/helpers/update-jira-issue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defaultComment } from '../fixtures/comments';
1+
import { defaultComment } from '../mock-data/comments';
22
import type { FieldUpdater } from './types';
33

44
const updateAttachment: FieldUpdater = (issue, value) => {
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/setup-mock-repository.sh

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
set -e
33

44
echo "Setting up global git configuration..."
5-
git config --global user.name "Test User"
6-
git config --global user.email "[email protected]"
5+
git config --global user.name "Mock User"
6+
git config --global user.email "[email protected]"
77
git config --global init.defaultBranch main
88

99
echo "Creating mock repository that simulates a Bitbucket clone..."
@@ -14,7 +14,7 @@ cd /mock-repository
1414
git init
1515

1616
# Add remote and configure it properly (like git clone does)
17-
git remote add origin [email protected]/test-repository.git
17+
git remote add origin [email protected]:mockuser/test-repository.git
1818
git config branch.main.remote origin
1919
git config branch.main.merge refs/heads/main
2020
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"

e2e/tests/jira/assigningFlow.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from '@playwright/test';
2-
import { createSearchResponse } from 'e2e/fixtures/search';
32
import { authenticateWithJira, cleanupWireMockMapping, getIssueFrame, setupWireMockMapping } from 'e2e/helpers';
3+
import { createSearchResponse } from 'e2e/mock-data/search';
44
import { AtlascodeDrawer, AtlassianSettings } from 'e2e/page-objects';
55

66
test('Assigning Jira issue to myself works', async ({ page, request }) => {

e2e/tests/jira/attachFile.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from '@playwright/test';
2-
import { attachment } from 'e2e/fixtures/attachment';
32
import { authenticateWithJira, getIssueFrame, setupIssueMock } from 'e2e/helpers';
3+
import { attachment } from 'e2e/mock-data/attachment';
44
import { AtlascodeDrawer, AtlassianSettings, JiraIssuePage } from 'e2e/page-objects';
55

66
const FILE_NAME = 'test.jpg';

e2e/wiremock-mappings/bitbucket/access-token-bb-cloud.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"jsonBody": {
99
"access_token": "mocked_token",
1010
"token_type": "bearer",
11-
"expires_in": 3600
11+
"expires_in": 3600,
12+
"refresh_token": "mocked_refresh_token"
1213
},
1314
"headers": {
1415
"Content-Type": "application/json"

0 commit comments

Comments
 (0)