Skip to content

#393 Fixing bulkFetchIssues link #395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Jira.js changelog

## 5.2.2
- Fixed url for `version2.issues.bulkFetchIssues`. Thanks @genio, for reporting.

## 5.2.1

### Bug Fixes
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jira.js",
"version": "5.2.1",
"version": "5.2.2",
"description": "A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.",
"repository": "https://github.com/MrRefactoring/jira.js.git",
"homepage": "https://mrrefactoring.github.io/jira.js",
Expand Down Expand Up @@ -116,33 +116,33 @@
"code:formatting": "pnpm run replace:all && pnpm run prettier && pnpm run lint:fix && pnpm run replace:fixCodeBlockSemicolons"
},
"dependencies": {
"axios": "^1.9.0",
"axios": "^1.10.0",
"mime": "^4.0.7",
"zod": "^3.25.63"
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@eslint/js": "^9.31.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^4.4.1",
"@types/node": "^20.19.0",
"@rollup/plugin-typescript": "^12.1.4",
"@stylistic/eslint-plugin": "^5.2.1",
"@types/node": "^20.19.9",
"@types/sinon": "^17.0.4",
"dotenv": "^16.5.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jiti": "^2.4.2",
"prettier": "^3.5.3",
"prettier-plugin-jsdoc": "^1.3.2",
"rollup": "^4.43.0",
"prettier": "^3.6.2",
"prettier-plugin-jsdoc": "^1.3.3",
"rollup": "^4.45.1",
"rollup-plugin-esnext-to-nodenext": "^1.0.1",
"rollup-plugin-node-externals": "^8.0.0",
"sinon": "^20.0.0",
"rollup-plugin-node-externals": "^8.0.1",
"sinon": "^21.0.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.5",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vitest": "^3.2.3"
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
}
}
Loading