Skip to content

Commit 972c4ca

Browse files
New API added (#264)
* Version 2 API updates * Build fixes * Updates * Partial updated models for Version 2 * Partial updated models for Version 2 * prettier updates * changelog updated * version 3 api added * propertyValue added * exports sorting * dependencies updated * docs improvements * prettier fixes * todo fixed
1 parent 36be8b3 commit 972c4ca

File tree

416 files changed

+4524
-2199
lines changed

Some content is hidden

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

416 files changed

+4524
-2199
lines changed

.eslintrc

+15-15
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,6 @@
2727
"max-len": "off",
2828
"no-trailing-spaces": "error",
2929
"no-underscore-dangle": "off",
30-
"sort-imports": [
31-
"error",
32-
{
33-
"ignoreCase": true,
34-
"ignoreDeclarationSort": false,
35-
"ignoreMemberSort": false,
36-
"memberSyntaxSortOrder": [
37-
"all",
38-
"single",
39-
"multiple",
40-
"none"
41-
],
42-
"allowSeparatedGroups": false
43-
}
44-
],
4530
"padding-line-between-statements": [
4631
"error",
4732
{
@@ -114,6 +99,21 @@
11499
"export"
115100
]
116101
}
102+
],
103+
"sort-imports": [
104+
"error",
105+
{
106+
"ignoreCase": true,
107+
"ignoreDeclarationSort": false,
108+
"ignoreMemberSort": false,
109+
"memberSyntaxSortOrder": [
110+
"all",
111+
"single",
112+
"multiple",
113+
"none"
114+
],
115+
"allowSeparatedGroups": false
116+
}
117117
]
118118
},
119119
"settings": {

.github/workflows/ci.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
name: CI
2-
3-
on: [push]
1+
name: ci
2+
on: push
43

54
jobs:
65
build:

CHANGELOG.md

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

3+
### 2.19.0
4+
5+
- Version 2, Version 3:
6+
- `jqlFunctionsApps` API added.
7+
- A lot of changes in Models.
8+
- A log of new API added.
9+
310
### 2.18.0
411

512
- Agile
613
- `Fields` model added for `Issue` Model.
714
- Version 3:
8-
- Support simple string body (comment) was added to `addComment` method of `issueComments` API.
15+
- Support simple string body (comment) was added to `addComment` method of `issueComments` API. Thanks to [Michael "Mike" Ferris](https://github.com/Cellule) for releasing feature.
916
- Version 2, Version 3:
1017
- `putAddonProperty` method fixed. Now you can provide property for set.
1118

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ Available groups:
343343
- [jiraExpressions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jira-expressions/#api-group-jira-expressions)
344344
- [jiraSettings](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jira-settings/#api-group-jira-settings)
345345
- [jql](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jql/#api-group-jql)
346+
- [jqlFunctionsApps](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jql-functions--apps-/#api-group-jql-functions--apps-)
346347
- [labels](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-labels/#api-group-labels)
347348
- [licenseMetrics](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-license-metrics/#api-group-license-metrics)
348349
- [myself](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-myself/#api-group-myself)
@@ -433,6 +434,7 @@ Available groups:
433434
- [jiraExpressions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-expressions/#api-group-jira-expressions)
434435
- [jiraSettings](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-settings/#api-group-jira-settings)
435436
- [jql](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jql/#api-group-jql)
437+
- [jqlFunctionsApps](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jql-functions--apps-/#api-group-jql-functions--apps-)
436438
- [labels](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-labels/#api-group-labels)
437439
- [licenseMetrics](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-license-metrics/#api-group-license-metrics)
438440
- [myself](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-myself/#api-group-myself)

0 commit comments

Comments
 (0)