Skip to content

Commit 08e765e

Browse files
committed
1.6.2
1 parent 5b12920 commit 08e765e

File tree

7 files changed

+742
-550
lines changed

7 files changed

+742
-550
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"semi": "error",
2323
"eqeqeq": "error",
2424
"eol-last": "error",
25-
"lines-between-class-members": "error",
25+
"lines-between-class-members": "off",
2626
"no-trailing-spaces": "error",
2727
"indent": [
2828
"error",

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.idea
12
node_modules
23
out
34
docs

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ A JavaScript/TypeScript wrapper for the JIRA REST API
1313

1414
Install with the npm:
1515

16-
```shell
17-
$ npm install jira.js
16+
```bash
17+
npm install jira.js
1818
```
1919

2020
Install with the yarn:
2121

22-
```shell
23-
$ yarn add jira.js
22+
```bash
23+
yarn add jira.js
2424
```
2525

2626
## Examples
@@ -82,8 +82,8 @@ const client = new Client({
8282
host: 'https://jira.somehost.com',
8383
authentication: {
8484
jwt: {
85-
iss: 'id';
86-
secret: 'secret key';
85+
iss: 'id',
86+
secret: 'secret key'
8787
}
8888
}
8989
});
@@ -111,6 +111,11 @@ Can't find what you need in the readme? Check out our documentation here: https:
111111

112112
## Changelog
113113

114+
### 1.6.2
115+
116+
- FIX: Sprints added to client
117+
- IMPROVEMENT: Dependencies updated
118+
114119
### 1.6.1
115120

116121
- 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:
135140
- DEPRECATION: Method `getIssueTypeScreenSchemes` are deprecated in `Screens`
136141
- DEPRECATION: Method `getIssueTypeScreenSchemeItems` are deprecated in `Screens`
137142
- DEPRECATION: Method `getIssueTypeScreenSchemesForProjects` are deprecated in `Screens`
138-
---
143+
139144
### 1.5.0
140145

141146
- FEATURE: Method `getAllFieldConfigurationSchemes` added to `IssueFieldConfigurations`

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira.js",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"main": "out/index.js",
55
"types": "out/index.d.ts",
66
"repository": "https://github.com/MrRefactoring/jira.js.git",
@@ -26,22 +26,22 @@
2626
"preset": "ts-jest"
2727
},
2828
"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",
3636
"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"
4242
},
4343
"dependencies": {
4444
"atlassian-jwt": "https://github.com/MrRefactoring/atlassian-jwt.git#dist",
45-
"axios": "^0.19.2"
45+
"axios": "^0.20.0"
4646
}
4747
}

src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint-disable lines-between-class-members */
2-
31
import { Callback } from './callback';
42
import { Config } from './config';
53
import { getAuthentication } from './helpers';

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"target": "ES5",
44
"outDir": "out",
55
"lib": [
6-
"ES2015"
6+
"ES2015",
7+
"DOM"
78
],
89
"declaration": true,
910
"strict": true

0 commit comments

Comments
 (0)