From b837af4a28c0fae6ed5a97f142f2ab204dc3eee2 Mon Sep 17 00:00:00 2001 From: dekkku <161748598+dekkku@users.noreply.github.com> Date: Thu, 3 Apr 2025 00:09:11 +0530 Subject: [PATCH 1/4] fix(database): custom config for MongoDB (#5471) --- app/Actions/Database/StartMongodb.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Actions/Database/StartMongodb.php b/app/Actions/Database/StartMongodb.php index ff0233e62..a42f03eb5 100644 --- a/app/Actions/Database/StartMongodb.php +++ b/app/Actions/Database/StartMongodb.php @@ -181,6 +181,7 @@ class StartMongodb 'read_only' => true, ]] ); + $docker_compose['services'][$container_name]['command'] = ['mongod', '--config', '/etc/mongo/mongod.conf']; } $this->add_default_database(); From 30a45ad20251bafdbb33a1269ea42ade75f25db9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 2 Apr 2025 18:39:37 +0000 Subject: [PATCH 2/4] docs: update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 953c70b4f..5048597b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### 🐛 Bug Fixes + +- *(database)* Custom config for MongoDB (#5471) + +### 📚 Documentation + +- Update changelog + +## [4.0.0-beta.402] - 2025-04-01 + ### 🚀 Features - *(deployments)* Add list application deployments api route From 046b1dc97dca636295dfbaa43b60d19c9ebed12a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=8F=94=EF=B8=8F=20Peak?= <122374094+peaklabs-dev@users.noreply.github.com> Date: Wed, 2 Apr 2025 20:49:47 +0200 Subject: [PATCH 3/4] chore(versions): bump version to 403 (#5520) --- config/constants.php | 2 +- other/nightly/versions.json | 8 ++++---- versions.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config/constants.php b/config/constants.php index f35ae1635..fabc1ad85 100644 --- a/config/constants.php +++ b/config/constants.php @@ -2,7 +2,7 @@ return [ 'coolify' => [ - 'version' => '4.0.0-beta.402', + 'version' => '4.0.0-beta.403', 'helper_version' => '1.0.8', 'realtime_version' => '1.0.6', 'self_hosted' => env('SELF_HOSTED', true), diff --git a/other/nightly/versions.json b/other/nightly/versions.json index 1ad2d31cf..52d58882e 100644 --- a/other/nightly/versions.json +++ b/other/nightly/versions.json @@ -1,13 +1,13 @@ { "coolify": { "v4": { - "version": "4.0.0-beta.402" - }, - "nightly": { "version": "4.0.0-beta.403" }, + "nightly": { + "version": "4.0.0-beta.404" + }, "helper": { - "version": "1.0.7" + "version": "1.0.8" }, "realtime": { "version": "1.0.6" diff --git a/versions.json b/versions.json index 5758b46d0..52d58882e 100644 --- a/versions.json +++ b/versions.json @@ -1,10 +1,10 @@ { "coolify": { "v4": { - "version": "4.0.0-beta.402" + "version": "4.0.0-beta.403" }, "nightly": { - "version": "4.0.0-beta.403" + "version": "4.0.0-beta.404" }, "helper": { "version": "1.0.8" From da1272a30a8400fb54e80ac1c938329cd33f2ddc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 2 Apr 2025 18:50:13 +0000 Subject: [PATCH 4/4] docs: update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5048597b9..e695ebfd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ All notable changes to this project will be documented in this file. ### 📚 Documentation - Update changelog +- Update changelog + +### ⚙️ Miscellaneous Tasks + +- *(versions)* Bump version to 403 (#5520) ## [4.0.0-beta.402] - 2025-04-01