chore: version++

This commit is contained in:
Andras Bacsai 2022-08-31 15:02:36 +02:00
parent 40e8dd4a8d
commit b239d21961
2 changed files with 6 additions and 3 deletions

View File

@ -21,7 +21,7 @@ import { scheduler } from './scheduler';
import { supportedServiceTypesAndVersions } from './services/supportedVersions';
import { includeServices } from './services/common';
export const version = '3.8.8';
export const version = '3.9.0';
export const isDev = process.env.NODE_ENV === 'development';
const algorithm = 'aes-256-ctr';
@ -45,7 +45,7 @@ export function getAPIUrl() {
if (process.env.CODESANDBOX_HOST) {
return `https://${process.env.CODESANDBOX_HOST.replace(/\$PORT/, '3001')}`
}
return isDev ? 'http://localhost:3001' : 'http://localhost:3000';
return isDev ? 'http://host.docker.internal:3001' : 'http://localhost:3000';
}
export function getUIUrl() {
@ -1309,6 +1309,9 @@ export function saveUpdateableFields(type: string, data: any) {
temp = Boolean(temp)
}
}
if (k.isNumber && temp === '') {
temp = null
}
update[k.name] = temp
});
}

View File

@ -1,7 +1,7 @@
{
"name": "coolify",
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
"version": "3.8.8",
"version": "3.9.0",
"license": "Apache-2.0",
"repository": "github:coollabsio/coolify",
"scripts": {