Skip to content

Commit de9c851

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/form-data-enhancements
2 parents 104e8d1 + cfecdda commit de9c851

File tree

274 files changed

+5116
-8402
lines changed

Some content is hidden

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

274 files changed

+5116
-8402
lines changed

CHANGELOG.md

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

3+
## 5.2.2
4+
- Fixed url for `version2.issues.bulkFetchIssues`. Thanks @genio, for reporting.
5+
36
## 5.2.1
47

58
### Bug Fixes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const client = new Version3Client({
125125

126126
Errors are categorized as:
127127
- `HttpException`: Server responded with an error (includes parsed error details)
128-
- `AxiosError`: Network/configuration issues (e.g., timeouts)
128+
- `Error`: Network/configuration issues (e.g., timeouts)
129129

130130
**Example handling:**
131131

@@ -136,7 +136,7 @@ try {
136136
if (error instanceof HttpException) {
137137
console.error('Server error:', error.message);
138138
console.debug('Response headers:', error.cause.response?.headers);
139-
} else if (error instanceof AxiosError) {
139+
} else if (error instanceof Error) {
140140
console.error('Network error:', error.code);
141141
} else {
142142
console.error('Unexpected error:', error);

examples/.editorconfig

Lines changed: 0 additions & 11 deletions
This file was deleted.

examples/.gitignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/README.md

Lines changed: 0 additions & 79 deletions
This file was deleted.

0 commit comments

Comments
 (0)