Skip to content

Commit f7db623

Browse files
committed
updating changelog
1 parent 584f996 commit f7db623

File tree

4 files changed

+18
-19
lines changed

4 files changed

+18
-19
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ PHRASEANET_MAINTENANCE=0
258258
# Example :
259259
# PHRASEANET_MAINTENANCE_MESSAGE="<p>Under&#32;maintenance!</p><p>More&#32;information&#32;<a href=\"https://www.yoururl.fr\">here</a></p>"
260260
# @run
261-
PHRASEANET_MAINTENANCE_MESSAGE="Site: $PHRASEANET_PROJECT_NAME are under Maintenance ! Sorry, come back Later"
261+
PHRASEANET_MAINTENANCE_MESSAGE=
262262

263263
# --- RabbitMQ settings ------------------------------------------------------------------------------------------------
264264

CHANGELOG.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,25 @@
1313
1414
### Stack (Docker Compose and Helm)
1515
16-
- RabbitMQ image version can be set in .env and bumped to 4.1.0
17-
- Introducing a stack_management script for Linux and Macos performing a clean stop of db container
16+
- The RabbitMQ image version can be set in the .env file and updated to 4.1.0-management.
17+
- Introducing a stack_management script, a shortcut for the stack only for Linux and macOS hosts.
18+
- The Minimum required Docker and Docker compose version are now `docker >=27.3.1` and `compose >= 2.30.3`
19+
- Defining Elasticsearch ulimits.
1820
1921
### Version Summary
20-
21-
To do
22-
22+
23+
- New API routes for retrieving a story from records.
24+
- Bug fix on story title.
25+
- ImageMagick policies are applied in the fpm container
26+
2327
## What's Changed
24-
25-
* PHRAS-4151_stories-reference-in-api by @jygaulier in https://github.com/alchemy-fr/Phraseanet/pull/4602
26-
* PHRAS-4153: Rabbitmq : Update rabbitmq to 4.1.0 to fix CVE-2025-32433 by @aynsix in https://github.com/alchemy-fr/Phraseanet/pull/4601
28+
* PHRAS-4151_stories-reference-in-api by @jygaulier in https://github.com/alchemy-fr/Phraseanet/pull/4602
29+
* PHRAS-4153: Rabbitmq : Update rabbitmq to 4.1.0 to fix CVE-2025-32433 by @aynsix in https://github.com/alchemy-fr/Phraseanet/pull/4601
30+
* PHRAS-4154 imageMagick policies management in FPM container by @nmaillat in https://github.com/alchemy-fr/Phraseanet/pull/4604
31+
* PHRAS-4156 Redis image tag from env and others docker stacks fix by @nmaillat in https://github.com/alchemy-fr/Phraseanet/pull/4608
32+
* PHRAS-4157 Add Elasticsearch ulimits inside docker-compose.datastores.yml by @gjacobjn in https://github.com/alchemy-fr/Phraseanet/pull/4612
33+
* PHRAS-4158: Prod - Story -Story title is Nok when is not thumbtitle="1" by @aynsix in https://github.com/alchemy-fr/Phraseanet/pull/4614
34+
* PHRAS-4149 stack management by @nmaillat in https://github.com/alchemy-fr/Phraseanet/pull/4615
2735
2836
2937
**Full Changelog**: https://github.com/alchemy-fr/Phraseanet/compare/4.1.18...4.1.19

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,6 @@ this script work only Linux and MacOS.
211211

212212
This script wrapping standard oprations for the stack, using standard docker compose cmd and take in account `.env` and `env.local | .env.local` files.
213213

214-
215-
The `stop` operation is the most critical function of the script, as it ensures a clean shutdown
216-
of the database container before stopping the entire stack.
217-
218214
This script is useful if you are using the database container within the stack.
219215

220216
see more here ![stack](doc/infra/compose/stack.md)

stack.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,9 @@ start_stack() {
166166

167167
# Function to stop the Docker stack
168168
stop_stack() {
169-
echo "Stopping the MySQL server in the db container..."
170-
# Execute the mysqladmin command inside the container where the environment variable is defined
171-
$DOCKER_COMPOSE_CMD exec db sh -c '/usr/bin/mysqladmin -uroot -p"$MYSQL_ROOT_PASSWORD" shutdown'
172-
echo
173-
174169
echo "Stopping the Docker stack..."
175170
local env_files=($(get_env_files))
176-
$DOCKER_COMPOSE_CMD "${env_files[@]/#/--env-file=}" down
171+
$DOCKER_COMPOSE_CMD down
177172
}
178173

179174
# Function rabbimq queue information

0 commit comments

Comments
 (0)