[release] v0.7.0

This commit is contained in:
Yann Stepienik 2023-06-16 12:21:00 +01:00
parent 5f358b3fc4
commit 76b6c86b96
3 changed files with 7 additions and 4 deletions

View file

@ -1,8 +1,9 @@
## Version 0.7.0 ## Version 0.7.0
- Add Cosmos Market - Add Cosmos App Market!
- Reforged the DNS CHallenge to be more user friendly. You can select your DNS provider in a list, and it will guide you through the process with the right fields to set (directly in the UI). No more env variables to set! - Reforged the DNS CHallenge to be more user friendly. You can select your DNS provider in a list, and it will guide you through the process with the right fields to set (directly in the UI). No more env variables to set!
- Fix issue with docker compose timeout healthcheck as string, inverted ports, and supports for uid:gid syntax in user - Fix issue with docker compose timeout healthcheck as string, inverted ports, and supports for uid:gid syntax in user
- Fix for SELinux compatibility - Fix for SELinux compatibility
- Fix false-negative error message on login screen when SMTP is disabled
## Version 0.6.1 - 0.6.4 ## Version 0.6.1 - 0.6.4
- Workaround for Docker-compose race condition in Debian - Workaround for Docker-compose race condition in Debian

View file

@ -34,12 +34,14 @@ function restart() {
} }
function canSendEmail() { function canSendEmail() {
return wrap(fetch('/cosmos/api/can-send-email', { return fetch('/cosmos/api/can-send-email', {
method: 'GET', method: 'GET',
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
}, },
})) }).then((response) => {
return response.json();
});
} }
async function rawUpdateRoute(routeName: string, operation: Operation, newRoute?: Route): Promise<void> { async function rawUpdateRoute(routeName: string, operation: Operation, newRoute?: Route): Promise<void> {

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.7.0-unstable14", "version": "0.7.0",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {