Compare commits

...

2 Commits

Author SHA1 Message Date
-LAN-
cb2292eb79 chore: bump DSL version to 0.4.0 2025-08-26 18:36:41 +08:00
-LAN-
df697fe672 chore: bump version from 1.7.2 to 1.8.0
Update version across all configuration files to prepare for the 1.8.0 release:
- API package version in pyproject.toml
- Lock file in uv.lock
- Web application version in package.json
- Docker image tags in docker-compose files

Closes #24538
2025-08-26 14:23:56 +08:00
6 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "dify-api"
version = "1.7.2"
version = "1.8.0"
requires-python = ">=3.11,<3.13"
dependencies = [

View File

@@ -42,7 +42,7 @@ IMPORT_INFO_REDIS_KEY_PREFIX = "app_import_info:"
CHECK_DEPENDENCIES_REDIS_KEY_PREFIX = "app_check_dependencies:"
IMPORT_INFO_REDIS_EXPIRY = 10 * 60 # 10 minutes
DSL_MAX_SIZE = 10 * 1024 * 1024 # 10MB
CURRENT_DSL_VERSION = "0.3.1"
CURRENT_DSL_VERSION = "0.4.0"
class ImportMode(StrEnum):

4
api/uv.lock generated
View File

@@ -1,5 +1,5 @@
version = 1
revision = 3
revision = 2
requires-python = ">=3.11, <3.13"
resolution-markers = [
"python_full_version >= '3.12.4' and platform_python_implementation != 'PyPy' and sys_platform == 'linux'",
@@ -1248,7 +1248,7 @@ wheels = [
[[package]]
name = "dify-api"
version = "1.7.2"
version = "1.8.0"
source = { virtual = "." }
dependencies = [
{ name = "arize-phoenix-otel" },

View File

@@ -2,7 +2,7 @@ x-shared-env: &shared-api-worker-env
services:
# API service
api:
image: langgenius/dify-api:1.7.2
image: langgenius/dify-api:1.8.0
restart: always
environment:
# Use the shared environment variables.
@@ -31,7 +31,7 @@ services:
# worker service
# The Celery worker for processing the queue.
worker:
image: langgenius/dify-api:1.7.2
image: langgenius/dify-api:1.8.0
restart: always
environment:
# Use the shared environment variables.
@@ -58,7 +58,7 @@ services:
# worker_beat service
# Celery beat for scheduling periodic tasks.
worker_beat:
image: langgenius/dify-api:1.7.2
image: langgenius/dify-api:1.8.0
restart: always
environment:
# Use the shared environment variables.
@@ -76,7 +76,7 @@ services:
# Frontend web application.
web:
image: langgenius/dify-web:1.7.2
image: langgenius/dify-web:1.8.0
restart: always
environment:
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

View File

@@ -578,7 +578,7 @@ x-shared-env: &shared-api-worker-env
services:
# API service
api:
image: langgenius/dify-api:1.7.2
image: langgenius/dify-api:1.8.0
restart: always
environment:
# Use the shared environment variables.
@@ -607,7 +607,7 @@ services:
# worker service
# The Celery worker for processing the queue.
worker:
image: langgenius/dify-api:1.7.2
image: langgenius/dify-api:1.8.0
restart: always
environment:
# Use the shared environment variables.
@@ -634,7 +634,7 @@ services:
# worker_beat service
# Celery beat for scheduling periodic tasks.
worker_beat:
image: langgenius/dify-api:1.7.2
image: langgenius/dify-api:1.8.0
restart: always
environment:
# Use the shared environment variables.
@@ -652,7 +652,7 @@ services:
# Frontend web application.
web:
image: langgenius/dify-web:1.7.2
image: langgenius/dify-web:1.8.0
restart: always
environment:
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

View File

@@ -1,6 +1,6 @@
{
"name": "dify-web",
"version": "1.7.2",
"version": "1.8.0",
"private": true,
"packageManager": "pnpm@10.15.0",
"engines": {