Skip to content

Commit 9b23afd

Browse files
authored
Merging pull request #18240
1 parent 5ee1e8a commit 9b23afd

File tree

28 files changed

+86
-121
lines changed

28 files changed

+86
-121
lines changed

components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "jira-add-attachment-to-issue",
77
name: "Add Attachment To Issue",
88
description: "Adds an attachment to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)",
9-
version: "1.0.3",
9+
version: "1.0.4",
1010
type: "action",
1111
props: {
1212
jira,

components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "jira-add-comment-to-issue",
66
name: "Add Comment To Issue",
77
description: "Adds a new comment to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-post)",
8-
version: "0.1.11",
8+
version: "0.1.12",
99
type: "action",
1010
props: {
1111
jira,

components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "jira-add-multiple-attachments-to-issue",
77
name: "Add Multiple Attachments To Issue",
88
description: "Adds multiple attachments to an issue, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)",
9-
version: "1.0.3",
9+
version: "1.0.4",
1010
type: "action",
1111
props: {
1212
jira,

components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import jira from "../../jira.app.mjs";
33
export default {
44
key: "jira-add-watcher-to-issue",
55
name: "Add Watcher To Issue",
6-
version: "0.0.10",
6+
version: "0.0.11",
77
description: "Adds a user as a watcher of an issue by passing the account ID of the user, For example, `5b10ac8d82e05b22cc7d4ef5`, If no user is specified the calling user is added. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-watchers/#api-rest-api-3-issue-issueidorkey-watchers-post)",
88
type: "action",
99
props: {

components/jira/actions/assign-issue/assign-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import jira from "../../jira.app.mjs";
33
export default {
44
key: "jira-assign-issue",
55
name: "Assign Issue",
6-
version: "0.0.10",
6+
version: "0.0.11",
77
description: "Assigns an issue to a user. [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-assignee-put)",
88
type: "action",
99
props: {

components/jira/actions/common/issue.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,13 @@ export default {
5252
cloudId,
5353
} = this;
5454
const maxResults = 50;
55-
const { issues } = await app.getIssues({
55+
const { issues } = await app.searchIssues({
5656
cloudId,
5757
params: {
58+
jql: "project is not EMPTY ORDER BY created DESC",
5859
maxResults,
5960
startAt,
61+
fields: "id,key",
6062
},
6163
});
6264
return {

components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "jira-create-custom-field-options-context",
66
name: "Create Custom Field Options (Context)",
77
description: "Create a context for custom field options. [See the documentation here](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-custom-field-options/#api-rest-api-3-field-fieldid-context-contextid-option-post).",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
app,

components/jira/actions/create-issue/create-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "jira-create-issue",
88
name: "Create Issue",
99
description: "Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-issue-post)",
10-
version: "0.1.22",
10+
version: "0.1.23",
1111
type: "action",
1212
props: {
1313
...common.props,

components/jira/actions/create-version/create-version.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "jira-create-version",
55
name: "Create Jira Version in project",
66
description: "Creates a project version., [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-versions/#api-rest-api-3-version-post)",
7-
version: "0.1.11",
7+
version: "0.1.12",
88
type: "action",
99
props: {
1010
jira,

components/jira/actions/delete-project/delete-project.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "jira-delete-project",
55
name: "Delete Project",
66
description: "Deletes a project, [See the docs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-projects/#api-rest-api-3-project-projectidorkey-delete)",
7-
version: "0.1.11",
7+
version: "0.1.12",
88
type: "action",
99
props: {
1010
jira,

0 commit comments

Comments
 (0)