From 61ce45ce7c42dfd70f5cfa9c119d198847151e1d Mon Sep 17 00:00:00 2001 From: katarzynazawada Date: Thu, 23 Apr 2026 08:54:35 +0200 Subject: [PATCH 1/4] IBX-11657: Added connector-quable to CI --- bin/5.0.x-dev/prepare_project_edition.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/5.0.x-dev/prepare_project_edition.sh b/bin/5.0.x-dev/prepare_project_edition.sh index 5a6ce65..b644c45 100755 --- a/bin/5.0.x-dev/prepare_project_edition.sh +++ b/bin/5.0.x-dev/prepare_project_edition.sh @@ -119,6 +119,11 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then docker exec install_dependencies composer require ibexa/connector-gemini:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --no-scripts --ansi --no-update + + if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then + docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update + fi + fi if [[ "$PROJECT_EDITION" == "commerce" ]]; then docker exec install_dependencies composer require ibexa/shopping-list:$PROJECT_VERSION --no-scripts --ansi --no-update From f581cd6552304291b045527053366ff2ceaf66c0 Mon Sep 17 00:00:00 2001 From: katarzynazawada Date: Thu, 23 Apr 2026 10:34:33 +0200 Subject: [PATCH 2/4] IBX-11657: Adedd connector-quable for stable --- bin/5.0.x-dev/prepare_project_edition.sh | 2 +- bin/stable/prepare_project_edition.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/5.0.x-dev/prepare_project_edition.sh b/bin/5.0.x-dev/prepare_project_edition.sh index b644c45..00426bc 100755 --- a/bin/5.0.x-dev/prepare_project_edition.sh +++ b/bin/5.0.x-dev/prepare_project_edition.sh @@ -120,7 +120,7 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --no-scripts --ansi --no-update - if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then + if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update fi diff --git a/bin/stable/prepare_project_edition.sh b/bin/stable/prepare_project_edition.sh index 105ea14..3a79399 100755 --- a/bin/stable/prepare_project_edition.sh +++ b/bin/stable/prepare_project_edition.sh @@ -74,6 +74,11 @@ else docker exec install_dependencies composer require ibexa/connector-gemini:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi + + if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then + docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update + fi + fi if [[ "$PROJECT_EDITION" == "commerce" ]]; then docker exec install_dependencies composer require ibexa/shopping-list:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi From 8d72725e5bf80fc2077ec27789607ea2ac7cfb4f Mon Sep 17 00:00:00 2001 From: katarzynazawada Date: Wed, 13 May 2026 10:36:01 +0200 Subject: [PATCH 3/4] IBX-11657: Added connector-quable to v6 --- bin/6.0.x-dev/prepare_project_edition.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/6.0.x-dev/prepare_project_edition.sh b/bin/6.0.x-dev/prepare_project_edition.sh index 5a6ce65..a445dcb 100755 --- a/bin/6.0.x-dev/prepare_project_edition.sh +++ b/bin/6.0.x-dev/prepare_project_edition.sh @@ -119,6 +119,11 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then docker exec install_dependencies composer require ibexa/connector-gemini:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --no-scripts --ansi --no-update docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --no-scripts --ansi --no-update + + if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then + docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update + fi + fi if [[ "$PROJECT_EDITION" == "commerce" ]]; then docker exec install_dependencies composer require ibexa/shopping-list:$PROJECT_VERSION --no-scripts --ansi --no-update From 9a0f5fd0b37ffe90699bd38e0fff0caca69f04b0 Mon Sep 17 00:00:00 2001 From: katarzynazawada Date: Wed, 13 May 2026 11:27:14 +0200 Subject: [PATCH 4/4] IBX-11657: Changed stable parameters --- bin/stable/prepare_project_edition.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/stable/prepare_project_edition.sh b/bin/stable/prepare_project_edition.sh index 3a79399..8ea5e45 100755 --- a/bin/stable/prepare_project_edition.sh +++ b/bin/stable/prepare_project_edition.sh @@ -76,7 +76,7 @@ else docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then - docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update + docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi fi fi