Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/supabase
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.1
Choose a base ref
...
head repository: nuxt-modules/supabase
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.2
Choose a head ref
  • 4 commits
  • 8 files changed
  • 1 contributor

Commits on May 2, 2024

  1. chore(deps): upgrade

    larbish committed May 2, 2024

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    4179337 View commit details
  2. Copy the full SHA
    878dc5b View commit details
  3. fix(serverSupabaseSession): export service

    larbish committed May 2, 2024
    Copy the full SHA
    9cfeb87 View commit details
  4. chore(release): release v1.2.2

    larbish committed May 2, 2024
    Copy the full SHA
    04906aa View commit details
Showing with 7,989 additions and 6,996 deletions.
  1. +2 −2 .github/workflows/ci-dev.yml
  2. +2 −2 .github/workflows/ci.yml
  3. +7 −0 CHANGELOG.md
  4. +7 −7 package.json
  5. +6 −1 playground/server/api/test.ts
  6. +7,963 −6,984 pnpm-lock.yaml
  7. +1 −0 src/module.ts
  8. +1 −0 src/runtime/server/services/index.ts
4 changes: 2 additions & 2 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
@@ -15,13 +15,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # macos-latest, windows-latest
node: [18]
node: [20]

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -15,13 +15,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # macos-latest, windows-latest
node: [18]
node: [20]

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


## [1.2.2](https://github.com/nuxt-community/supabase-module/compare/v1.2.1...v1.2.2) (2024-05-02)


### Bug Fixes

* **serverSupabaseSession:** export service ([9cfeb87](https://github.com/nuxt-community/supabase-module/commit/9cfeb8726d562c5aac6fe1efa7dd1664bc39ed66))

## [1.2.1](https://github.com/nuxt-community/supabase-module/compare/v1.2.0...v1.2.1) (2024-04-18)

# [1.2.0](https://github.com/nuxt-community/supabase-module/compare/v1.1.7...v1.2.0) (2024-03-29)
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/supabase",
"version": "1.2.1",
"version": "1.2.2",
"description": "Supabase module for Nuxt",
"repository": "nuxt-community/supabase-module",
"license": "MIT",
@@ -27,20 +27,20 @@
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"@supabase/supabase-js": "2.42.4",
"@supabase/supabase-js": "2.43.0",
"defu": "^6.1.4",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/eslint": "^0.3.8",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/eslint": "^0.3.10",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.11.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.12.7",
"eslint": "^9.0.0",
"@types/node": "^20.12.8",
"eslint": "^9.1.1",
"nuxt": "^3.11.2",
"prettier": "^3.2.5",
"release-it": "^17.2.0",
"release-it": "^17.2.1",
"typescript": "^5.4.5"
},
"release-it": {
7 changes: 6 additions & 1 deletion playground/server/api/test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createError } from 'h3'
import { serverSupabaseClient, serverSupabaseUser } from '#supabase/server'
import { serverSupabaseClient, serverSupabaseUser, serverSupabaseSession } from '#supabase/server'

export default defineEventHandler(async (event) => {
const supabase = await serverSupabaseClient(event)
@@ -12,6 +12,11 @@ export default defineEventHandler(async (event) => {
throw createError({ statusCode: 404, statusMessage: 'User not found' })
}

const session = await serverSupabaseSession(event)
if (!session) {
throw createError({ statusCode: 401, statusMessage: 'Session not found' })
}

// const { data, error } = await supabase.from('test').select('*')
const { data, error } = await supabase.from('pushupers')
.select('firstname, lastname, avatar, email')
14,947 changes: 7,963 additions & 6,984 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/module.ts
Original file line number Diff line number Diff line change
@@ -197,6 +197,7 @@ export default defineNuxtModule<ModuleOptions>({
'./runtime/server/services',
)}').serverSupabaseServiceRole`,
` const serverSupabaseUser: typeof import('${resolve('./runtime/server/services')}').serverSupabaseUser`,
` const serverSupabaseSession: typeof import('${resolve('./runtime/server/services')}').serverSupabaseSession`,
'}',
].join('\n'),
})
1 change: 1 addition & 0 deletions src/runtime/server/services/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { serverSupabaseClient } from './serverSupabaseClient'
export { serverSupabaseServiceRole } from './serverSupabaseServiceRole'
export { serverSupabaseUser } from './serverSupabaseUser'
export { serverSupabaseSession } from './serverSupabaseSession'