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- <laipz8200@outlook.com>tags/0.15.7
| @@ -0,0 +1,3 @@ | |||
| { | |||
| "MD024": false | |||
| } | |||
| @@ -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 | |||
| @@ -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( | |||
| @@ -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:-} | |||
| @@ -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:-} | |||
| @@ -1,6 +1,6 @@ | |||
| { | |||
| "name": "dify-web", | |||
| "version": "0.15.6", | |||
| "version": "0.15.7", | |||
| "private": true, | |||
| "engines": { | |||
| "node": ">=18.17.0" | |||