From c167a1f4f44ce10cf918b2fd313bf586c2c18f84 Mon Sep 17 00:00:00 2001 From: -LAN- Date: Mon, 24 Mar 2025 17:59:54 +0800 Subject: [PATCH] chore: bump the package version to 1.1.3 (#16612) Signed-off-by: -LAN- --- api/configs/packaging/__init__.py | 2 +- docker/docker-compose-template.yaml | 8 ++++---- docker/docker-compose.middleware.yaml | 2 +- docker/docker-compose.yaml | 8 ++++---- web/package.json | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/api/configs/packaging/__init__.py b/api/configs/packaging/__init__.py index f76f86328d..0ef5a724b3 100644 --- a/api/configs/packaging/__init__.py +++ b/api/configs/packaging/__init__.py @@ -9,7 +9,7 @@ class PackagingInfo(BaseSettings): CURRENT_VERSION: str = Field( description="Dify version", - default="1.1.2", + default="1.1.3", ) COMMIT_SHA: str = Field( diff --git a/docker/docker-compose-template.yaml b/docker/docker-compose-template.yaml index 769733aaa9..520cb948c2 100644 --- a/docker/docker-compose-template.yaml +++ b/docker/docker-compose-template.yaml @@ -2,7 +2,7 @@ x-shared-env: &shared-api-worker-env services: # API service api: - image: langgenius/dify-api:1.1.2 + image: langgenius/dify-api:1.1.3 restart: always environment: # Use the shared environment variables. @@ -29,7 +29,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:1.1.2 + image: langgenius/dify-api:1.1.3 restart: always environment: # Use the shared environment variables. @@ -53,7 +53,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.1.2 + image: langgenius/dify-web:1.1.3 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} @@ -110,7 +110,7 @@ services: # The DifySandbox sandbox: - image: langgenius/dify-sandbox:0.2.10 + image: langgenius/dify-sandbox:0.2.11 restart: always environment: # The DifySandbox configurations diff --git a/docker/docker-compose.middleware.yaml b/docker/docker-compose.middleware.yaml index c77bf6b6da..b4f772cc82 100644 --- a/docker/docker-compose.middleware.yaml +++ b/docker/docker-compose.middleware.yaml @@ -43,7 +43,7 @@ services: # The DifySandbox sandbox: - image: langgenius/dify-sandbox:0.2.10 + image: langgenius/dify-sandbox:0.2.11 restart: always environment: # The DifySandbox configurations diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 408b30a2fd..4a40cb1aec 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -433,7 +433,7 @@ x-shared-env: &shared-api-worker-env services: # API service api: - image: langgenius/dify-api:1.1.2 + image: langgenius/dify-api:1.1.3 restart: always environment: # Use the shared environment variables. @@ -460,7 +460,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:1.1.2 + image: langgenius/dify-api:1.1.3 restart: always environment: # Use the shared environment variables. @@ -484,7 +484,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.1.2 + image: langgenius/dify-web:1.1.3 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} @@ -541,7 +541,7 @@ services: # The DifySandbox sandbox: - image: langgenius/dify-sandbox:0.2.10 + image: langgenius/dify-sandbox:0.2.11 restart: always environment: # The DifySandbox configurations diff --git a/web/package.json b/web/package.json index 47cf4f56fc..e4665ecbe2 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "1.1.2", + "version": "1.1.3", "private": true, "engines": { "node": ">=18.18.0"