[release] v0.13.0-unstable9

This commit is contained in:
Yann Stepienik 2023-11-24 13:44:13 +00:00
parent 9085b2587c
commit eae11eb3ce
3 changed files with 8 additions and 7 deletions

View file

@ -1,15 +1,16 @@
## Version 0.13.0 ## Version 0.13.0
- Display containers as stacks - Display container stacks as a group in the UI
- New Delete modal to delete services entirely - New Delete modal to delete services entirely
- Upload custom icons to containers - Upload custom icons to containers
- improve backup file, by splitting cosmos out to a separate docker-compose.yml file - improve backup file, by splitting cosmos out to a separate docker-compose.yml file
- Cosmos-networks now have specific names instead for a generic names - Cosmos-networks now have specific names instead for generic names
- Fix issue where search bar reset when deleting volume/network - Fix issue where search bar reset when deleting volume/network
- Fix breadcrumbs in subpaths - Fix breadcrumbs in subpaths
- Remove graphs from non-admin UI to prevent errors - Remove graphs from non-admin UI to prevent errors
- Rewrite the overwriting container logic to fix race conditions - Rewrite the overwriting container logic to fix race conditions
- Edit container user and devices from UI - Edit container user and devices from UI
- Fix bug where Cosmos Constellation's UDP ports by a TCP one - Fix bug where Cosmos Constellation's UDP ports by a TCP one
- Fix a bug with URL screen, where you can't delete a URL when there is a search
- Support array command and single device in docker-compose import - Support array command and single device in docker-compose import
- Add default alerts... by default (was missing from the default config) - Add default alerts... by default (was missing from the default config)
- disable few features liks Constellation, Backup and Monitoring when in install mode to reduce logs and prevent issues with the DB - disable few features liks Constellation, Backup and Monitoring when in install mode to reduce logs and prevent issues with the DB

View file

@ -206,10 +206,10 @@ const ProxyManagement = () => {
style: {minWidth: '70px'} }, style: {minWidth: '70px'} },
{ title: '', clickable:true, field: (r, k) => <RouteActions { title: '', clickable:true, field: (r, k) => <RouteActions
route={r} route={r}
routeKey={k} routeKey={routes.indexOf(r)}
up={(event) => up(event, k)} up={(event) => up(event, routes.indexOf(r))}
down={(event) => down(event, k)} down={(event) => down(event, routes.indexOf(r))}
deleteRoute={(event) => deleteRoute(event, k)} deleteRoute={(event) => deleteRoute(event, routes.indexOf(r))}
/>, />,
style: { style: {
textAlign: 'right', textAlign: 'right',

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.13.0-unstable8", "version": "0.13.0-unstable9",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {