Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dify-api"
version = "1.14.1"
version = "1.14.2"
requires-python = "~=3.12.0"

dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion api/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions docker/docker-compose-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ services:
# API service
api:
<<: *shared-api-worker-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
environment:
MODE: api
SENTRY_DSN: ${API_SENTRY_DSN:-}
Expand Down Expand Up @@ -264,7 +264,7 @@ services:
# WebSocket service for workflow collaboration.
api_websocket:
<<: *shared-api-worker-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
profiles:
- collaboration
environment:
Expand All @@ -290,7 +290,7 @@ services:
# The Celery worker for processing all queues (dataset, workflow, mail, etc.)
worker:
<<: *shared-worker-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
environment:
MODE: worker
SENTRY_DSN: ${API_SENTRY_DSN:-}
Expand Down Expand Up @@ -333,7 +333,7 @@ services:
# Celery beat for scheduling periodic tasks.
worker_beat:
<<: *shared-worker-beat-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
environment:
MODE: beat
depends_on:
Expand Down Expand Up @@ -366,7 +366,7 @@ services:

# Frontend web application.
web:
image: langgenius/dify-web:1.14.1
image: langgenius/dify-web:1.14.2
restart: always
env_file:
- path: ./envs/core-services/web.env
Expand Down
10 changes: 5 additions & 5 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ services:
# API service
api:
<<: *shared-api-worker-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
environment:
MODE: api
SENTRY_DSN: ${API_SENTRY_DSN:-}
Expand Down Expand Up @@ -270,7 +270,7 @@ services:
# WebSocket service for workflow collaboration.
api_websocket:
<<: *shared-api-worker-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
profiles:
- collaboration
environment:
Expand All @@ -296,7 +296,7 @@ services:
# The Celery worker for processing all queues (dataset, workflow, mail, etc.)
worker:
<<: *shared-worker-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
environment:
MODE: worker
SENTRY_DSN: ${API_SENTRY_DSN:-}
Expand Down Expand Up @@ -339,7 +339,7 @@ services:
# Celery beat for scheduling periodic tasks.
worker_beat:
<<: *shared-worker-beat-config
image: langgenius/dify-api:1.14.1
image: langgenius/dify-api:1.14.2
environment:
MODE: beat
depends_on:
Expand Down Expand Up @@ -372,7 +372,7 @@ services:

# Frontend web application.
web:
image: langgenius/dify-web:1.14.1
image: langgenius/dify-web:1.14.2
restart: always
env_file:
- path: ./envs/core-services/web.env
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dify-web",
"type": "module",
"version": "1.14.1",
"version": "1.14.2",
"private": true,
"imports": {
"#i18n": {
Expand Down
Loading