File tree Expand file tree Collapse file tree 7 files changed +742
-550
lines changed Expand file tree Collapse file tree 7 files changed +742
-550
lines changed Original file line number Diff line number Diff line change 22
22
"semi": "error",
23
23
"eqeqeq": "error",
24
24
"eol-last": "error",
25
- "lines-between-class-members": "error ",
25
+ "lines-between-class-members": "off ",
26
26
"no-trailing-spaces": "error",
27
27
"indent": [
28
28
"error",
Original file line number Diff line number Diff line change
1
+ .idea
1
2
node_modules
2
3
out
3
4
docs
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ A JavaScript/TypeScript wrapper for the JIRA REST API
13
13
14
14
Install with the npm:
15
15
16
- ``` shell
17
- $ npm install jira.js
16
+ ``` bash
17
+ npm install jira.js
18
18
```
19
19
20
20
Install with the yarn:
21
21
22
- ``` shell
23
- $ yarn add jira.js
22
+ ``` bash
23
+ yarn add jira.js
24
24
```
25
25
26
26
## Examples
@@ -82,8 +82,8 @@ const client = new Client({
82
82
host: ' https://jira.somehost.com' ,
83
83
authentication: {
84
84
jwt: {
85
- iss: ' id' ;
86
- secret: ' secret key' ;
85
+ iss: ' id' ,
86
+ secret: ' secret key'
87
87
}
88
88
}
89
89
});
@@ -111,6 +111,11 @@ Can't find what you need in the readme? Check out our documentation here: https:
111
111
112
112
## Changelog
113
113
114
+ ### 1.6.2
115
+
116
+ - FIX: Sprints added to client
117
+ - IMPROVEMENT: Dependencies updated
118
+
114
119
### 1.6.1
115
120
116
121
- FIX: Added the ability to use the library without authorization [ #75 ] ( https://github.com/MrRefactoring/jira.js/pull/75 )
@@ -135,7 +140,7 @@ Can't find what you need in the readme? Check out our documentation here: https:
135
140
- DEPRECATION: Method ` getIssueTypeScreenSchemes ` are deprecated in ` Screens `
136
141
- DEPRECATION: Method ` getIssueTypeScreenSchemeItems ` are deprecated in ` Screens `
137
142
- DEPRECATION: Method ` getIssueTypeScreenSchemesForProjects ` are deprecated in ` Screens `
138
- ---
143
+
139
144
### 1.5.0
140
145
141
146
- FEATURE: Method ` getAllFieldConfigurationSchemes ` added to ` IssueFieldConfigurations `
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jira.js" ,
3
- "version" : " 1.6.1 " ,
3
+ "version" : " 1.6.2 " ,
4
4
"main" : " out/index.js" ,
5
5
"types" : " out/index.d.ts" ,
6
6
"repository" : " https://github.com/MrRefactoring/jira.js.git" ,
26
26
"preset" : " ts-jest"
27
27
},
28
28
"devDependencies" : {
29
- "@types/jest" : " ^26.0.5 " ,
30
- "@types/node" : " ^14.0.24 " ,
31
- "@types/sinon" : " ^9.0.4 " ,
32
- "@typescript-eslint/eslint-plugin" : " ^3.7 .0" ,
33
- "@typescript-eslint/parser" : " ^3.7 .0" ,
34
- "eslint" : " ^7.5 .0" ,
35
- "eslint-import-resolver-typescript" : " ^2.0 .0" ,
29
+ "@types/jest" : " ^26.0.13 " ,
30
+ "@types/node" : " ^14.10.1 " ,
31
+ "@types/sinon" : " ^9.0.5 " ,
32
+ "@typescript-eslint/eslint-plugin" : " ^4.1 .0" ,
33
+ "@typescript-eslint/parser" : " ^4.1 .0" ,
34
+ "eslint" : " ^7.9 .0" ,
35
+ "eslint-import-resolver-typescript" : " ^2.3 .0" ,
36
36
"eslint-plugin-import" : " ^2.22.0" ,
37
- "jest" : " ^26.1.0 " ,
38
- "sinon" : " ^9.0.2 " ,
39
- "ts-jest" : " ^26.1.3 " ,
40
- "typedoc" : " ^0.17.8 " ,
41
- "typescript" : " ^3.9.7 "
37
+ "jest" : " ^26.4.2 " ,
38
+ "sinon" : " ^9.0.3 " ,
39
+ "ts-jest" : " ^26.3.0 " ,
40
+ "typedoc" : " ^0.19.1 " ,
41
+ "typescript" : " ^4.0.2 "
42
42
},
43
43
"dependencies" : {
44
44
"atlassian-jwt" : " https://github.com/MrRefactoring/atlassian-jwt.git#dist" ,
45
- "axios" : " ^0.19.2 "
45
+ "axios" : " ^0.20.0 "
46
46
}
47
47
}
Original file line number Diff line number Diff line change 1
- /* eslint-disable lines-between-class-members */
2
-
3
1
import { Callback } from './callback' ;
4
2
import { Config } from './config' ;
5
3
import { getAuthentication } from './helpers' ;
Original file line number Diff line number Diff line change 3
3
"target" : " ES5" ,
4
4
"outDir" : " out" ,
5
5
"lib" : [
6
- " ES2015"
6
+ " ES2015" ,
7
+ " DOM"
7
8
],
8
9
"declaration" : true ,
9
10
"strict" : true
You can’t perform that action at this time.
0 commit comments