From a515e4f3b23c11d19cc3250e0347a93e4888bcbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szo=C5=82tysek?= Date: Wed, 14 Jan 2026 09:15:52 +0100 Subject: [PATCH 1/3] [Prepare project] Removed fieldtype-richtext-rte opt-in package from Node 18 setup --- bin/4.6.x-dev/prepare_project_edition.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/4.6.x-dev/prepare_project_edition.sh b/bin/4.6.x-dev/prepare_project_edition.sh index a2925a76..f7551c48 100755 --- a/bin/4.6.x-dev/prepare_project_edition.sh +++ b/bin/4.6.x-dev/prepare_project_edition.sh @@ -118,7 +118,9 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then # ibexa/connector-qualifio is already being installed with the project docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/collaboration:$PROJECT_VERSION ibexa/share:$PROJECT_VERSION --no-scripts --ansi --no-update - docker exec install_dependencies composer require ibexa/fieldtype-richtext-rte:$PROJECT_VERSION --no-scripts --ansi --no-update + if [[ "$PHP_IMAGE" != "node-18" ]]; then + docker exec install_dependencies composer require ibexa/fieldtype-richtext-rte:$PROJECT_VERSION --no-scripts --ansi --no-update + fi docker exec install_dependencies composer require ibexa/product-catalog-date-time-attribute:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/product-catalog-symbol-attribute:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --no-scripts --ansi --no-update From 409f475b41aac121d3d1442fd75bc3066324806a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szo=C5=82tysek?= Date: Wed, 14 Jan 2026 09:33:11 +0100 Subject: [PATCH 2/3] fixup! [Prepare project] Removed fieldtype-richtext-rte opt-in package from Node 18 setup --- bin/4.6.x-dev/prepare_project_edition.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/4.6.x-dev/prepare_project_edition.sh b/bin/4.6.x-dev/prepare_project_edition.sh index f7551c48..00f99708 100755 --- a/bin/4.6.x-dev/prepare_project_edition.sh +++ b/bin/4.6.x-dev/prepare_project_edition.sh @@ -118,7 +118,7 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then # ibexa/connector-qualifio is already being installed with the project docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/collaboration:$PROJECT_VERSION ibexa/share:$PROJECT_VERSION --no-scripts --ansi --no-update - if [[ "$PHP_IMAGE" != "node-18" ]]; then + if [[ "$PHP_IMAGE" != *"node-18"* ]]; then docker exec install_dependencies composer require ibexa/fieldtype-richtext-rte:$PROJECT_VERSION --no-scripts --ansi --no-update fi docker exec install_dependencies composer require ibexa/product-catalog-date-time-attribute:$PROJECT_VERSION --no-scripts --ansi --no-update From 2a8a8cfc393494e0c8ac58321b7c7dfc055611de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szo=C5=82tysek?= Date: Wed, 14 Jan 2026 09:40:48 +0100 Subject: [PATCH 3/3] fixup! [Prepare project] Removed fieldtype-richtext-rte opt-in package from Node 18 setup --- bin/4.6.x-dev/prepare_project_edition.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/4.6.x-dev/prepare_project_edition.sh b/bin/4.6.x-dev/prepare_project_edition.sh index 00f99708..f5e9ea4f 100755 --- a/bin/4.6.x-dev/prepare_project_edition.sh +++ b/bin/4.6.x-dev/prepare_project_edition.sh @@ -118,7 +118,7 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then # ibexa/connector-qualifio is already being installed with the project docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/collaboration:$PROJECT_VERSION ibexa/share:$PROJECT_VERSION --no-scripts --ansi --no-update - if [[ "$PHP_IMAGE" != *"node-18"* ]]; then + if [[ "$PHP_IMAGE" != *"node18"* ]]; then docker exec install_dependencies composer require ibexa/fieldtype-richtext-rte:$PROJECT_VERSION --no-scripts --ansi --no-update fi docker exec install_dependencies composer require ibexa/product-catalog-date-time-attribute:$PROJECT_VERSION --no-scripts --ansi --no-update