Skip to content

Commit

Permalink
New API added (#264)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
MrRefactoring committed Jun 5, 2023
1 parent 36be8b3 commit 972c4ca
Show file tree
Hide file tree
Showing 416 changed files with 4,524 additions and 2,199 deletions.
30 changes: 15 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,6 @@
"max-len": "off",
"no-trailing-spaces": "error",
"no-underscore-dangle": "off",
"sort-imports": [
"error",
{
"ignoreCase": true,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"all",
"single",
"multiple",
"none"
],
"allowSeparatedGroups": false
}
],
"padding-line-between-statements": [
"error",
{
Expand Down Expand Up @@ -114,6 +99,21 @@
"export"
]
}
],
"sort-imports": [
"error",
{
"ignoreCase": true,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"all",
"single",
"multiple",
"none"
],
"allowSeparatedGroups": false
}
]
},
"settings": {
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: CI

on: [push]
name: ci
on: push

jobs:
build:
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# Jira.js changelog

### 2.19.0

- Version 2, Version 3:
- `jqlFunctionsApps` API added.
- A lot of changes in Models.
- A log of new API added.

### 2.18.0

- Agile
- `Fields` model added for `Issue` Model.
- Version 3:
- Support simple string body (comment) was added to `addComment` method of `issueComments` API.
- 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.
- Version 2, Version 3:
- `putAddonProperty` method fixed. Now you can provide property for set.

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ Available groups:
- [jiraExpressions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jira-expressions/#api-group-jira-expressions)
- [jiraSettings](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jira-settings/#api-group-jira-settings)
- [jql](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jql/#api-group-jql)
- [jqlFunctionsApps](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-jql-functions--apps-/#api-group-jql-functions--apps-)
- [labels](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-labels/#api-group-labels)
- [licenseMetrics](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-license-metrics/#api-group-license-metrics)
- [myself](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-myself/#api-group-myself)
Expand Down Expand Up @@ -433,6 +434,7 @@ Available groups:
- [jiraExpressions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-expressions/#api-group-jira-expressions)
- [jiraSettings](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-settings/#api-group-jira-settings)
- [jql](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jql/#api-group-jql)
- [jqlFunctionsApps](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jql-functions--apps-/#api-group-jql-functions--apps-)
- [labels](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-labels/#api-group-labels)
- [licenseMetrics](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-license-metrics/#api-group-license-metrics)
- [myself](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-myself/#api-group-myself)
Expand Down
Loading

0 comments on commit 972c4ca

Please sign in to comment.