Skip to content

Commit

Permalink
Version 2.0.0 (#76)
Browse files Browse the repository at this point in the history
* ver. 2.0.0 (iter 1)

* ver. 2.0.0 (iter 2)

* models for v2, v3, agile

* stashing

* ver. 2.0.0 (iter 5)

* .idea folder removed

* ver. 2.0.0 (iter 6)

* ver. 2.0.0 (iter 7)

* ver. 2.0.0 (iter 8)

* ver 2.0.0 (iter 9)

* ver. 2.0.0 (iter 10)

* manual issues fix

* manual errors fix

* travis CI replaced to github CI

* build fixes

* node 8 removed from support list

* tests added

* lint fix

* all authentication implementations added

* build fix

* jwt and oauth test stubs added

* tests added

* api tests added

* adding tests folder to linter

* basic tests added

* build fix

* README reset

* header align set to center

* logo changed from text to img

* build badge changed

* logo changed

* dependencies update

* endpoint jsdoc added for agile

* endpoint jsdoc added for version2

* dependencies updates

* jsdoc added for version3

* build fix

* typo fixed

* comment body type fixed

* improvements

* tests fixed

* basic authentication readme added

* readme updated

* record<string, any> replaced

* T = any to T = unknown replaced

* telemetry client added

* changelog updated

Co-authored-by: Vladislav Tupikin <vladislav_tupikin@MacBook-Pro-Vladislav.local>
  • Loading branch information
MrRefactoring and Vladislav Tupikin committed Mar 2, 2021
1 parent a067cf8 commit 9e41bae
Show file tree
Hide file tree
Showing 2,046 changed files with 57,926 additions and 15,696 deletions.
13 changes: 6 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json"
"project": "./tsconfig.tests.json"
},
"plugins": [
"import"
Expand All @@ -18,12 +18,12 @@
},
"rules": {
"@typescript-eslint/lines-between-class-members": "off",
"max-len": "off",
"class-methods-use-this": "off",
"import/prefer-default-export": "off",
"import/no-cycle": "off",
"no-underscore-dangle": "off",
"lines-between-class-members": [
"error",
"always"
],
"lines-between-class-members": "off",
"padding-line-between-statements": [
"error",
{
Expand Down Expand Up @@ -101,8 +101,7 @@
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
".ts"
]
}
}
Expand Down
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
.idea
node_modules
out
docs
coverage
.idea/
.vscode/
node_modules/
out/
docs/
coverage/

yarn.lock
yarn-error.log
.DS_Store
7 changes: 6 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ node_modules
docs
tests
coverage
.github
.idea

.eslintrc
.editorconfig
.github
.DS_Store
yarn.lock
yarn-error.log
tsconfig.tests.json
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Jira.js changelog

### 2.0.0

- One client divided to three: [Agile](https://developer.atlassian.com/cloud/jira/software/rest/intro/), [Version2](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/), [Version3](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/)
- Improved type system
- A redesigned facade and internal structure of the project
- Added telemetry

## Previous major version:

<details>

### 1.8.0

- Authentication: Added [OAuth 1.0](https://developer.atlassian.com/server/jira/platform/oauth/) authentication method
Expand Down Expand Up @@ -147,3 +158,5 @@
### 1.0.0

- RELEASE

</details>
Loading

0 comments on commit 9e41bae

Please sign in to comment.