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.3.4
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.3.5
Choose a head ref
  • 3 commits
  • 7 files changed
  • 2 contributors

Commits on Jul 15, 2024

  1. docs(get-started): update generate types cmd (#389)

    onurusluca authored Jul 15, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    250282c View commit details
  2. fix(types): generate

    larbish committed Jul 15, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    671295a View commit details
  3. chore(release): release v1.3.5

    larbish committed Jul 15, 2024
    Copy the full SHA
    6235b5f View commit details
Showing with 214 additions and 239 deletions.
  1. +7 −0 CHANGELOG.md
  2. +2 −2 docs/content/2.get-started.md
  3. +8 −8 package.json
  4. +194 −223 pnpm-lock.yaml
  5. +1 −2 src/runtime/plugins/auth-redirect.ts
  6. +1 −3 src/runtime/plugins/supabase.client.ts
  7. +1 −1 tsconfig.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


## [1.3.5](https://github.com/nuxt-community/supabase-module/compare/v1.3.4...v1.3.5) (2024-07-15)


### Bug Fixes

* **types:** generate ([671295a](https://github.com/nuxt-community/supabase-module/commit/671295a3f8e1743384913f2940975c2e4217ff2e))

## [1.3.4](https://github.com/nuxt-community/supabase-module/compare/v1.3.3...v1.3.4) (2024-07-10)

## [1.3.3](https://github.com/nuxt-community/supabase-module/compare/v1.3.2...v1.3.3) (2024-07-10)
4 changes: 2 additions & 2 deletions docs/content/2.get-started.md
Original file line number Diff line number Diff line change
@@ -122,10 +122,10 @@ The path for the generated Supabase TypeScript definitions. The database definit
```bash
## Generate types from live database
supabase gen types typescript --project-id YourProjectId > types/database.types.ts
supabase gen types --lang=typescript --project-id YourProjectId > types/database.types.ts

## Generate types when using local environment
supabase gen types typescript --local > types/database.types.ts
supabase gen types --lang=typescript --local > types/database.types.ts
```
Set to `false` to disable.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/supabase",
"version": "1.3.4",
"version": "1.3.5",
"description": "Supabase module for Nuxt",
"repository": {
"type": "git",
@@ -30,23 +30,23 @@
"pre:release": "pnpm lint && release-it --preRelease"
},
"dependencies": {
"@nuxt/kit": "^3.12.3",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.2",
"@supabase/supabase-js": "^2.44.4",
"defu": "^6.1.4",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/eslint": "^0.3.13",
"@nuxt/module-builder": "^0.8.1",
"@nuxt/kit": "^3.12.3",
"@nuxt/schema": "^3.12.3",
"@nuxt/module-builder": "^0.8.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.14.9",
"@types/node": "^20.14.10",
"changelogen": "^0.5.5",
"eslint": "^9.6.0",
"eslint": "^9.7.0",
"nuxt": "^3.12.3",
"prettier": "^3.3.2",
"release-it": "^17.4.1",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"typescript": "^5.5.3"
},
"release-it": {
Loading