Skip to content

Commit 0b30eb9

Browse files
authored
Upgrade Supabase JS Client (#14422)
* Upgrade `@supabase/supabase-js` for the `supabase` components * Fix version-specific import in the Supabase app component, which prevented importing `@pipedream/supabase` in code components * Bump component versions * Bump `@pipedream/supabase` patch version
1 parent 9ed1acb commit 0b30eb9

File tree

11 files changed

+68
-49
lines changed

11 files changed

+68
-49
lines changed

components/supabase/actions/delete-row/delete-row.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "supabase-delete-row",
55
name: "Delete Row",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Deletes row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/delete)",
99
props: {
1010
supabase,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "supabase-insert-row",
55
name: "Insert Row",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Inserts a new row into a database. [See the docs here](https://supabase.com/docs/reference/javascript/insert)",
99
props: {
1010
supabase,

components/supabase/actions/remote-procedure-call/remote-procedure-call.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "supabase-remote-procedure-call",
55
name: "Remote Procedure Call",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Call a Postgres function in a database. [See the docs here](https://supabase.com/docs/reference/javascript/rpc)",
99
props: {
1010
supabase,

components/supabase/actions/select-row/select-row.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "supabase-select-row",
66
name: "Select Row",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Selects row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/select)",
1010
props: {
1111
supabase,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "supabase-update-row",
55
name: "Update Row",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Updates row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/update)",
99
props: {
1010
supabase,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "supabase-upsert-row",
55
name: "Upsert Row",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Updates a row in a database or inserts new row if not found. [See the docs here](https://supabase.com/docs/reference/javascript/upsert)",
99
props: {
1010
supabase,

components/supabase/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/supabase",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Pipedream Supabase Components",
55
"main": "supabase.app.mjs",
66
"keywords": [
@@ -14,6 +14,6 @@
1414
},
1515
"dependencies": {
1616
"@pipedream/platform": "^1.2.1",
17-
"@supabase/supabase-js": "^2.39.0"
17+
"@supabase/supabase-js": "^2.45.6"
1818
}
1919
}

components/supabase/sources/new-row-added/new-row-added.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "supabase-new-row-added",
1010
name: "New Row Added",
1111
description: "Emit new event for every new row added in a table. [See documentation here](https://supabase.com/docs/reference/javascript/select)",
12-
version: "0.0.3",
12+
version: "0.0.4",
1313
type: "source",
1414
props: {
1515
...base.props,

components/supabase/sources/new-webhook-event/new-webhook-event.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "supabase-new-webhook-event",
66
name: "New Webhook Event (Instant)",
77
description: "Emit new event for every `insert`, `update`, or `delete` operation in a table. This source requires user configuration using the Supabase website. More information in the README. [Also see documentation here](https://supabase.com/docs/guides/database/webhooks#creating-a-webhook)",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
type: "source",
1010
props: {
1111
...base.props,

components/supabase/supabase.app.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createClient } from "@supabase/supabase-js@2.39.8";
1+
import { createClient } from "@supabase/supabase-js";
22
import constants from "./common/constants.mjs";
33

44
export default {

pnpm-lock.yaml

+57-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)