You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+49Lines changed: 49 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Usability, consistency, and performance are key focuses of jira.js, and it also
19
19
20
20
-[Installation](#installation)
21
21
-[Documentation](#documentation)
22
+
-[Deprecation warnings](#deprecation-warnings)
22
23
-[Usage](#usage)
23
24
-[Authentication](#authentication)
24
25
-[Basic](#basic-authentication)
@@ -51,6 +52,54 @@ yarn add jira.js
51
52
52
53
You can find the documentation [here](https://mrrefactoring.github.io/jira.js/).
53
54
55
+
## Deprecation warnings
56
+
57
+
1. Deprecation warning: New error handling mechanism added. Please use `newErrorHandling: true` in config
58
+
> We are using a new error handling mechanism (instead throwing raw axios error will be showed API response). For enable it, make following changes in your config:
59
+
> ```ts
60
+
>const client =newVersion3Client({
61
+
> host: '...',
62
+
> newErrorHandling: true, // This flag enable new error handling.
0 commit comments