Skip to content

Commit 9c60814

Browse files
[Sentry] fix pagination (#14727)
* fix pagination * bump versions
1 parent 6038154 commit 9c60814

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

components/sentry/actions/list-issue-events/list-issue-events.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "sentry-list-issue-events",
55
name: "List Issue Events",
66
description: "Return a list of events bound to an issue. [See the docs here](https://docs.sentry.io/api/events/list-an-issues-events/)",
7-
version: "0.1.0",
7+
version: "0.1.1",
88
type: "action",
99
props: {
1010
sentry,

components/sentry/actions/list-project-events/list-project-events.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import app from "../../sentry.app.mjs";
22

33
export default {
44
key: "sentry-list-project-events",
5-
version: "0.1.0",
5+
version: "0.1.1",
66
type: "action",
77
name: "List Project Events.",
88
description: "Return a list of events bound to a project. [See the docs here](https://docs.sentry.io/api/events/list-a-projects-events/)",

components/sentry/actions/list-project-issues/list-project-issues.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import app from "../../sentry.app.mjs";
22

33
export default {
44
key: "sentry-list-project-issues",
5-
version: "0.1.0",
5+
version: "0.1.1",
66
type: "action",
77
name: "List Project Issues.",
88
description: "Return a list of issues bound to a project. [See the docs here](https://docs.sentry.io/api/issues/list-a-projects-issues/)",

components/sentry/actions/update-issue/update-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import options from "../../options.mjs";
33

44
export default {
55
key: "sentry-update-issue",
6-
version: "0.1.0",
6+
version: "0.1.1",
77
type: "action",
88
name: "Update Issue.",
99
description: "Updates an individual issue's attributes. Only the attributes submitted are modified.[See the docs here](https://docs.sentry.io/api/events/update-an-issue/)",

components/sentry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/sentry",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "Pipedream Sentry Components",
55
"main": "sentry.app.js",
66
"keywords": [

components/sentry/sentry.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default {
172172
...requestConfig,
173173
params,
174174
};
175-
} else if (prevContext.nextPage) {
175+
} else if (String(prevContext.nextPage.results).toLowerCase() === "true") { // sentry returns this field as a string... so adding this in case they change it to a boolean
176176
// Retrieve next page of options.
177177
url = prevContext.nextPage.url;
178178
} else {

components/sentry/sources/issue-event/issue-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import sentry from "../../sentry.app.mjs";
22

33
export default {
44
key: "sentry-issue-event",
5-
version: "0.1.1",
5+
version: "0.1.2",
66
name: "New Issue Event (Instant)",
77
description: "Emit new events for issues that have been created or updated.",
88
type: "source",

0 commit comments

Comments
 (0)