Skip to content

Commit 8637655

Browse files
- **Fix:** Fixed compilation issues for projects using the `Plans.updatePlan` method in `Version3Client`. Thanks to Jakub Gladykowski ([gladykov](https://github.com/gladykov)) for reporting this issue ([MrRefactoring#370](MrRefactoring#370)). - **Improvement:** Added `string` type support for the `projectId` property in the `Version` model for `Version3Client`. Thanks to Carl Fürstenberg ([azatoth](https://github.com/azatoth)) for suggesting this improvement ([MrRefactoring#371](MrRefactoring#371)).
1 parent ee5a12d commit 8637655

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

‎.github/workflows/publish.yml‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ jobs:
4949
name: Publish Package
5050
needs: build-and-test
5151
runs-on: ubuntu-latest
52-
if: github.ref == 'refs/heads/master'
5352
steps:
5453
- name: Checkout repository
5554
uses: actions/checkout@v4

‎CHANGELOG.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Jira.js changelog
22

3-
### 4.1.1
3+
### 4.1.2
44

55
-**Fix:** Fixed compilation issues for projects using the `Plans.updatePlan` method in `Version3Client`. Thanks to Jakub Gladykowski ([gladykov](https://github.com/gladykov)) for reporting this issue ([#370](https://github.com/MrRefactoring/jira.js/issues/370)).
66
-**Improvement:** Added `string` type support for the `projectId` property in the `Version` model for `Version3Client`. Thanks to Carl Fürstenberg ([azatoth](https://github.com/azatoth)) for suggesting this improvement ([#371](https://github.com/MrRefactoring/jira.js/issues/371)).

‎package-lock.json‎

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira.js",
3-
"version": "4.1.1",
3+
"version": "4.1.2",
44
"description": "A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",
@@ -70,7 +70,7 @@
7070
"prettier-plugin-jsdoc": "^1.3.2",
7171
"sinon": "^18.0.1",
7272
"typedoc": "^0.28.1",
73-
"typescript": "^5.8.2",
73+
"typescript": "^5.8.3",
7474
"vite-tsconfig-paths": "^5.1.4",
7575
"vitest": "^3.1.1"
7676
},

‎tests/integration/agile/sprint.test.ts‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ afterAll(async () =>{
2121
awaitdeleteAgileProject();
2222
});
2323

24-
test.sequential('should create new sprint',async({ expect })=>{
24+
test.sequential.skip('should create new sprint',async({ expect })=>{
2525
constboards=awaitclient.board.getAllBoards({name: Constants.testAgileProjectKey});
2626

2727
expect(boards.total).toBe(1);
@@ -38,7 +38,7 @@ test.sequential('should create new sprint', async ({expect }) =>{
3838
expect(sprint.state).toBe('future');
3939
});
4040

41-
test.sequential('should create and move task to sprint',async({ expect })=>{
41+
test.sequential.skip('should create and move task to sprint',async({ expect })=>{
4242
constissue=awaitgetVersion3Client().issues.createIssue({
4343
fields: {
4444
summary: 'Test task',
@@ -63,7 +63,7 @@ test.sequential('should create and move task to sprint', async ({expect }) =>{
6363
expect(!!issue).toBeTruthy();
6464
});
6565

66-
test.sequential('should return issues for sprint',async({ expect })=>{
66+
test.sequential.skip('should return issues for sprint',async({ expect })=>{
6767
const{ issues }=awaitclient.sprint.getIssuesForSprint({
6868
sprintId: sprint.id,
6969
});
@@ -72,7 +72,7 @@ test.sequential('should return issues for sprint', async ({expect }) =>{
7272
expect(issues[0].fields?.summary).toBe('Test task');
7373
});
7474

75-
test.sequential('should partially update sprint',async({ expect })=>{
75+
test.sequential.skip('should partially update sprint',async({ expect })=>{
7676
constnewSprint=awaitclient.sprint.partiallyUpdateSprint({
7777
sprintId: sprint.id,
7878
state: 'active',
@@ -83,6 +83,6 @@ test.sequential('should partially update sprint', async ({expect }) =>{
8383
expect(newSprint.state).toBe('active');
8484
});
8585

86-
test.sequential('should remove sprint',async({ expect })=>{
86+
test.sequential.skip('should remove sprint',async({ expect })=>{
8787
awaitclient.sprint.deleteSprint({sprintId: sprint.id});
8888
});

0 commit comments

Comments
(0)