Skip to content

Commit 5fcc767

Browse files
bump versions
1 parent 04c87d8 commit 5fcc767

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

components/postgresql/actions/delete-rows/delete-rows.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Delete Row(s)",
55
key: "postgresql-delete-rows",
66
description: "Deletes a row or rows from a table. [See the documentation](https://node-postgres.com/features/queries)",
7-
version: "2.0.6",
7+
version: "2.0.7",
88
type: "action",
99
props: {
1010
postgresql,

components/postgresql/actions/execute-custom-query/execute-custom-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Execute SQL Query",
55
key: "postgresql-execute-custom-query",
66
description: "Execute a custom PostgreSQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.",
7-
version: "3.0.1",
7+
version: "3.0.2",
88
type: "action",
99
props: {
1010
postgresql,

components/postgresql/actions/find-row-custom-query/find-row-custom-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Find Row With Custom Query",
55
key: "postgresql-find-row-custom-query",
66
description: "Finds a row in a table via a custom query. [See the documentation](https://node-postgres.com/features/queries)",
7-
version: "2.0.6",
7+
version: "2.0.7",
88
type: "action",
99
props: {
1010
postgresql,

components/postgresql/actions/find-row/find-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Find Row",
55
key: "postgresql-find-row",
66
description: "Finds a row in a table via a lookup column. [See the documentation](https://node-postgres.com/features/queries)",
7-
version: "2.0.6",
7+
version: "2.0.7",
88
type: "action",
99
props: {
1010
postgresql,

components/postgresql/actions/insert-row/insert-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Insert Row",
55
key: "postgresql-insert-row",
66
description: "Adds a new row. [See the documentation](https://node-postgres.com/features/queries)",
7-
version: "2.0.6",
7+
version: "2.0.7",
88
type: "action",
99
props: {
1010
postgresql,

components/postgresql/actions/update-row/update-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Update Row",
55
key: "postgresql-update-row",
66
description: "Updates an existing row. [See the documentation](https://node-postgres.com/features/queries)",
7-
version: "2.0.6",
7+
version: "2.0.7",
88
type: "action",
99
props: {
1010
postgresql,

components/postgresql/actions/upsert-row/upsert-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Upsert Row",
66
key: "postgresql-upsert-row",
77
description: "Adds a new row or updates an existing row. [See the documentation](https://node-postgres.com/features/queries)",
8-
version: "2.0.6",
8+
version: "2.0.7",
99
type: "action",
1010
props: {
1111
postgresql,

components/postgresql/sources/new-column/new-column.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "New Column",
66
key: "postgresql-new-column",
77
description: "Emit new event when a new column is added to a table. [See the documentation](https://node-postgres.com/features/queries)",
8-
version: "2.0.6",
8+
version: "2.0.7",
99
type: "source",
1010
props: {
1111
...common.props,

components/postgresql/sources/new-or-updated-row/new-or-updated-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "New or Updated Row",
66
key: "postgresql-new-or-updated-row",
77
description: "Emit new event when a row is added or modified. [See the documentation](https://node-postgres.com/features/queries)",
8-
version: "2.0.6",
8+
version: "2.0.7",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

components/postgresql/sources/new-row-custom-query/new-row-custom-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "New Row Custom Query",
66
key: "postgresql-new-row-custom-query",
77
description: "Emit new event when new rows are returned from a custom query that you provide. [See the documentation](https://node-postgres.com/features/queries)",
8-
version: "2.0.6",
8+
version: "2.0.7",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

0 commit comments

Comments
 (0)