Skip to content

Commit

Permalink
CI: Release (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucythecat authored Aug 25, 2023
1 parent 1a5a95f commit 0b3091c
Show file tree
Hide file tree
Showing 25 changed files with 54 additions and 124 deletions.
6 changes: 0 additions & 6 deletions .auri/$4tvios4d.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$50cmkct.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$50cmkct2.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$50cmkcw.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$50cmkcw4.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$50cmkcwp.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$6qq2nr4z.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$90975ol0.md

This file was deleted.

7 changes: 0 additions & 7 deletions .auri/$9dl3rkfo.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$aydq7n8b.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$enb1f08l.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$gva98mzr.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$ixlmonvt.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$ncghazw5.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$rrtmh3vf.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$upyc164d.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$vviw6hwy.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$znnf49ht.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$znnf49htd.md

This file was deleted.

6 changes: 0 additions & 6 deletions .auri/$zr0k9t3z.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ An alternative way to verify emails is to use one-time passwords. These are gene
| ------- | -------- | :----: | ---------- | ------------------------------------- |
| id | any || | PRIMARY KEY |
| user_id | `string` || `user(id)` | User id |
| code | `string` | | | Verification code |
| code | `string` | | | Verification code |
| expires | `bigint` | | | `int4` and `timestamp` type works too |

## Generate and send verification code
Expand Down
6 changes: 6 additions & 0 deletions packages/adapter-postgresql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lucia-auth/adapter-postgresql

## 2.0.1

### Patch changes

- [#1031](https://github.com/pilcrowOnPaper/lucia/pull/1031) by [@kosei28](https://github.com/kosei28) : Fix release of connection for transaction in pg

## 2.0.0

### Major changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-postgresql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lucia-auth/adapter-postgresql",
"version": "2.0.0",
"version": "2.0.1",
"description": "PostgreSQL adapter for Lucia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
45 changes: 45 additions & 0 deletions packages/oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,57 @@
# @lucia-auth/oauth

## 3.0.0

### Major changes

- [#993](https://github.com/pilcrowOnPaper/lucia/pull/993) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Remove `generateState()` export

- [#993](https://github.com/pilcrowOnPaper/lucia/pull/993) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Replace `OAuthProvider` with `OAuth2ProviderAuth` and `OAuth2ProviderAuthWithPKCE`

- [#993](https://github.com/pilcrowOnPaper/lucia/pull/993) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Replace `GithubProvider` with `GithubAuth` etc

- [#1022](https://github.com/pilcrowOnPaper/lucia/pull/1022) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Rename `linkedin()`, type `LinkedinUser`, and type `LinkedinTokens` to `linkedIn()`, `LinkedInUser`, and `LinkedInTokens`

- [#1024](https://github.com/pilcrowOnPaper/lucia/pull/1024) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Update `auth0()`, `patreon()`, `reddit()`, `spotify()`, `twitch()` params

### Minor changes

- [#1011](https://github.com/pilcrowOnPaper/lucia/pull/1011) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Salesforce provider

- [#993](https://github.com/pilcrowOnPaper/lucia/pull/993) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Experimental API `createOAuth2AuthorizationUrl()`, `createOAuth2AuthorizationUrlWithPKCE()`, `validateOAuth2AuthorizationCode()`, and `decodeIdToken()` are now stable

- [#993](https://github.com/pilcrowOnPaper/lucia/pull/993) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Update `createOAuth2AuthorizationUrlWithPKCE()` return type

- [#1016](https://github.com/pilcrowOnPaper/lucia/pull/1016) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Box provider

- [#1005](https://github.com/pilcrowOnPaper/lucia/pull/1005) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Azure Active Directory provider

- [#1012](https://github.com/pilcrowOnPaper/lucia/pull/1012) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Atlassian provider

- [#1015](https://github.com/pilcrowOnPaper/lucia/pull/1015) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Line provider

- [#1013](https://github.com/pilcrowOnPaper/lucia/pull/1013) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Gitlab provider

- [#1017](https://github.com/pilcrowOnPaper/lucia/pull/1017) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Bitbucket provider

- [#993](https://github.com/pilcrowOnPaper/lucia/pull/993) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Remove `options.searchParams` and `options.state` from `createOAuth2AuthorizationUrl()` and `createOAuth2AuthorizationUrlWithPKCE()` params

- [#1011](https://github.com/pilcrowOnPaper/lucia/pull/1011) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add Slack provider

### Patch changes

- [#1024](https://github.com/pilcrowOnPaper/lucia/pull/1024) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add `global_name` and `avatar_decoration` fields in `DiscordUser` type

- [#1023](https://github.com/pilcrowOnPaper/lucia/pull/1023) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Fix `validateOAuth2AuthorizationCode()` sending malformed basic auth headers

## 2.2.0

### Minor changes

- [#990](https://github.com/pilcrowOnPaper/lucia/pull/990) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : Add `twitter()` provider (OAuth 2.0 with PKCE)

- [#983](https://github.com/pilcrowOnPaper/lucia/pull/983) by [@pilcrowOnPaper](https://github.com/pilcrowOnPaper) : `decodeIdToken()` throws `SyntaxError`

- Remove `IdTokenError`

### Patch changes
Expand Down
2 changes: 1 addition & 1 deletion packages/oauth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lucia-auth/oauth",
"version": "2.2.0",
"version": "3.0.0",
"description": "OAuth integration for Lucia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

1 comment on commit 0b3091c

@vercel
Copy link

@vercel vercel bot commented on 0b3091c Aug 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.