Skip to content

Commit

Permalink
CI: Release (#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucythecat committed Jul 5, 2023
1 parent 7bb9cac commit 7ed9911
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 28 deletions.
8 changes: 0 additions & 8 deletions .auri/$3s4lqgi3.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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.0-beta.5

### Minor changes

- [#782](https://github.com/pilcrowOnPaper/lucia/pull/782) by [@alexanderguy](https://github.com/alexanderguy) : Add adapter for `porsager/postgres`

## 2.0.0-beta.4

### Patch 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-beta.4",
"version": "2.0.0-beta.5",
"description": "PostgreSQL adapter for Lucia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/adapter-session-redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lucia-auth/adapter-session-redis

## 2.0.0-beta.5

### Minor changes

- [#699](https://github.com/pilcrowOnPaper/lucia/pull/699) by [@schweden1997](https://github.com/schweden1997) : Add Redis adapter for Upstash

## 2.0.0-beta.4

### Patch changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-session-redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lucia-auth/adapter-session-redis",
"version": "2.0.0-beta.4",
"version": "2.0.0-beta.5",
"description": "Redis session adapter for Lucia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/adapter-session-redis/src/drivers/upstash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const upstashSessionAdapter = (
userId
].join(":");
};

return {
getSession: async (sessionId) => {
const sessionData = await upstashClient.get(sessionKey(sessionId));
Expand All @@ -35,7 +35,7 @@ export const upstashSessionAdapter = (
if (sessionIds.length === 0) return [];
const pipeline = upstashClient.pipeline();
for (const sessionId of sessionIds) {
pipeline.get(sessionKey(sessionId))
pipeline.get(sessionKey(sessionId));
}
const sessions = await pipeline.exec<SessionSchema[]>();
return sessions;
Expand Down Expand Up @@ -64,7 +64,7 @@ export const upstashSessionAdapter = (
);
const pipeline = upstashClient.pipeline();
for (const sessionId of sessionIds) {
pipeline.del(sessionKey(sessionId))
pipeline.del(sessionKey(sessionId));
}
pipeline.del(userSessionsKey(userId));
await pipeline.exec();
Expand Down
6 changes: 6 additions & 0 deletions packages/adapter-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lucia-auth/adapter-sqlite

## 2.0.0-beta.5

### Minor changes

- [#680](https://github.com/pilcrowOnPaper/lucia/pull/680) by [@abdel-17](https://github.com/abdel-17) : Add libSQL adapter

## 2.0.0-beta.4

### Patch changes
Expand Down
3 changes: 1 addition & 2 deletions packages/adapter-sqlite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ Finally, run:
pnpm test.d1
```


### libSQL

```
pnpm test.libsql
```
```
2 changes: 1 addition & 1 deletion packages/adapter-sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lucia-auth/adapter-sqlite",
"version": "2.0.0-beta.4",
"version": "2.0.0-beta.5",
"description": "SQLite adapter for Lucia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

1 comment on commit 7ed9911

@vercel
Copy link

@vercel vercel bot commented on 7ed9911 Jul 5, 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.