diff --git a/api/pyproject.toml b/api/pyproject.toml index 02782d4eec0..5ebe5d610c4 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-api" -version = "1.16.0" +version = "1.16.1" requires-python = "~=3.12.0" dependencies = [ diff --git a/api/uv.lock b/api/uv.lock index 2333a5b710f..676de350ecb 100644 --- a/api/uv.lock +++ b/api/uv.lock @@ -1281,7 +1281,7 @@ wheels = [ [[package]] name = "dify-agent" -version = "1.16.0" +version = "1.16.1" source = { editable = "../dify-agent" } dependencies = [ { name = "httpx" }, @@ -1331,7 +1331,7 @@ docs = [ [[package]] name = "dify-api" -version = "1.16.0" +version = "1.16.1" source = { virtual = "." } dependencies = [ { name = "aliyun-log-python-sdk" }, diff --git a/cli/package.json b/cli/package.json index f1e0be53a78..8b8f8d027cc 100644 --- a/cli/package.json +++ b/cli/package.json @@ -71,7 +71,7 @@ "channel": "alpha", "compat": { "minDify": "1.16.0", - "maxDify": "1.16.0" + "maxDify": "1.16.1" }, "release": { "tagPrefix": "difyctl-v", diff --git a/dify-agent/pyproject.toml b/dify-agent/pyproject.toml index a496d19cdd1..50bc1a93165 100644 --- a/dify-agent/pyproject.toml +++ b/dify-agent/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dify-agent" -version = "1.16.0" +version = "1.16.1" description = "Add your description here" readme = "README.md" requires-python = ">=3.12,<4.0" diff --git a/dify-agent/uv.lock b/dify-agent/uv.lock index 50de0e58c66..8c2ee1c876f 100644 --- a/dify-agent/uv.lock +++ b/dify-agent/uv.lock @@ -581,7 +581,7 @@ wheels = [ [[package]] name = "dify-agent" -version = "1.16.0" +version = "1.16.1" source = { editable = "." } dependencies = [ { name = "httpx" }, diff --git a/docker/docker-compose-template.yaml b/docker/docker-compose-template.yaml index 016177008b0..9aebfd80f6e 100644 --- a/docker/docker-compose-template.yaml +++ b/docker/docker-compose-template.yaml @@ -220,7 +220,7 @@ services: # API service api: <<: *shared-api-worker-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 environment: MODE: api SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -271,7 +271,7 @@ services: # WebSocket service for workflow collaboration. api_websocket: <<: *shared-api-worker-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 profiles: - collaboration environment: @@ -297,7 +297,7 @@ services: # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: <<: *shared-worker-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 environment: MODE: worker SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -347,7 +347,7 @@ services: # Celery beat for scheduling periodic tasks. worker_beat: <<: *shared-worker-beat-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 environment: MODE: beat depends_on: @@ -380,7 +380,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.16.0 + image: langgenius/dify-web:1.16.1 restart: always env_file: - path: ./envs/core-services/web.env @@ -542,7 +542,7 @@ services: # on port 3128, which only allows agent_backend /agent-stub/ and the Dify API # /files/* endpoints (see ssrf_proxy/squid-agent.conf.template). local_sandbox: - image: langgenius/dify-agent-local-sandbox:1.16.0 + image: langgenius/dify-agent-local-sandbox:1.16.1 restart: always env_file: - path: ./envs/core-services/local-sandbox.env @@ -651,7 +651,7 @@ services: # Dify Agent backend service. agent_backend: - image: langgenius/dify-agent-backend:1.16.0 + image: langgenius/dify-agent-backend:1.16.1 restart: always env_file: - path: ./envs/core-services/dify-agent.env diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index e95fce741b7..3e1384cc5ee 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -226,7 +226,7 @@ services: # API service api: <<: *shared-api-worker-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 environment: MODE: api SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -277,7 +277,7 @@ services: # WebSocket service for workflow collaboration. api_websocket: <<: *shared-api-worker-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 profiles: - collaboration environment: @@ -303,7 +303,7 @@ services: # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: <<: *shared-worker-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 environment: MODE: worker SENTRY_DSN: ${API_SENTRY_DSN:-} @@ -353,7 +353,7 @@ services: # Celery beat for scheduling periodic tasks. worker_beat: <<: *shared-worker-beat-config - image: langgenius/dify-api:1.16.0 + image: langgenius/dify-api:1.16.1 environment: MODE: beat depends_on: @@ -386,7 +386,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.16.0 + image: langgenius/dify-web:1.16.1 restart: always env_file: - path: ./envs/core-services/web.env @@ -548,7 +548,7 @@ services: # on port 3128, which only allows agent_backend /agent-stub/ and the Dify API # /files/* endpoints (see ssrf_proxy/squid-agent.conf.template). local_sandbox: - image: langgenius/dify-agent-local-sandbox:1.16.0 + image: langgenius/dify-agent-local-sandbox:1.16.1 restart: always env_file: - path: ./envs/core-services/local-sandbox.env @@ -657,7 +657,7 @@ services: # Dify Agent backend service. agent_backend: - image: langgenius/dify-agent-backend:1.16.0 + image: langgenius/dify-agent-backend:1.16.1 restart: always env_file: - path: ./envs/core-services/dify-agent.env diff --git a/web/package.json b/web/package.json index d4fb07f38c7..05f92154052 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "1.16.0", + "version": "1.16.1", "private": true, "type": "module", "imports": {