Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "sentry-list-issue-events",
name: "List Issue Events",
description: "Return a list of events bound to an issue. [See the docs here](https://docs.sentry.io/api/events/list-an-issues-events/)",
version: "0.1.0",
version: "0.1.1",
type: "action",
props: {
sentry,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import app from "../../sentry.app.mjs";

export default {
key: "sentry-list-project-events",
version: "0.1.0",
version: "0.1.1",
type: "action",
name: "List Project Events.",
description: "Return a list of events bound to a project. [See the docs here](https://docs.sentry.io/api/events/list-a-projects-events/)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import app from "../../sentry.app.mjs";

export default {
key: "sentry-list-project-issues",
version: "0.1.0",
version: "0.1.1",
type: "action",
name: "List Project Issues.",
description: "Return a list of issues bound to a project. [See the docs here](https://docs.sentry.io/api/issues/list-a-projects-issues/)",
Expand Down
2 changes: 1 addition & 1 deletion components/sentry/actions/update-issue/update-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import options from "../../options.mjs";

export default {
key: "sentry-update-issue",
version: "0.1.0",
version: "0.1.1",
type: "action",
name: "Update Issue.",
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/)",
Expand Down
2 changes: 1 addition & 1 deletion components/sentry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/sentry",
"version": "0.4.1",
"version": "0.4.2",
"description": "Pipedream Sentry Components",
"main": "sentry.app.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion components/sentry/sentry.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default {
...requestConfig,
params,
};
} else if (prevContext.nextPage) {
} 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
// Retrieve next page of options.
url = prevContext.nextPage.url;
} else {
Expand Down
2 changes: 1 addition & 1 deletion components/sentry/sources/issue-event/issue-event.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sentry from "../../sentry.app.mjs";

export default {
key: "sentry-issue-event",
version: "0.1.1",
version: "0.1.2",
name: "New Issue Event (Instant)",
description: "Emit new events for issues that have been created or updated.",
type: "source",
Expand Down
Loading