chore: bump version to 1.16.1 (#39653)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
co-authored by
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
parent
a57b0b9b58
commit
59b879d2df
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "dify-api"
|
name = "dify-api"
|
||||||
version = "1.16.0"
|
version = "1.16.1"
|
||||||
requires-python = "~=3.12.0"
|
requires-python = "~=3.12.0"
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|||||||
Generated
+2
-2
@@ -1281,7 +1281,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dify-agent"
|
name = "dify-agent"
|
||||||
version = "1.16.0"
|
version = "1.16.1"
|
||||||
source = { editable = "../dify-agent" }
|
source = { editable = "../dify-agent" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "httpx" },
|
{ name = "httpx" },
|
||||||
@@ -1331,7 +1331,7 @@ docs = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dify-api"
|
name = "dify-api"
|
||||||
version = "1.16.0"
|
version = "1.16.1"
|
||||||
source = { virtual = "." }
|
source = { virtual = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "aliyun-log-python-sdk" },
|
{ name = "aliyun-log-python-sdk" },
|
||||||
|
|||||||
+1
-1
@@ -71,7 +71,7 @@
|
|||||||
"channel": "alpha",
|
"channel": "alpha",
|
||||||
"compat": {
|
"compat": {
|
||||||
"minDify": "1.16.0",
|
"minDify": "1.16.0",
|
||||||
"maxDify": "1.16.0"
|
"maxDify": "1.16.1"
|
||||||
},
|
},
|
||||||
"release": {
|
"release": {
|
||||||
"tagPrefix": "difyctl-v",
|
"tagPrefix": "difyctl-v",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "dify-agent"
|
name = "dify-agent"
|
||||||
version = "1.16.0"
|
version = "1.16.1"
|
||||||
description = "Add your description here"
|
description = "Add your description here"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12,<4.0"
|
requires-python = ">=3.12,<4.0"
|
||||||
|
|||||||
Generated
+1
-1
@@ -581,7 +581,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dify-agent"
|
name = "dify-agent"
|
||||||
version = "1.16.0"
|
version = "1.16.1"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "httpx" },
|
{ name = "httpx" },
|
||||||
|
|||||||
@@ -220,7 +220,7 @@ services:
|
|||||||
# API service
|
# API service
|
||||||
api:
|
api:
|
||||||
<<: *shared-api-worker-config
|
<<: *shared-api-worker-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
environment:
|
environment:
|
||||||
MODE: api
|
MODE: api
|
||||||
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
||||||
@@ -271,7 +271,7 @@ services:
|
|||||||
# WebSocket service for workflow collaboration.
|
# WebSocket service for workflow collaboration.
|
||||||
api_websocket:
|
api_websocket:
|
||||||
<<: *shared-api-worker-config
|
<<: *shared-api-worker-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
profiles:
|
profiles:
|
||||||
- collaboration
|
- collaboration
|
||||||
environment:
|
environment:
|
||||||
@@ -297,7 +297,7 @@ services:
|
|||||||
# The Celery worker for processing all queues (dataset, workflow, mail, etc.)
|
# The Celery worker for processing all queues (dataset, workflow, mail, etc.)
|
||||||
worker:
|
worker:
|
||||||
<<: *shared-worker-config
|
<<: *shared-worker-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
environment:
|
environment:
|
||||||
MODE: worker
|
MODE: worker
|
||||||
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
||||||
@@ -347,7 +347,7 @@ services:
|
|||||||
# Celery beat for scheduling periodic tasks.
|
# Celery beat for scheduling periodic tasks.
|
||||||
worker_beat:
|
worker_beat:
|
||||||
<<: *shared-worker-beat-config
|
<<: *shared-worker-beat-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
environment:
|
environment:
|
||||||
MODE: beat
|
MODE: beat
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -380,7 +380,7 @@ services:
|
|||||||
|
|
||||||
# Frontend web application.
|
# Frontend web application.
|
||||||
web:
|
web:
|
||||||
image: langgenius/dify-web:1.16.0
|
image: langgenius/dify-web:1.16.1
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- path: ./envs/core-services/web.env
|
- 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
|
# on port 3128, which only allows agent_backend /agent-stub/ and the Dify API
|
||||||
# /files/* endpoints (see ssrf_proxy/squid-agent.conf.template).
|
# /files/* endpoints (see ssrf_proxy/squid-agent.conf.template).
|
||||||
local_sandbox:
|
local_sandbox:
|
||||||
image: langgenius/dify-agent-local-sandbox:1.16.0
|
image: langgenius/dify-agent-local-sandbox:1.16.1
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- path: ./envs/core-services/local-sandbox.env
|
- path: ./envs/core-services/local-sandbox.env
|
||||||
@@ -651,7 +651,7 @@ services:
|
|||||||
|
|
||||||
# Dify Agent backend service.
|
# Dify Agent backend service.
|
||||||
agent_backend:
|
agent_backend:
|
||||||
image: langgenius/dify-agent-backend:1.16.0
|
image: langgenius/dify-agent-backend:1.16.1
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- path: ./envs/core-services/dify-agent.env
|
- path: ./envs/core-services/dify-agent.env
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ services:
|
|||||||
# API service
|
# API service
|
||||||
api:
|
api:
|
||||||
<<: *shared-api-worker-config
|
<<: *shared-api-worker-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
environment:
|
environment:
|
||||||
MODE: api
|
MODE: api
|
||||||
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
||||||
@@ -277,7 +277,7 @@ services:
|
|||||||
# WebSocket service for workflow collaboration.
|
# WebSocket service for workflow collaboration.
|
||||||
api_websocket:
|
api_websocket:
|
||||||
<<: *shared-api-worker-config
|
<<: *shared-api-worker-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
profiles:
|
profiles:
|
||||||
- collaboration
|
- collaboration
|
||||||
environment:
|
environment:
|
||||||
@@ -303,7 +303,7 @@ services:
|
|||||||
# The Celery worker for processing all queues (dataset, workflow, mail, etc.)
|
# The Celery worker for processing all queues (dataset, workflow, mail, etc.)
|
||||||
worker:
|
worker:
|
||||||
<<: *shared-worker-config
|
<<: *shared-worker-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
environment:
|
environment:
|
||||||
MODE: worker
|
MODE: worker
|
||||||
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
SENTRY_DSN: ${API_SENTRY_DSN:-}
|
||||||
@@ -353,7 +353,7 @@ services:
|
|||||||
# Celery beat for scheduling periodic tasks.
|
# Celery beat for scheduling periodic tasks.
|
||||||
worker_beat:
|
worker_beat:
|
||||||
<<: *shared-worker-beat-config
|
<<: *shared-worker-beat-config
|
||||||
image: langgenius/dify-api:1.16.0
|
image: langgenius/dify-api:1.16.1
|
||||||
environment:
|
environment:
|
||||||
MODE: beat
|
MODE: beat
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -386,7 +386,7 @@ services:
|
|||||||
|
|
||||||
# Frontend web application.
|
# Frontend web application.
|
||||||
web:
|
web:
|
||||||
image: langgenius/dify-web:1.16.0
|
image: langgenius/dify-web:1.16.1
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- path: ./envs/core-services/web.env
|
- 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
|
# on port 3128, which only allows agent_backend /agent-stub/ and the Dify API
|
||||||
# /files/* endpoints (see ssrf_proxy/squid-agent.conf.template).
|
# /files/* endpoints (see ssrf_proxy/squid-agent.conf.template).
|
||||||
local_sandbox:
|
local_sandbox:
|
||||||
image: langgenius/dify-agent-local-sandbox:1.16.0
|
image: langgenius/dify-agent-local-sandbox:1.16.1
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- path: ./envs/core-services/local-sandbox.env
|
- path: ./envs/core-services/local-sandbox.env
|
||||||
@@ -657,7 +657,7 @@ services:
|
|||||||
|
|
||||||
# Dify Agent backend service.
|
# Dify Agent backend service.
|
||||||
agent_backend:
|
agent_backend:
|
||||||
image: langgenius/dify-agent-backend:1.16.0
|
image: langgenius/dify-agent-backend:1.16.1
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- path: ./envs/core-services/dify-agent.env
|
- path: ./envs/core-services/dify-agent.env
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dify-web",
|
"name": "dify-web",
|
||||||
"version": "1.16.0",
|
"version": "1.16.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"imports": {
|
"imports": {
|
||||||
|
|||||||
Reference in New Issue
Block a user