@@ -11,7 +11,6 @@
- Silent error on favicon fetching
- Create Servapp step 1: make name / image required
- re-do mongoDB creation flow with a cosmos-compose request
-- Fix Mongo 6 compatibility issue
## Version 0.5.0
- Add Terminal to containers
@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
- "version": "0.5.7",
+ "version": "0.5.8",
"description": "",
"main": "test-server.js",
"bugs": {
@@ -27,7 +27,7 @@ func NewDB(w http.ResponseWriter, req *http.Request) (string, error) {
mongoPass := utils.GenerateRandomString(24)
monHost := "cosmos-mongo-" + id
- imageName := "mongo:latest"
+ imageName := "mongo:5"
// if CPU is missing AVX, use 4.4
if runtime.GOARCH == "amd64" && !cpu.X86.HasAVX {