From aa30792791890cccc66ef3956e71d7a7fd14fd15 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Tue, 21 Jul 2026 19:19:40 -0400 Subject: [PATCH] Address second round of Copilot review comments - CHANGELOG.md: rename the premature "10.2.5" heading to "Unreleased", matching the repo convention where the release commit assigns the version number (see 855d267 for 10.2.4). - docker-compose.yml: make the dev-stack Elasticsearch heap overridable via ES_JAVA_OPTS in .env (default unchanged at 2g), using the compose file's existing ${VAR:-default} idiom, for smaller machines. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 2 +- docker-compose.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bc2b39..577480f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 10.2.5 +## Unreleased ### New features diff --git a/docker-compose.yml b/docker-compose.yml index a57f7dbe..6dd1f646 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,8 @@ services: - xpack.license.self_generated.type=basic # Without an explicit heap, ES sizes it to 50% of host RAM and mlocks it # (bootstrap.memory_lock), which OOM-kills the container on large hosts. - - ES_JAVA_OPTS=-Xms2g -Xmx2g + # Override via ES_JAVA_OPTS in .env for smaller machines. + - ES_JAVA_OPTS=${ES_JAVA_OPTS:--Xms2g -Xmx2g} ports: - "127.0.0.1:9200:9200" ulimits: