Skip to content

Commit 74a59f0

Browse files
Merge branch 'release/v5.0.0' into feature/esm
2 parents 4449679 + a650eb1 commit 74a59f0

File tree

10 files changed

+893
-1153
lines changed

10 files changed

+893
-1153
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Jira.js changelog
22

3+
### 4.0.3
4+
5+
- **Bug Fix:** Fixed an issue with the `Users.createUser` method by adding the required `products` property. Thanks to [Appelberg-s](https://github.com/Appelberg-s) for the [fix](https://github.com/MrRefactoring/jira.js/commit/362918093c20036049db334743e2a0f5f41cbcd4#diff-6960050bc2a3d9ffad9eb5e307145969dc4a38eb5434eebf39da545fd18e01b7R12).
6+
- **Documentation Update:** Corrected an error in `README.md`. Thanks to [Maurice de Bruyn](https://github.com/ueberBrot) for the [contribution](https://github.com/MrRefactoring/jira.js/commit/fb6151e1a0c7953b9447aaaf99caea5c2f93bb96).
7+
- **Dependencies:** Updated all dependencies to their latest versions.
8+
39
### 4.0.2
410

511
- `getAllProjects` in README and examples replaced to `searchProjects`. Thanks to [Alexander Pivovarov](https://github.com/bladerunner2020) for reporting [the issue](https://github.com/MrRefactoring/jira.js/issues/323).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ If the original error is required, you can get it from the `cause` property of t
140140
try {
141141
const users = await this.client.userSearch.findUsers({ query: email });
142142
// ...
143-
} catch (error: uknown) {
143+
} catch (error: unknown) {
144144
if (error instanceof HttpException) {
145145
console.log(error.message);
146146
console.log(error.cause); // original error (AxiosError | Error)

assets/favicon.svg

+15
Loading

0 commit comments

Comments
 (0)