fix: stabilize 4.11 branch runtime state

This commit is contained in:
Junyan Qin
2026-06-30 21:34:25 +08:00
committed by huanghuoguoguo
parent 35d970c4a5
commit bdc6704d88
4 changed files with 21 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "langbot"
version = "4.10.5"
version = "4.11.0"
description = "Production-grade platform for building agentic IM bots"
readme = "README.md"
license-files = ["LICENSE"]
@@ -0,0 +1,19 @@
"""merge mcp resource and agent product migration heads
Revision ID: 0010_merge_mcp_resource_agent_heads
Revises: 0008_mcp_resource_prefs, 0009_migrate_routing_to_event_bindings
Create Date: 2026-06-30
"""
revision = '0010_merge_mcp_resource_agent_heads'
down_revision = ('0008_mcp_resource_prefs', '0009_migrate_routing_to_event_bindings')
branch_labels = None
depends_on = None
def upgrade() -> None:
pass
def downgrade() -> None:
pass
Generated
+1 -1
View File
@@ -2133,7 +2133,7 @@ wheels = [
[[package]]
name = "langbot"
version = "4.10.5"
version = "4.11.0"
source = { editable = "." }
dependencies = [
{ name = "aiocqhttp" },
@@ -93,11 +93,9 @@ function getPluginComponentIconURL(value?: string): string | null {
function SelectOptionContent({
label,
value,
showDescription = false,
}: {
label: string;
value: string;
showDescription?: boolean;
}) {
const iconURL = getPluginComponentIconURL(value);
@@ -112,11 +110,6 @@ function SelectOptionContent({
)}
<div className="min-w-0 flex flex-col">
<span className="truncate">{label}</span>
{showDescription && (
<span className="truncate text-xs text-muted-foreground">
{value}
</span>
)}
</div>
</div>
);
@@ -487,7 +480,6 @@ export default function DynamicFormItemComponent({
<SelectOptionContent
label={extractI18nObject(option.label)}
value={option.name}
showDescription
/>
</SelectItem>
))}