From 8eb897f0ca388201c736b2555c972896e7fb7a7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 02:05:06 +0000 Subject: [PATCH 1/4] Bump follow-redirects from 1.15.3 to 1.15.4 Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.4. - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.3...v1.15.4) --- updated-dependencies: - dependency-name: follow-redirects dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index b24830a3..fd76871f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4646,9 +4646,9 @@ flatted@^3.2.9: integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== follow-redirects@^1.15.2: - version "1.15.3" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" - integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== + version "1.15.4" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf" + integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw== for-each@^0.3.3: version "0.3.3" From 7a77c82ca11d0a6fd856d06f57ea138da5e78723 Mon Sep 17 00:00:00 2001 From: Spencer Tweedy Date: Mon, 15 Jan 2024 12:49:12 -0600 Subject: [PATCH 2/4] Update schema.prisma fix pgbouncer to supavisor migration issue --- db/postgresql/schema.prisma | 1 + 1 file changed, 1 insertion(+) diff --git a/db/postgresql/schema.prisma b/db/postgresql/schema.prisma index d7a70ab0..336e8f50 100644 --- a/db/postgresql/schema.prisma +++ b/db/postgresql/schema.prisma @@ -5,6 +5,7 @@ generator client { datasource db { provider = "postgresql" url = env("DATABASE_URL") + directUrl = env("DIRECT_URL") // plain connection with no pgBouncer (used for push & migrations) relationMode = "prisma" } From 5df49e92734a3630d31262c69c8710d4886b646f Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 16 Jan 2024 10:48:26 -0800 Subject: [PATCH 3/4] prevent column overflow --- src/app/(main)/settings/users/UsersTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(main)/settings/users/UsersTable.tsx b/src/app/(main)/settings/users/UsersTable.tsx index 2b840b64..4eb7fbb6 100644 --- a/src/app/(main)/settings/users/UsersTable.tsx +++ b/src/app/(main)/settings/users/UsersTable.tsx @@ -21,7 +21,7 @@ export function UsersTable({ data = [] }: { data: any[] }) { ) } - + {row => formatDistance(new Date(row.createdAt), new Date(), { addSuffix: true, From 625bd90d451249d3cda6a8bae8dd191ff46c48dc Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 16 Jan 2024 12:47:33 -0800 Subject: [PATCH 4/4] Revert "Update schema.prisma" This reverts commit 7a77c82ca11d0a6fd856d06f57ea138da5e78723. --- db/postgresql/schema.prisma | 1 - 1 file changed, 1 deletion(-) diff --git a/db/postgresql/schema.prisma b/db/postgresql/schema.prisma index 336e8f50..d7a70ab0 100644 --- a/db/postgresql/schema.prisma +++ b/db/postgresql/schema.prisma @@ -5,7 +5,6 @@ generator client { datasource db { provider = "postgresql" url = env("DATABASE_URL") - directUrl = env("DIRECT_URL") // plain connection with no pgBouncer (used for push & migrations) relationMode = "prisma" }