Skip to content

Commit d26836d

Browse files
committedDec 24, 2024
Merge commit 'e88ea71aefd2adca64683ce0cca836df015d0f4f'
* commit 'e88ea71aefd2adca64683ce0cca836df015d0f4f': (91 commits) chore/bump version to 0.14.2 (langgenius#12017) fix: issue Multiple Paths Between IF/ELSE Branches (langgenius#11646) Fix/refactor invoke result handling in question classifier node (langgenius#12015) fix: remove json_schema if response format is disabled. (langgenius#12014) fix: add UUID validation for tool file ID extraction (langgenius#12011) fix: add logging for missing edge mapping in StreamProcessor (langgenius#12008) Fix/add retry mechanism to billing service request handling (langgenius#12006) Fix/workflow retry log (langgenius#12013) fix: add retry feature to code node (langgenius#12005) fix: drop useless and wrong code in Account (langgenius#11961) fix: improve error handling for file retrieval in AwsS3Storage (langgenius#12002) Fix/workflow retry (langgenius#11999) feat: add RequestBodyError for invalid request body handling (langgenius#11994) fix: Introduce ArrayVariable and update iteration node to handle it (langgenius#12001) fix: remove unused credential validation logic in VectorizerProvider (langgenius#12000) feat: Warning on invite modal when mail setup is incomplete (langgenius#11809) fix: handle broader request exceptions in OAuth process (langgenius#11997) fix: Multiple Paths Between IF/ELSE Branches Invalidate Conditions (langgenius#11544) fix: retry node in iteration logs wrong (langgenius#11995) fix: remove the unused retry index field (langgenius#11903) ... # Conflicts: # web/yarn.lock
2 parents f0a0b66 + e88ea71 commit d26836d

File tree

294 files changed

+5592
-1750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+5592
-1750
lines changed
 

‎.github/workflows/api-tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ jobs:
5050
- name: Run ModelRuntime
5151
run: poetry run -C api bash dev/pytest/pytest_model_runtime.sh
5252

53+
- name: Run dify config tests
54+
run: poetry run -C api python dev/pytest/pytest_config_tests.py
55+
5356
- name: Run Tool
5457
run: poetry run -C api bash dev/pytest/pytest_tools.sh
5558

‎api/.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH=4000
399399
WORKFLOW_MAX_EXECUTION_STEPS=500
400400
WORKFLOW_MAX_EXECUTION_TIME=1200
401401
WORKFLOW_CALL_MAX_DEPTH=5
402+
WORKFLOW_PARALLEL_DEPTH_LIMIT=3
402403
MAX_VARIABLE_SIZE=204800
403404

404405
# App configuration

0 commit comments

Comments
 (0)