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: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Jira.js changelog
2
2
3
+
### 2.7.0
4
+
5
+
- Version 2:
6
+
- JSDoc improvements.
7
+
-[`deleteCustomField`](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issue-fields/#api-rest-api-2-field-id-delete) method added to `IssueFields`.
8
+
-[`restoreCustomField`](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issue-fields/#api-rest-api-2-field-id-restore-post) method added to `IssueFields`.
9
+
-[`trashCustomField`](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issue-fields/#api-rest-api-2-field-id-trash-post) method added to `IssueFields`.
10
+
- Version 3:
11
+
-[`deleteCustomField`](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-rest-api-3-field-id-delete) method added to `IssueFields`.
12
+
-[`restoreCustomField`](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-rest-api-3-field-id-restore-post) method added to `IssueFields`.
13
+
-[`trashCustomField`](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-rest-api-3-field-id-trash-post) method added to `IssueFields`.
Copy file name to clipboardExpand all lines: package.json
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "jira.js",
3
-
"version": "2.6.3",
3
+
"version": "2.7.0",
4
4
"description": "jira.js is a powerful Node.JS/Browser module that allows you to interact with the Jira API very easily",
5
5
"main": "out/index.js",
6
6
"types": "out/index.d.ts",
@@ -16,7 +16,7 @@
16
16
],
17
17
"scripts": {
18
18
"build": "tsc",
19
-
"prepublishOnly": "npm run build && npm run test && npm run lint",
19
+
"prepublishOnly": "npm run build && npm run lint",
20
20
"prettier": "prettier --write src/**/*.ts",
21
21
"lint": "npm run lint:tests && npm run lint:src:agile && npm run lint:src:clients && npm run lint:src:services && npm run lint:src:version2 && npm run lint:src:version3 && npm run lint:src:files",
0 commit comments