Compare commits

...

1 commit

Author SHA1 Message Date
Yann Stepienik 7a3fdfb467 [release] v0.13.1 2023-11-28 10:15:24 +00:00
4 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,6 @@
## Version 0.13.1
- Fix a security issue with token (thansk @vncloudsco)
## Version 0.13.0 ## Version 0.13.0
- Display container stacks as a group in the UI - Display container stacks as a group in the UI
- New Delete modal to delete services entirely - New Delete modal to delete services entirely

View file

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

View file

@ -12,6 +12,7 @@
<a href="https://github.com/owengraven"><img src="https://avatars.githubusercontent.com/owengraven" style="border-radius:48px" width="48" height="48" alt="Owen" title="Owen" /></a> <a href="https://github.com/owengraven"><img src="https://avatars.githubusercontent.com/owengraven" style="border-radius:48px" width="48" height="48" alt="Owen" title="Owen" /></a>
<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/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/LostPoE"><img src="https://avatars.githubusercontent.com/LostPoE" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a> <a href="https://github.com/LostPoE"><img src="https://avatars.githubusercontent.com/LostPoE" 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/Dimtar"><img src="https://avatars.githubusercontent.com/Dimtar" style="border-radius:48px" width="48" height="48" alt="Daniel C" title="Daniel C" /></a> <a href="https://github.com/Dimtar"><img src="https://avatars.githubusercontent.com/Dimtar" style="border-radius:48px" width="48" height="48" alt="Daniel C" title="Daniel C" /></a>
</p><!-- /sponsors --> </p><!-- /sponsors -->

View file

@ -91,7 +91,7 @@ func UserRegister(w http.ResponseWriter, req *http.Request) {
"RegisterKeyExp": time.Time{}, "RegisterKeyExp": time.Time{},
"RegisteredAt": RegisteredAt, "RegisteredAt": RegisteredAt,
"LastPasswordChangedAt": time.Now(), "LastPasswordChangedAt": time.Now(),
"PassowrdCycle": user.PasswordCycle + 1, "PasswordCycle": user.PasswordCycle + 1,
}, },
}) })