Skip to content

Commit 1d467fc

Browse files
committed
v5.2.1
1 parent eec7e78 commit 1d467fc

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

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

3+
## 5.2.1
4+
5+
### Bug Fixes
6+
- **Removed `~` alias** due to compatibility issues with some build systems. Thanks @ThomasTrepanier, for reporting.
7+
38
## 5.2.0
49

510
### Build & Distribution Improvements

eslint.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ export default defineConfig([
4747
prefer: 'type-imports',
4848
fixStyle: 'separate-type-imports',
4949
},
50-
], // todo fix it
51-
'@typescript-eslint/no-empty-object-type': 'off', // todo fix it
52-
'@typescript-eslint/no-redundant-type-constituents': 'off', // todo fix it
53-
'@typescript-eslint/no-unnecessary-condition': 'error', // todo fix it
54-
'@typescript-eslint/no-unsafe-argument': 'off', // todo fix it
50+
],
51+
'@typescript-eslint/no-empty-object-type': 'off',
52+
'@typescript-eslint/no-redundant-type-constituents': 'off',
53+
'@typescript-eslint/no-unnecessary-condition': 'error',
54+
'@typescript-eslint/no-unsafe-argument': 'off',
5555
'@typescript-eslint/no-unsafe-assignment': 'off',
5656
'@typescript-eslint/no-unsafe-call': 'off',
5757
'@typescript-eslint/no-unsafe-member-access': 'off',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira.js",
3-
"version": "5.2.0",
3+
"version": "5.2.1",
44
"description": "A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.",
55
"repository": "https://github.com/MrRefactoring/jira.js.git",
66
"homepage": "https://mrrefactoring.github.io/jira.js",

0 commit comments

Comments
 (0)