From d9beada2ac9bc5ff5a814b63015ff546256c31db Mon Sep 17 00:00:00 2001 From: ClementBouvierN Date: Wed, 23 Oct 2024 11:22:01 +0200 Subject: [PATCH] [RELEASE] 4.5.0.RELEASE Signed-off-by: ClementBouvierN --- VERSION | 2 +- cli/opfabDockerCli.sh | 4 +-- cli/src/package.json | 2 +- config/dev/docker-compose.yml | 6 ++--- config/docker/docker-compose.yml | 26 +++++++++---------- .../src/main/modeling/swagger.yaml | 2 +- .../src/main/modeling/swagger.yaml | 2 +- .../src/main/modeling/swagger.yaml | 2 +- services/users/src/main/modeling/swagger.yaml | 2 +- ui/main/package.json | 2 +- 10 files changed, 25 insertions(+), 25 deletions(-) diff --git a/VERSION b/VERSION index fc1dd57365..a6548dc419 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -SNAPSHOT +4.5.0.RELEASE diff --git a/cli/opfabDockerCli.sh b/cli/opfabDockerCli.sh index 9a3b8c70a2..cb6a35182e 100755 --- a/cli/opfabDockerCli.sh +++ b/cli/opfabDockerCli.sh @@ -11,7 +11,7 @@ CONFIG_FILE=$1 if [[ ! -f "$CONFIG_FILE" ]]; then - docker run -v "$(pwd)":/opfab/host -u "$(id -u):$(id -g)" -it lfeoperatorfabric/of-opfab-cli:SNAPSHOT + docker run -v "$(pwd)":/opfab/host -u "$(id -u):$(id -g)" -it lfeoperatorfabric/of-opfab-cli:4.5.0.RELEASE exit fi @@ -38,4 +38,4 @@ while IFS= read -r line; do done < "$CONFIG_FILE" # Run the Docker command with the selected configuration -docker run -v "$(pwd)":/opfab/host -u "$(id -u):$(id -g)" -it -e ENV_NAME="$ENV_NAME" -e OPFAB_URL="$OPFAB_URL" -e OPFAB_PORT="$OPFAB_PORT" -e OPFAB_LOGIN="$OPFAB_LOGIN" -e OPFAB_PASSWORD="$OPFAB_PASSWORD" lfeoperatorfabric/of-opfab-cli:SNAPSHOT \ No newline at end of file +docker run -v "$(pwd)":/opfab/host -u "$(id -u):$(id -g)" -it -e ENV_NAME="$ENV_NAME" -e OPFAB_URL="$OPFAB_URL" -e OPFAB_PORT="$OPFAB_PORT" -e OPFAB_LOGIN="$OPFAB_LOGIN" -e OPFAB_PASSWORD="$OPFAB_PASSWORD" lfeoperatorfabric/of-opfab-cli:4.5.0.RELEASE \ No newline at end of file diff --git a/cli/src/package.json b/cli/src/package.json index 90fc83632c..6fe8ea3a31 100644 --- a/cli/src/package.json +++ b/cli/src/package.json @@ -1,6 +1,6 @@ { "name": "opfab-cli", - "version": "SNAPSHOT", + "version": "4.5.0.RELEASE", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" diff --git a/config/dev/docker-compose.yml b/config/dev/docker-compose.yml index 69ced56e54..8d61a166af 100755 --- a/config/dev/docker-compose.yml +++ b/config/dev/docker-compose.yml @@ -2,7 +2,7 @@ version: '2.1' services: rabbitmq: container_name: rabbit - image: "lfeoperatorfabric/of-rabbitmq:SNAPSHOT" + image: "lfeoperatorfabric/of-rabbitmq:4.5.0.RELEASE" ports: - "5672:5672" - "15672:15672" @@ -39,7 +39,7 @@ services: mem_limit: 1g web-ui: container_name: web-ui - image: "lfeoperatorfabric/of-web-ui:SNAPSHOT" + image: "lfeoperatorfabric/of-web-ui:4.5.0.RELEASE" ports: - "2002:80" volumes: @@ -49,7 +49,7 @@ services: - "./nginx.conf:/etc/nginx/conf.d/default.conf" ext-app: container_name: external-app - image: "lfeoperatorfabric/of-external-app:SNAPSHOT" + image: "lfeoperatorfabric/of-external-app:4.5.0.RELEASE" ports: - "8090:8090" volumes: diff --git a/config/docker/docker-compose.yml b/config/docker/docker-compose.yml index a89940a29f..926cf2b4d3 100755 --- a/config/docker/docker-compose.yml +++ b/config/docker/docker-compose.yml @@ -11,7 +11,7 @@ services: - "./mongodump:/dump" rabbitmq: container_name: rabbit - image: "lfeoperatorfabric/of-rabbitmq:SNAPSHOT" + image: "lfeoperatorfabric/of-rabbitmq:4.5.0.RELEASE" hostname: rabbit @@ -79,7 +79,7 @@ services: ALLOW_PLAINTEXT_LISTENER: "yes" users: container_name: users - image: "lfeoperatorfabric/of-users-service:SNAPSHOT" + image: "lfeoperatorfabric/of-users-service:4.5.0.RELEASE" depends_on: - mongodb - rabbitmq @@ -95,7 +95,7 @@ services: - ${CONFIG_PATH}:/external-config businessconfig: container_name: businessconfig - image: "lfeoperatorfabric/of-businessconfig-service:SNAPSHOT" + image: "lfeoperatorfabric/of-businessconfig-service:4.5.0.RELEASE" depends_on: - mongodb user: ${USER_ID}:${USER_GID} @@ -111,7 +111,7 @@ services: - ${CONFIG_PATH}:/external-config cards-publication: container_name: cards-publication - image: "lfeoperatorfabric/of-cards-publication-service:SNAPSHOT" + image: "lfeoperatorfabric/of-cards-publication-service:4.5.0.RELEASE" depends_on: - mongodb - rabbitmq @@ -127,7 +127,7 @@ services: - ${CONFIG_PATH}:/external-config cards-consultation: container_name: cards-consultation - image: "lfeoperatorfabric/of-cards-consultation-service:SNAPSHOT" + image: "lfeoperatorfabric/of-cards-consultation-service:4.5.0.RELEASE" depends_on: - mongodb - rabbitmq @@ -144,7 +144,7 @@ services: - ${CONFIG_PATH}:/external-config web-ui: container_name: web-ui - image: "lfeoperatorfabric/of-web-ui:SNAPSHOT" + image: "lfeoperatorfabric/of-web-ui:4.5.0.RELEASE" ports: - "2002:80" depends_on: @@ -158,7 +158,7 @@ services: - "../../src/test/externalWebAppExample:/usr/share/nginx/html/external/appExample" cards-external-diffusion: container_name: cards-external-diffusion - image: "lfeoperatorfabric/of-cards-external-diffusion-service:SNAPSHOT" + image: "lfeoperatorfabric/of-cards-external-diffusion-service:4.5.0.RELEASE" depends_on: - cards-consultation - users @@ -172,7 +172,7 @@ services: - "./common.yml:/usr/app/config/common.yml" cards-reminder: container_name: cards-reminder - image: "lfeoperatorfabric/of-cards-reminder:SNAPSHOT" + image: "lfeoperatorfabric/of-cards-reminder:4.5.0.RELEASE" depends_on: - cards-publication - users @@ -187,7 +187,7 @@ services: - "./common.yml:/usr/app/config/common.yml" supervisor: container_name: supervisor - image: "lfeoperatorfabric/of-supervisor:SNAPSHOT" + image: "lfeoperatorfabric/of-supervisor:4.5.0.RELEASE" depends_on: - cards-publication - users @@ -204,7 +204,7 @@ services: # - "./custom-sounds:/usr/share/nginx/html/assets/sounds" external-devices: container_name: external-devices - image: "lfeoperatorfabric/of-external-devices-service:SNAPSHOT" + image: "lfeoperatorfabric/of-external-devices-service:4.5.0.RELEASE" depends_on: - mongodb - users @@ -223,7 +223,7 @@ services: # External application example ext-app: container_name: external-app - image: "lfeoperatorfabric/of-external-app:SNAPSHOT" + image: "lfeoperatorfabric/of-external-app:4.5.0.RELEASE" ports: - "8090:8090" volumes: @@ -233,7 +233,7 @@ services: # Dummy external devices using Modbus Protocol dummy-modbus-device_1: container_name: dummy-modbus-device_1 - image: "lfeoperatorfabric/of-dummy-modbus-device:SNAPSHOT" + image: "lfeoperatorfabric/of-dummy-modbus-device:4.5.0.RELEASE" user: ${USER_ID}:${USER_GID} ports: - "4031:4030" @@ -242,7 +242,7 @@ services: - ${CONFIG_PATH}:/external-config dummy-modbus-device_2: container_name: dummy-modbus-device_2 - image: "lfeoperatorfabric/of-dummy-modbus-device:SNAPSHOT" + image: "lfeoperatorfabric/of-dummy-modbus-device:4.5.0.RELEASE" user: ${USER_ID}:${USER_GID} ports: - "4032:4030" diff --git a/services/businessconfig/src/main/modeling/swagger.yaml b/services/businessconfig/src/main/modeling/swagger.yaml index 04d8eca0a5..ddf1b46a5b 100755 --- a/services/businessconfig/src/main/modeling/swagger.yaml +++ b/services/businessconfig/src/main/modeling/swagger.yaml @@ -1,7 +1,7 @@ swagger: '2.0' info: description: IMPORTANT - The Try it Out button will generate curl requests for examples, but executing them through the UI will not work as authentication has not been set up. This page is for documentation only. - version: SNAPSHOT + version: 4.5.0.RELEASE title: BusinessConfig Management termsOfService: '' contact: diff --git a/services/cards-publication/src/main/modeling/swagger.yaml b/services/cards-publication/src/main/modeling/swagger.yaml index 8ec44315f6..6fcb473290 100755 --- a/services/cards-publication/src/main/modeling/swagger.yaml +++ b/services/cards-publication/src/main/modeling/swagger.yaml @@ -1,7 +1,7 @@ swagger: '2.0' info: description: IMPORTANT - The Try it Out button will generate curl requests for examples, but executing them through the UI will not work as authentication has not been set up. This page is for documentation only. - version: SNAPSHOT + version: 4.5.0.RELEASE title: Card Management API termsOfService: '' contact: diff --git a/services/external-devices/src/main/modeling/swagger.yaml b/services/external-devices/src/main/modeling/swagger.yaml index 6af3594c04..d06e7b47c6 100755 --- a/services/external-devices/src/main/modeling/swagger.yaml +++ b/services/external-devices/src/main/modeling/swagger.yaml @@ -1,7 +1,7 @@ swagger: '2.0' info: description: IMPORTANT - The Try it Out button will generate curl requests for examples, but executing them through the UI will not work as authentication has not been set up. This page is for documentation only. - version: SNAPSHOT + version: 4.5.0.RELEASE title: External Devices Management termsOfService: '' contact: diff --git a/services/users/src/main/modeling/swagger.yaml b/services/users/src/main/modeling/swagger.yaml index 4832a7781a..5d15e2e16d 100755 --- a/services/users/src/main/modeling/swagger.yaml +++ b/services/users/src/main/modeling/swagger.yaml @@ -1,7 +1,7 @@ swagger: '2.0' info: description: IMPORTANT - The Try it Out button will generate curl requests for examples, but executing them through the UI will not work as authentication has not been set up. This page is for documentation only. - version: SNAPSHOT + version: 4.5.0.RELEASE title: User Management termsOfService: '' contact: diff --git a/ui/main/package.json b/ui/main/package.json index f5fc7e20f5..3545b59f86 100644 --- a/ui/main/package.json +++ b/ui/main/package.json @@ -1,6 +1,6 @@ { "name": "operatorfabric-ui-main", - "opfabVersion": "SNAPSHOT", + "opfabVersion": "4.5.0.RELEASE", "scripts": { "ng": "ng", "start": "ng serve",