From df98223c8cc6d426774bcf18ee13af2a3989756a Mon Sep 17 00:00:00 2001 From: -LAN- Date: Mon, 28 Apr 2025 14:19:07 +0800 Subject: [PATCH] chore: Updates to version 0.15.7 with new model support Adds support for GPT-4.1 and Amazon Bedrock DeepSeek-R1 models. Fixes issues with app creation from template categories and DSL version checks. Updates version numbers in configuration files and Docker setup to 0.15.7 for consistency. Addresses issues #18807, #18868, #18872, #18878, and #18912. Signed-off-by: -LAN- --- .markdownlint.json | 3 +++ CHANGELOG.md | 9 ++++++++- api/configs/packaging/__init__.py | 2 +- docker/docker-compose-template.yaml | 6 +++--- docker/docker-compose.yaml | 6 +++--- web/package.json | 2 +- 6 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000000..cb4aa7ebd8 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,3 @@ +{ + "MD024": false +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e9dbb072..57c6180068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,20 @@ All notable changes to Dify will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.15.7] - 2025-04-25 +## [0.15.7] - 2025-04-27 ### Added +- Added support for GPT-4.1 in model providers (#18912) +- Added support for Amazon Bedrock DeepSeek-R1 model (#18908) - Added support for Amazon Bedrock Claude Sonnet 3.7 model (#18788) - Refined version compatibility logic in app DSL service +### Fixed + +- Fixed issue with creating apps from template categories (#18807, #18868) +- Fixed DSL version check when creating apps from explore templates (#18872, #18878) + ## [0.15.6] - 2025-04-22 ### Security diff --git a/api/configs/packaging/__init__.py b/api/configs/packaging/__init__.py index 00918242b3..9bdaa53cc3 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="0.15.6", + default="0.15.7", ) COMMIT_SHA: str = Field( diff --git a/docker/docker-compose-template.yaml b/docker/docker-compose-template.yaml index d760ac679d..fc6bf106cb 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:0.15.6 + image: langgenius/dify-api:0.15.7 restart: always environment: # Use the shared environment variables. @@ -25,7 +25,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:0.15.6 + image: langgenius/dify-api:0.15.7 restart: always environment: # Use the shared environment variables. @@ -47,7 +47,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:0.15.6 + image: langgenius/dify-web:0.15.7 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index a37527f8b6..72a42c9841 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -394,7 +394,7 @@ x-shared-env: &shared-api-worker-env services: # API service api: - image: langgenius/dify-api:0.15.6 + image: langgenius/dify-api:0.15.7 restart: always environment: # Use the shared environment variables. @@ -417,7 +417,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:0.15.6 + image: langgenius/dify-api:0.15.7 restart: always environment: # Use the shared environment variables. @@ -439,7 +439,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:0.15.6 + image: langgenius/dify-web:0.15.7 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} diff --git a/web/package.json b/web/package.json index b8905fc6f1..be8e70e62c 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "0.15.6", + "version": "0.15.7", "private": true, "engines": { "node": ">=18.17.0"