zxhlyh
e19a07c2e6
merge main
2025-07-29 15:44:23 +08:00
zxhlyh
4c65a8091a
chore: base form ( #23101 )
2025-07-29 15:37:16 +08:00
GuanMu
7721648867
Fix variable config ( #23070 )
2025-07-29 11:24:59 +08:00
zxhlyh
a95cf6f8b0
merge main
2025-07-28 16:00:38 +08:00
HyaCinth
beebcae0a1
fix(web): Fix issues with workflow as tool configuration button ( #23039 ) ( #23050 )
2025-07-28 15:49:19 +08:00
Anton Kovalev
15757110cf
feat: default value option for select input fields ( #21192 )
...
Co-authored-by: crazywoola <427733928@qq.com>
Co-authored-by: GuanMu <ballmanjq@gmail.com>
2025-07-28 15:37:23 +08:00
heyszt
7eb707f811
Rollback Aliyun Trace Icon File ( #23027 )
2025-07-28 11:01:38 +08:00
Dylan Jiang
1446f19709
fix: Update trigger styles for disabled state in PureSelect component ( #22986 )
2025-07-26 10:53:59 +08:00
Wu Tianwei
ad472d59e0
fix: Refactor i18n config and fix plugin search box styling issue ( #22945 )
2025-07-25 15:01:28 +08:00
HyaCinth
45cebf09b0
fix: Optimize input variable retrieval logic ( #22888 ) ( #22914 )
2025-07-24 21:57:55 +08:00
twwu
bae2af0c85
Merge branch main into feat/rag-2
2025-07-24 17:40:04 +08:00
HyaCinth
061d4c8ea0
fix(plugins_select): Adjust z-index, fix issue where options cannot be displayed ( #22873 ) ( #22893 )
2025-07-24 15:14:30 +08:00
呆萌闷油瓶
371fe7a700
fix: type error in list-operator ( #22803 )
2025-07-24 12:21:20 +08:00
croatialu
d1572f47a0
feat: Add user variable processing function to chat history ( #22863 )
2025-07-24 10:06:49 +08:00
zxhlyh
761d717656
fix
2025-07-23 16:59:47 +08:00
Junyan Qin (Chin)
eaae79a581
feat: plugin auto upgrade strategy ( #19758 )
...
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: crazywoola <427733928@qq.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Novice <novice12185727@gmail.com>
2025-07-23 15:33:39 +08:00
Wu Tianwei
ce15ca8929
feat: custom components in markdown comp ( #22776 )
2025-07-22 15:30:22 +08:00
zxhlyh
3b8d96f45c
merge main
2025-07-22 13:52:24 +08:00
zxhlyh
4d36e784b7
merge main
2025-07-21 17:45:26 +08:00
lyzno1
659d51a2da
fix: complete file_upload schema in OpenAPI templates ( #22700 ) ( #22719 )
2025-07-21 17:43:49 +08:00
KVOJJJin
a83e4ed9a4
Perf: remove user profile loading ( #22710 )
2025-07-21 16:35:52 +08:00
Novice
17a8f1a0f1
fix: avoid using node_data.version for judgement tool node version ( #22462 )
...
Co-authored-by: JzoNg <jzongcode@gmail.com>
2025-07-21 09:28:47 +08:00
twwu
5b2c99e183
Merge branch 'main' into feat/rag-2
2025-07-18 14:03:48 +08:00
twwu
399866e0ac
fix: add 'no-spinner' class to InputNumber component for better styling
2025-07-18 13:42:05 +08:00
Wu Tianwei
b035f3f884
feat: convert components to dynamic imports for improved performance ( #22614 )
2025-07-18 11:43:37 +08:00
Asuka Minato
2423f97c72
remove overrides ( #22575 )
2025-07-17 21:47:48 +08:00
twwu
59f68cd63b
fix: ensure default values are handled correctly in InputNumber and related components
2025-07-17 18:15:52 +08:00
Harry
3388e83920
Merge remote-tracking branch 'origin/main' into feat/rag-2
...
# Conflicts:
# .github/workflows/build-push.yml
# web/app/components/workflow/nodes/_base/components/workflow-panel/index.tsx
2025-07-17 17:56:56 +08:00
Maries
a4ef900916
Support OAuth Integration for Plugin Tools ( #22550 )
...
Co-authored-by: zxhlyh <jasonapring2015@outlook.com>
Co-authored-by: Yeuoly <admin@srmxy.cn>
2025-07-17 17:18:44 +08:00
zxhlyh
01566035e3
merge main
2025-07-17 16:48:43 +08:00
znn
3cfba9e47b
updating icon ( #22485 )
2025-07-17 15:10:36 +08:00
NFish
a324d3942e
Perf/web app authrozation ( #22524 )
2025-07-17 10:52:10 +08:00
Chieh Wang
30aa052a57
feat: Add Citations and Attributions to Agent Node ( #18558 )
...
Co-authored-by: oneness0 <2902216407@qq.com>
Co-authored-by: Novice <novice12185727@gmail.com>
2025-07-16 15:46:15 +08:00
Wu Tianwei
aef67ed7ec
fix: add background color for chat bubble in light and dark themes ( #22472 )
2025-07-16 13:36:51 +08:00
QuantumGhost
2c1ab4879f
refactor(api): Separate SegmentType for Integer/Float to Enable Pydantic Serialization ( #22025 )
...
refactor(api): Separate SegmentType for Integer/Float to Enable Pydantic Serialization (#22025 )
This PR addresses serialization issues in the VariablePool model by separating the `value_type` tags for `IntegerSegment`/`FloatSegment` and `IntegerVariable`/`FloatVariable`. Previously, both Integer and Float types shared the same `SegmentType.NUMBER` tag, causing conflicts during serialization.
Key changes:
- Introduce distinct `value_type` tags for Integer and Float segments/variables
- Add `VariableUnion` and `SegmentUnion` types for proper type discrimination
- Leverage Pydantic's discriminated union feature for seamless serialization/deserialization
- Enable accurate serialization of data structures containing these types
Closes #22024 .
2025-07-16 12:31:37 +08:00
Kerwin Bryant
229b4d621e
Improve Tooltip UX by enabling delay by default ( #21383 )
2025-07-16 11:26:54 +08:00
twwu
e0753ebfd1
fix: update dataset conversion endpoint path for correct API integration
2025-07-16 10:08:46 +08:00
znn
1f4b3591ae
adding tooltip for bindingCount ( #22450 )
...
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
Co-authored-by: crazywoola <427733928@qq.com>
2025-07-16 09:59:42 +08:00
Minamiyama
7e666dc3b1
fix(prompt-editor): show error warning for destructive env and conv var ( #21802 )
2025-07-15 14:10:50 +08:00
twwu
682b65034c
Merge branch 'main' into feat/rag-2
2025-07-14 11:17:42 +08:00
HyaCinth
2d3c5b3b7c
fix(emoji-picker): Adjust the style of the emoji picker ( #22161 ) ( #22231 )
2025-07-11 17:52:16 +08:00
le0zh
fe4e2f7921
feat: support var in suggested questions ( #17340 )
...
Co-authored-by: crazywoola <427733928@qq.com>
2025-07-11 15:07:32 +08:00
Joel
5375d9bb27
feat: the frontend part of mcp ( #22131 )
...
Co-authored-by: jZonG <jzongcode@gmail.com>
Co-authored-by: Novice <novice12185727@gmail.com>
Co-authored-by: nite-knite <nkCoding@gmail.com>
Co-authored-by: Hanqing Zhao <sherry9277@gmail.com>
2025-07-10 14:14:02 +08:00
twwu
e2a141b3bb
Merge branch 'main' into feat/rag-2
2025-07-10 10:14:12 +08:00
Heyang Wang
4403bc67a1
fix(Drawer): add overflow hidden to ensure copy button is always clickable ( #21992 ) ( #22103 )
...
Co-authored-by: wangheyang <wangheyang@corp.netease.com>
2025-07-10 09:20:02 +08:00
twwu
966e6e03fc
style: Update component attributes to use single quotes and adjust z-index in ContentDialog
2025-07-09 18:34:21 +08:00
twwu
9e44f2b805
Merge branch 'main' into feat/rag-2
2025-07-09 15:54:57 +08:00
Davide Delbianco
1885426421
feat: Allow to change SSL verify in HTTP Node ( #22052 )
...
Co-authored-by: crazywoola <427733928@qq.com>
2025-07-09 15:53:24 +08:00
kurokobo
e39236186d
feat: introduce new env ALLOW_UNSAFE_DATA_SCHEME to allow rendering data uri scheme ( #21321 )
2025-07-09 10:12:40 +08:00
mizoo
de22648b9f
feat: Add support for type="hidden" input elements in Markdown forms ( #21922 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-07-07 10:35:30 +08:00