Skip to content

Commit e578ce4

Browse files
authored
Merge pull request #13 from supabase/chore/release-pg-v-3-0-0
chore: release pg 0.0.3
2 parents 03bdf24 + a28b4b0 commit e578ce4

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

.github/workflows/deploy-pg.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,17 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v4
21-
21+
2222
- name: Setup Node.js
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version: '18'
2626
registry-url: 'https://registry.npmjs.org'
27-
27+
2828
- name: Install dependencies
2929
run: yarn install --frozen-lockfile
30-
31-
- name: Build package
32-
run: cd packages/pg && yarn build
33-
30+
3431
- name: Publish to npm
3532
run: cd packages/pg && npm publish
3633
env:
37-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
34+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

packages/pg/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supabase/pg",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "PostgreSQL client - pure javascript & libpq with the same API",
55
"keywords": [
66
"database",
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"pg-connection-string": "^2.7.0",
2424
"pg-pool": "^3.8.0",
25-
"pg-protocol": "npm:@supabase/pg-protocol@^0.0.1",
25+
"pg-protocol": "npm:@supabase/pg-protocol@^0.0.2",
2626
"pg-types": "^2.1.0",
2727
"pgpass": "1.x"
2828
},

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -6167,10 +6167,10 @@ pg-protocol@^1.2.0, pg-protocol@^1.8.0:
61676167
resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.8.0.tgz#c707101dd07813868035a44571488e4b98639d48"
61686168
integrity sha512-jvuYlEkL03NRvOoyoRktBK7+qU5kOvlAwvmrH8sr3wbLrOdVWsRxQfz8mMy9sZFsqJ1hEWNfdWKI4SAmoL+j7g==
61696169

6170-
"pg-protocol@npm:@supabase/pg-protocol@^0.0.1":
6171-
version "0.0.1"
6172-
resolved "https://registry.yarnpkg.com/@supabase/pg-protocol/-/pg-protocol-0.0.1.tgz#ef7bb9f92db4961653f599217cf504149aa0d967"
6173-
integrity sha512-j/P+hc/dxp9djRxxCSxSae+H05mpSVCQyeRWsEXulQWv3u5aTpGV3E8qmNIiTHeQ7t2pQIYp2PIVr2DpRTad0A==
6170+
"pg-protocol@npm:@supabase/pg-protocol@^0.0.2":
6171+
version "0.0.2"
6172+
resolved "https://registry.yarnpkg.com/@supabase/pg-protocol/-/pg-protocol-0.0.2.tgz#95dd98022cc26bf6c80f6dda05181a2816ffc5ae"
6173+
integrity sha512-OLp5LeWRmfJy4vwV753hsCE90vzNSTSAwhsbinCIeoT455DHBufrkktVc4YvPXYEFj+EzpVKw/N0piX+AvBMBg==
61746174

61756175
pg-types@^2.1.0, pg-types@^2.2.0:
61766176
version "2.2.0"

0 commit comments

Comments
 (0)