Skip to content

Commit

Permalink
chore: update versions (supabase#352)
Browse files Browse the repository at this point in the history
* chore: update versions

* chore: add cookie warning.

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: thorwebdev <[email protected]>
  • Loading branch information
3 people authored Nov 1, 2022
1 parent 999e57e commit 45ebc6a
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .changeset/sour-carrots-own.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @supabase/auth-helpers-nextjs

## 0.4.3

### Patch Changes

- Updated dependencies [999e57e]
- @supabase/auth-helpers-shared@0.2.2

## 0.4.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supabase/auth-helpers-nextjs",
"version": "0.4.2",
"version": "0.4.3",
"description": "A collection of framework specific Auth utilities for working with Supabase.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/remix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @supabase/auth-helpers-remix

## 0.1.1

### Patch Changes

- Updated dependencies [999e57e]
- @supabase/auth-helpers-shared@0.2.2

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/remix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supabase/auth-helpers-remix",
"version": "0.1.0",
"version": "0.1.1",
"description": "A collection of framework specific Auth utilities for working with Supabase.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
18 changes: 18 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# shared

## 0.2.2

### Patch Changes

- 999e57e: chore: reduce cookie size.

WARNING: this patch changes the structure of the `supabase-auth-token` cookie. It is patched in a backwards compatible manner as long as your application doesn't access the cookie directly. If your application accesses the cookie directly, you will need to update your application to support the new cookies structure:

```js
// The new shape of the `supabase-auth-token` cookie.
JSON.stringify([
session.access_token,
session.refresh_token,
session.provider_token,
session.provider_refresh_token
]);
```

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supabase/auth-helpers-shared",
"version": "0.2.1",
"version": "0.2.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/sveltekit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @supabase/auth-helpers-sveltekit

## 0.8.5

### Patch Changes

- Updated dependencies [999e57e]
- @supabase/auth-helpers-shared@0.2.2

## 0.8.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sveltekit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supabase/auth-helpers-sveltekit",
"version": "0.8.4",
"version": "0.8.5",
"description": "A collection of framework specific Auth utilities for working with Supabase.",
"type": "module",
"main": "./dist/index.js",
Expand Down

0 comments on commit 45ebc6a

Please sign in to comment.