From 1113669bfd3fe67afd0092d50d99649a6790124e Mon Sep 17 00:00:00 2001 From: DarkPhoenix2704 Date: Wed, 3 Jul 2024 17:09:25 +0530 Subject: [PATCH 1/2] chore: bump version --- templates/nocodb/docker-compose.yml | 2 +- templates/templates.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/nocodb/docker-compose.yml b/templates/nocodb/docker-compose.yml index 221b89416..60ecb57c7 100644 --- a/templates/nocodb/docker-compose.yml +++ b/templates/nocodb/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.8" services: nocodb: - image: nocodb/nocodb:0.251.0 + image: nocodb/nocodb:0.251.1 restart: always networks: - dokploy-network diff --git a/templates/templates.ts b/templates/templates.ts index a4b1a9958..0e54a1820 100644 --- a/templates/templates.ts +++ b/templates/templates.ts @@ -216,7 +216,7 @@ export const templates: TemplateData[] = [ { id: "nocodb", name: "NocoDB", - version: "0.251.0", + version: "0.251.1", description: "NocoDB is an opensource Airtable alternative that turns any MySQL, PostgreSQL, SQL Server, SQLite & MariaDB into a smart spreadsheet.", From 59d662396e6037026801579c2d1f52ab7c0351a3 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Thu, 4 Jul 2024 00:39:11 -0600 Subject: [PATCH 2/2] fix(git): set 22 port in git add host --- server/utils/providers/git.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/utils/providers/git.ts b/server/utils/providers/git.ts index 9c91ca19a..e49867e73 100644 --- a/server/utils/providers/git.ts +++ b/server/utils/providers/git.ts @@ -87,7 +87,6 @@ const addHostToKnownHosts = async (repositoryURL: string) => { throw error; } }; - const sanitizeRepoPathSSH = (input: string) => { const SSH_PATH_RE = new RegExp( [ @@ -113,7 +112,7 @@ const sanitizeRepoPathSSH = (input: string) => { return { user: found.groups?.user ?? "git", domain: found.groups?.domain, - port: Number(found.groups?.port ?? 22), + port: 22, owner: found.groups?.owner ?? "", repo: found.groups?.repo, get repoPath() {