[release] v0.14.4

This commit is contained in:
Yann Stepienik
2024-02-13 18:17:59 +00:00
parent efe6860f34
commit 14aa808b42
6 changed files with 8 additions and 25 deletions
+3
View File
@@ -1,3 +1,6 @@
## Version 0.14.4
- Fix issue with the volumes going read only
## Version 0.14.3
- Added app count to the marketplace
@@ -70,15 +70,6 @@ const NavItem = ({ item, level }) => {
transform: 'translateY(-5px)',
display: 'inline-block',
}}>Beta</span></>;
if(item.title === "Monitoring")
item.title = <>{item.title} <span style={{
color: 'gray',
fontSize: '11px',
textDecoration: 'italic',
transform: 'translateY(-5px)',
display: 'inline-block',
}}>New!</span></>;
return (
<ListItemButton
+1 -1
View File
@@ -87,7 +87,7 @@ const Migrate014 = ({ config }) => {
<li>You won't need all the cosmos-network anymore to connect to containers</li>
<li>You can see all your server's networking data in the monitoring tab (not just the docker data)</li>
<li>Docker-compose imported container will work out-of-the-box</li>
<li>Remove the docker overhead (small performance gain) and ensure Docker does not meddle with IP informations</li>
<li>Remove the docker overhead (small performance gain) and ensure Docker does not meddle with IP information</li>
<li>Faster boot time (no bootstrapping of containers needed)</li>
</ul>
Cosmos can automatically migrate to the host mode, but before you do so, please confirm what ports you want to use with Cosmos (default are 80/443).
@@ -2,27 +2,15 @@ import React from 'react';
import { Formik } from 'formik';
import { Button, Stack, Grid, MenuItem, TextField, IconButton, FormHelperText, CircularProgress, useTheme, Checkbox, Alert } from '@mui/material';
import MainCard from '../../../components/MainCard';
import { CosmosCheckbox, CosmosFormDivider, CosmosInputText, CosmosSelect }
from '../../config/users/formShortcuts';
import { ApiOutlined, CheckCircleOutlined, CloseCircleOutlined, DeleteOutlined, PlayCircleOutlined, PlusCircleOutlined } from '@ant-design/icons';
import { PlusCircleOutlined } from '@ant-design/icons';
import * as API from '../../../api';
import { LoadingButton } from '@mui/lab';
import PrettyTableView from '../../../components/tableView/prettyTableView';
import { NetworksColumns } from '../networks';
import NewNetworkButton from '../createNetwork';
import ResponsiveButton from '../../../components/responseiveButton';
const VolumeContainerSetup = ({ noCard, containerInfo, frozenVolumes = [], refresh, newContainer, OnChange }) => {
const restartPolicies = [
['no', 'No Restart'],
['always', 'Always Restart'],
['on-failure', 'Restart On Failure'],
['unless-stopped', 'Restart Unless Stopped'],
];
const [volumes, setVolumes] = React.useState([]);
const theme = useTheme();
const isDark = theme.palette.mode === 'dark';
React.useEffect(() => {
API.docker.volumeList().then((res) => {
@@ -89,7 +77,7 @@ const VolumeContainerSetup = ({ noCard, containerInfo, frozenVolumes = [], refre
Type: volume.Type,
Source: volume.Source,
Target: volume.Target,
ReadOnly: !volume.RW
ReadOnly: false // TODO: add support for this
}))
};
return API.docker.updateContainer(containerInfo.Name.replace('/', ''), realvalues)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.14.3",
"version": "0.14.4",
"description": "",
"main": "test-server.js",
"bugs": {
+1
View File
@@ -10,6 +10,7 @@
<a href="https://github.com/DGAzr"><img src="https://avatars.githubusercontent.com/DGAzr" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/eldergod1800"><img src="https://avatars.githubusercontent.com/eldergod1800" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/Fortcraft"><img src="https://avatars.githubusercontent.com/Fortcraft" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/Gordi90"><img src="https://avatars.githubusercontent.com/Gordi90" style="border-radius:48px" width="48" height="48" alt="Dér Kristóf Gordon" title="Dér Kristóf Gordon" /></a>
</p><!-- /sponsors -->
---