Skip to content

Commit e59c686

Browse files
v2.1.0 RC (#115)
* 2.0.6 * delete inactive workflows method added * typings improvements and system tests added * typings improvements * project features added * JSDoc indent fixed * typings improved * Authorization header removed * timeout increased
1 parent 119dd30 commit e59c686

File tree

389 files changed

+15239
-13430
lines changed

Some content is hidden

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

389 files changed

+15239
-13430
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Jira.js changelog
22

3+
### 2.1.0
4+
5+
- Typings improved
6+
- projectFeatures API added
7+
- small improvements
8+
39
### 2.0.6
410

511
- searchForIssuesUsingJql request fixed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jira.js is a powerful [Node.JS](https://nodejs.org/) / Browser module that allow
1515

1616
Usability, consistency, and performance are key focuses of jira.js, and it also has nearly 100% coverage of the Jira API. It receives new Jira features shortly after they arrive in the API.
1717

18-
1918
## Table of contents
2019

2120
- [Installation](#installation)
@@ -303,6 +302,7 @@ Available groups:
303302
- [projectCategories](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-categories/#api-group-project-categories)
304303
- [projectComponents](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-components/#api-group-project-components)
305304
- [projectEmail](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-email/#api-group-project-email)
305+
- [projectFeatures](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-features/#api-group-project-features)
306306
- [projectKeyAndNameValidation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-key-and-name-validation/#api-group-project-key-and-name-validation)
307307
- [projectPermissionSchemes](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-permission-schemes/#api-group-project-permission-schemes)
308308
- [projectProperties](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-properties/#api-group-project-properties)
@@ -380,6 +380,7 @@ Available groups:
380380
- [projectCategories](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-categories/#api-group-project-categories)
381381
- [projectComponents](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-components/#api-group-project-components)
382382
- [projectEmail](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-email/#api-group-project-email)
383+
- [projectFeatures](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-features/#api-group-project-features)
383384
- [projectKeyAndNameValidation](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-key-and-name-validation/#api-group-project-key-and-name-validation)
384385
- [projectPermissionSchemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-permission-schemes/#api-group-project-permission-schemes)
385386
- [projectProperties](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-properties/#api-group-project-properties)
@@ -432,6 +433,7 @@ export class CustomJiraClient extends BaseClient {
432433

433434
## Take a look at our other products
434435

436+
* [Confluence.js](https://github.com/MrRefactoring/confluence.js) - confluence.js is a powerful Node.JS / Browser module that allows you to interact with the Confluence API very easily
435437
* [Trello.js](https://github.com/MrRefactoring/trello.js) - JavaScript / TypeScript library for Node.JS and browsers to easily interact with Atlassian Trello API
436438

437439
## License

package-lock.json

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

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "jira.js",
3-
"version": "2.0.6",
3+
"version": "2.1.0",
4+
"description": "jira.js is a powerful Node.JS/Browser module that allows you to interact with the Jira API very easily",
45
"main": "out/index.js",
56
"types": "out/index.d.ts",
67
"repository": "https://github.com/MrRefactoring/jira.js.git",
@@ -25,7 +26,7 @@
2526
"lint:src:version3": "npm run lint:base -- src/version3",
2627
"lint:src:files": "npm run lint:base -- src/*.ts",
2728
"lint:base": "eslint --ext .ts",
28-
"lint:fix": "npm run lint -- --fix",
29+
"lint:fix": "npm run lint:tests -- --fix && npm run lint:src:agile -- --fix && npm run lint:src:clients -- --fix && npm run lint:src:services -- --fix && npm run lint:src:version2 -- --fix && npm run lint:src:version3 -- --fix && npm run lint:src:files -- --fix",
2930
"doc": "typedoc --name Jira.js --out docs ./src",
3031
"test": "npm run test:unit && npm run test:system",
3132
"test:unit": "jest tests/unit",
@@ -42,21 +43,21 @@
4243
"devDependencies": {
4344
"@types/express": "4.17.11",
4445
"@types/jest": "^26.0.22",
45-
"@types/node": "^14.14.37",
46+
"@types/node": "^14.14.41",
4647
"@types/oauth": "^0.9.1",
47-
"@types/sinon": "^9.0.11",
48-
"@typescript-eslint/eslint-plugin": "^4.20.0",
49-
"@typescript-eslint/parser": "^4.20.0",
48+
"@types/sinon": "^10.0.0",
49+
"@typescript-eslint/eslint-plugin": "^4.22.0",
50+
"@typescript-eslint/parser": "^4.22.0",
5051
"dotenv": "^8.2.0",
51-
"eslint": "^7.23.0",
52+
"eslint": "^7.24.0",
5253
"eslint-config-airbnb-typescript": "^12.3.1",
5354
"eslint-import-resolver-typescript": "^2.4.0",
5455
"eslint-plugin-import": "^2.22.1",
5556
"jest": "^26.6.3",
5657
"sinon": "^10.0.0",
57-
"ts-jest": "^26.5.4",
58-
"typedoc": "^0.20.34",
59-
"typescript": "^4.2.3"
58+
"ts-jest": "^26.5.5",
59+
"typedoc": "^0.20.35",
60+
"typescript": "^4.2.4"
6061
},
6162
"dependencies": {
6263
"atlassian-jwt": "^1.0.3",

0 commit comments

Comments
 (0)