5 hours ago
ip2region

v3.18.0

New Feature

  • IPv4 and IPv6 data updates with geofeeds and community reports merge.
  • Golang xdb searcher optimization.
  • Geo province name fix and new name standard for municipalities of China.
  • Native windows build supports for cpp.

What's Changed

New Contributors

Full Changelog: https://github.com/lionsoul2014/ip2region/compare/v3.17.0...v3.18.0

9 hours ago
selenium

Nightly

Commits

  • 3952c6b: [py] run the BiDi tests against the Grid server (#17980) (David Burns) #17980
  • 396099a: [py] fix flaky BiDi input tests that raced the page's autofocus (#17981) (David Burns) #17981
  • 8cbf4bf: [py] raise typed WebDriver errors for BiDi wire error codes (#17952) (Titus Fortner) #17952
  • a796c1e: [build] skip the release summary notification when no release ran (Titus Fortner)
  • 580650f: [rb] fix Edge guards in BiDi protocol specs (Titus Fortner)
  • cffe5d3: [build] run only Ruby smoke tests on browser pin PRs (Titus Fortner)
  • fa44e74: [build] run beta browsers only in the scheduled RBE build (Titus Fortner)
  • 9461d1b: [build] Automated Browser Version Update (major) (#17923) (Selenium CI Bot) #17923
  • dc4fc25: [rb] give the Grid two minutes to become ready in remote specs (Titus Fortner)
  • f7f60f9: [rb] wait for both downloads to finish before listing them (Titus Fortner)
  • 825b0d1: [java] give Grid deployments more time to become ready in router tests (Titus Fortner)
  • 4704bc5: [py] tolerate Safari's mid-navigation window errors in click and window tests (Titus Fortner)
  • 4eaa35b: [rb] request the configured browser version when finding drivers (Titus Fortner)
  • 507b67e: [rb] guard the Firefox Linux screencast failure to stable only (Titus Fortner)
  • 58ddb03: [py] fix linting issue (Titus Fortner)
  • 1303bd5: [build] bump rules_rs to 0.0.108 (#17997) (Titus Fortner) #17997
16 hours ago
agentscope-java

v2.0.3

This release introduces Anthropic prompt caching, a deliver_artifact tool for sandboxed agents, a FinalAnswerFilterMiddleware for ReAct streams, state versioning and optimistic concurrency primitives for agent state stores, an AgentProtocolEventBus for pluggable SSE event handling, and a console transcript overhaul, and includes a broad set of reliability fixes across the core reasoning loop, harness, sandbox, and AG-UI protocol layers.

Quick links: Quickstart | V1 Migration Guide | Going to Production

Added

Core / Agent

  • Propagate ToolResultBlock.metadata through fine-grained v2 tool-result events (ToolResultTextDeltaEvent / ToolResultDataDeltaEvent / ToolResultEndEvent) so event-stream consumers can access tool-specific context (#2315)
  • Introduce AgentProtocolEventBus for pluggable SSE event handling in the agent-protocol layer (#2634)
  • State versioning and optimistic concurrency primitives — VersionedState, ConflictPolicy, and ConcurrentSessionModificationException — enabling AgentStateStore implementations to detect and reject stale writes

Middleware

  • FinalAnswerFilterMiddleware — an opt-in filter that buffers text events per model call, suppresses intermediate reasoning-round text when a tool call is produced, and emits only the final user-facing answer (#2926, #2872)

Model Providers

  • Anthropic prompt caching: set cache_control breakpoints on tools, system, and the last message; surface cache_read_input_tokens and cache_creation_input_tokens in usage (#2350, #2223)
  • Anthropic + Gemini ResponseParser read cachedTokens into usage (#2568)
  • Explicit no-cache semantics: CACHE_CONTROL=false metadata maps to {"type":"no_cache"} for OpenAI and DashScope converters, so a single message can opt out of caching (#2685, #2684)

Harness / Tools

  • deliver_artifact tool for sandboxed agents — an ArtifactDeliveryTarget SPI + tool that lets an agent inside a sandbox hand out produced files; the workspace prompt now references it when a target is configured, and states plainly that no cross-boundary mechanism exists otherwise (#2667, #2663)
  • MCP server registration results — an optional McpServerRegistrationListener with SUCCESS / FAILED / SKIPPED terminal states, so host services can identify and retire unhealthy MCP configurations (#2877, #2875)
  • description field on SubagentFactoryEntry so the orchestrator gets useful subagent selection context instead of a bare name (#1506, #1504)
  • Public Toolkit API to assign an already-registered tool to an additional group (#2836, #2835)
  • Stream ranged file reads in ReadFileTool — positive line ranges are read incrementally and stop at the requested end line, avoiding loading the full file into memory (#2402)

AG-UI

  • CopilotKit + AG-UI full-stack example covering threads, shared state, generative UI, A2UI workbench, and HITL flows end-to-end (#2554)
  • Configure agent interruption on AG-UI disconnect (#2719, #2715)

Console

  • Transcript overhaul — one bubble per user question, with text and tool calls rendered as ordered content blocks in chronological order; react-markdown rendering, syntax-highlighted tool I/O cards, SSE auto-reconnect with exponential backoff, and session.error rendering (#2640)

Examples

  • User binding preferences CRUD API for the DataAgent example (#2711)
  • v2 application-layer RAG example (#2794)

Refactored

  • Move AguiRuntimeContextRequest / AguiRuntimeContextResolver / AguiRequestBodyParser down from the example layer into the extensions-agui protocol layer (#2822)
  • Replace the Java service control plane with the Go aistiod control plane, keeping the Java gateway, data, and scheduler planes; the agentscope-builder example is promoted to the top-level agentscope-service module
  • Isolate HITL sessions by user — key ThreadSessionManager / AgentResolver by (userId, threadId) so hasMemory and agent reuse no longer mix tenants, and unwrap harness/stop interrupts via AguiUtil.asReActAgent so demo stopThread and processor interrupts target the live session (#2856, #2855)

Fixed

Core / Agent

  • Propagate ChatResponse.metadata to Msg.metadata in ReasoningContext (#2931)
  • Propagate agent state load failures instead of silently replacing conversation state with a fresh session on backend / I/O / decoding errors (#2760)
  • Preserve caller-supplied permission context when loading legacy v1 session state, so 1.x → 2.0 migration does not silently downgrade to DEFAULT permission mode (#2769, #2768)
  • Retry empty final responses instead of finishing silently when a reasoning model emits its answer into reasoning_content with empty content (#2755, #2750)
  • Persist the current turn's user input and safe context on model call failure so a resumed session can see the last question (#2799)
  • Reconcile dangling tool_use blocks on interrupt before persisting AgentState, fixing a window between reasoning and acting where pending tool calls were left unmatched (#2410, #2409)
  • Return suspended results for external tools instead of converting them to generic errors; emit RequireExternalExecutionEvent for suspended tool calls (#1668, #1582)
  • Emit ExternalExecutionResultEvent when external tool results resume (#2605)
  • Restore event emitter for detached tool calls (#2483)
  • Include field path in tool validation error messages (#2718)
  • Simplify ReActAgent pending tool and error result handling (#2666)
  • Normalize model-call tools in middleware to avoid duplicate or malformed tool definitions (#2756)
  • Avoid event-loop blocking in WorkspaceContextMiddleware#onSystemPrompt (#2632)
  • Use call-scoped AgentState for ReActAgent shutdown retry recovery so the shutdownInterrupted flag is checked and cleared against the per-session state for the current (userId, sessionId) call, instead of the default session state (#2712, #2708)

Model Providers

  • Gemini: apply ModelUtils.applyTimeoutAndRetry to response streams so configured timeout and retry settings take effect (#2356)
  • RAGFlow: preserve final retry response body so callers can read error details (#2631)
  • RAGFlow: type rerankId as String to match the RAGFlow API (#2776)

Harness / Tools / Sandbox

  • Stop skill-cache orphan GC from deleting live directories (#2840, #2787)
  • Make Nacos skill source paths Windows-safe (#2921)
  • Make memory flush fire-and-forget to unblock conversation completion; add HarnessBackgroundTaskQuiescenceExtension so tests drain background flush before @TempDir teardown (#2777, #2935)
  • Handle SIGTERM in Docker keep-alive to avoid 30s stop delay (#2885)
  • Bound filesystem search tool output size (#2832)
  • Isolate sandbox binding per call to fix concurrent corruption (#2675)
  • Make concurrent sandbox uploads safe — unique hydrate temp names and native transfer for relative paths (#2762)
  • Fix Windows Docker sandbox session file upload via tar stream (#2557)
  • E2B: preserve zero exit code in JSON stream (#2609); reject incomplete process streams without exit code (#2828); reset projection state when recreating sandbox (#2586)
  • Kubernetes sandbox: bump fabric8 to 7.8.0 to fix watch NPE with Jackson 2.19+ (#2766); follow redirects so file API downloads survive gateway 307 (#2748)
  • Keep persisted snapshot id when resume falls back to fresh create (#2775)
  • Add reply IDs to subagent lifecycle events (#2680)
  • Inherit memory config in subagents (#2611)
  • Make orphan sweep timeout boundary inclusive (#2619)
  • Do not downgrade a user-interrupted session to a compaction failure (#2659)

AG-UI

  • Assign per-tool result message ids (#2908)
  • Emit frontend tool args from fragment deltas (#2874)
  • Isolate HITL sessions by user (#2856)
  • Emit AG-UI interrupt for permission-type HITL tool confirmation (#2495, #2437)
  • Parse request bodies with Jackson 2 codec for Boot 4 / multimodal MessageContent (#2638)
  • Suppress ReActAgent handshake events in AG-UI converters (#2639)
  • Stop emitting RUN_FINISHED after RUN_ERROR by default (#2646)
  • Cancel MVC subscription on disconnect (#2786)

Protocol

  • Clear task submit context before publishing terminal status to close an await race in AgentProtocolTaskStore (#2802)

Storage

  • MySQL: remove path-separator check from MysqlAgentStateStore session id validation (#2022)

Console / Frontend

  • Allow owners to edit agent settings and add model field (#2630)
  • Render session.error events in managed session chat (#2598, #2596)
  • Add cache-control headers to console static serving (#2607)
19 hours ago
netty
1 days ago
selenium

Nightly

Commits

  • d2d3149: [build] add a daily workflow to update the pinned CDDL specs (#17972) (Titus Fortner) #17972
  • 9d0ae9e: [py] resolve aliased CddlType members when generating BiDi annotations (Titus Fortner)
  • 56e5c61: [py] stop sharing the default ClientConfig proxy between instances (Titus Fortner)
  • f580b8d: [build] fix invalid escape sequence in the Java atom line format (Titus Fortner)
  • 23c8a89: [py] fix swapped assert arguments in async script array tests (Titus Fortner)
  • 50cc58f: [py] add missing assert in device serial options test (Titus Fortner)
  • 802accd: [py] remove no-op port self-assignment from the test web server (Titus Fortner)
  • ed2dda5: [rust] fix Windows architecture detection under WOW64 (#17987) (Titus Fortner) #17987
  • 77ea3d0: [build] build Selenium Manager Linux binaries natively and pin the Rust toolchain (#17988) (Titus Fortner) #17988
  • 0a6ea44: [rb] assert Safari returns a sharedId for a located node instead of failing on our own construction (Titus Fortner)
  • 539dfe2: [rb] fix local dev execution (Titus Fortner)
  • 2e98990: [build] Automated Dependency Update (#17937) (Selenium CI Bot) #17937
  • 2df05d0: [rb] report the driver version that actually served each spec run (Titus Fortner)
  • 5807971: [build] stop uploading changes.patch as a GitHub release asset (Titus Fortner)
2 days ago
dolphinscheduler

Release 3.4.3

DSIP

Click to expand
  • [DSIP-107][Scheduler] Add schedule missed fire policy (#18464) @liang-wenjie

Improvement

Click to expand
  • [Improvement-18040] [Doc] Update the parameter priority explanation in the docs. (#18321) @njnu-seafish
  • [Doc-18322][Parameter] Add a note to the parameter priority documentation specifying and fix some issues (#18323) @njnu-seafish
  • [Improvement-18304][API] Remove dead code after t_ds_relation_user_alertgroup… (#18316) @det101
  • [Improvement-18332][Worker] Remove plaintext passwords from the logs (#18333) @njnu-seafish
  • [Improvement-17563][Helm] Update mysql helm chart version (#18336) @qiuyanjun888
  • [Doc-18326][Parameter] Fix and Enrich the documentation for parameter priority. (#18327) @njnu-seafish
  • [Improvement-18354][UI] Change the description field to optional (#18355) @njnu-seafish
  • [Improvement-18359][UI] Change the description field to optional in k8s config (#18360) @njnu-seafish
  • [Improvement-17933][api] Restrict audit logs to current user for non-admin users (#18368) @qiuyanjun888
  • [Improvement-18403][API&Security] Avoid raw password exposure in user parameter validation errors (#18404) @njnu-seafish
  • [Improvement-18412][api] Fix missing validation for resource preview limit parameter (#18411) @destinyoooo
  • [Improvement-18388][TASK]Killed shell tasks should be displayed as FAILURE (#18407) @HomminLee
  • [Improvement-18437][API] Add index idx_project_submit_time for queryTaskInstanceListPaging (#18438) @njnu-seafish
  • [Improvement-18439][API]Add composite index idx_project_start_time for workflow instance query (#18440) @njnu-seafish
  • [Improvement-18441][API&DAO] Optimize TaskInstanceMapper to exclude large text fields from list queries (#18442) @njnu-seafish
  • [Doc-18474][Upgrade] Fix zh/en incompatible upgrade docs out of sync (#18478) @njnu-seafish
  • [Improvement-18556][API] Remove obsolete dynamic sub-workflow API (#18557) @ruanwenjun
  • [Improvement-18558][API] Harden user list access and responses (#18560) @ruanwenjun
  • [Improvement-18563][API] Refine datasource authorization list APIs (#18564) @ruanwenjun
  • [Improvement-18568][API] Remove obsolete task update-with-upstream API (#18569) @ruanwenjun
  • [Improvement-18580][api] Fix typo in DataSourceServiceImpl log message (#18581) @kittimzhe
  • [Improvement-18443][API&DAO] Optimize WorkflowInstanceMapper to exclude large text fields from list queries (#18444) @njnu-seafish
  • [Improvement-18589][API] Align cluster query permissions (#18590) @ruanwenjun
  • [Chore] Remove unused code (#18599) @SbloodyS

Bugfix

Click to expand
  • [Fix-18330] Replace HashMap with ConcurrentHashMap in UserGroupInformationFactory to avoid ConcurrentModificationException (#18331) @eye-gu
  • [Fix-18340][Helm] Fix duplicate app.kubernetes.io/name label on ConfigMap (#18341) @vlaborie
  • [Fix-18346] countTaskInstanceStateByProjectCodes uses submit_time filtering (#18347) @eye-gu
  • [Improvement-17705] Add kill-application-when-task-failover logic (#18353) @SbloodyS
  • [Fix-17794] Fix rerun workflow instance should follow the specified workerGroup parameter (#18352) @SbloodyS
  • [Fix-18247] Fix when forceTaskSuccess is performed on the last unsuccessful workflow instance, the workflow instance cannot be reset to the success state (#18351) @SbloodyS
  • [Fix-18307][API] The frontend is correctly using the preferred values of the associated project for task creating and workflow scheduling (#18308) @njnu-seafish
  • [Fix-18378] Fix list resources returned only 1000 records in s3 storage type (#18381) @SbloodyS
  • [Fix-18391] [Alert] Remove redundant plugin definition table existence check during AlertServer startup (#18392) @njnu-seafish
  • [Fix-18409][Common] Fix DAG.addEdge accepting an edge that creates a cycle when paths converge (#18410) @nkuprins
  • [Fix-18406] Fix task instance failed but workflow instance remains in running state while using continue strategy with a blocked intermediate predecessor (#18415) @SbloodyS
  • [Fix-18338] Check task if it's waiting for TaskGroup slot when pause/kill (#18414) @SbloodyS
  • [Fix-18446][task-sql]Persist sqlSource and sqlResource fields when saving SQL task node (#18447) @nanxiuzi
  • [Fix-18540][Master] Reset the runtime state when recreating a failed task instance (#18541) @SEPURI-SAI-KRISHNA
  • [Fix-18538][Master] Schedule task retry at endTime + retryInterval (#18539) @SEPURI-SAI-KRISHNA
  • [Fix-18562][Common] FileUtils.writeContent2File fails for parentless paths (#18408) @hiSandog
  • [Fix-18559][API] Align workflow mutations with project write permissions (#18561) @ruanwenjun
  • [Fix-18570][Master] Detect wrapped CommandDuplicateHandleException in bootstrapError (#18570) (#18573) @hellodml
  • [Fix-18565][API] Validate datasource access for task definitions (#18566) @ruanwenjun
  • [Doc-18579] Fix malformed links in datasource and configuration docs (#18578) @kittimzhe
  • [Fix-18582][API] Align actuator endpoint matching (#18583) @ruanwenjun
  • [Fix-18596][API] Enforce permission checks for sub-workflow references (#18597) @ruanwenjun
  • [Fix-17883] Fix K8s Alert HTTP test sending failed by using IP for non-StatefulSet pods (#18574) @zhang-arvin
  • [Fix-18389][DataX] Read job definition from attached resource file when custom json is empty (#18434) @nikhiln64
  • [Fix-18576][Dependent Task] Fix parsing for ALL dependent tasks (#18605) @yan9651688
  • [Fix-18601][Alert] Align Alert Script test-send behavior (#18602) @ruanwenjun
  • [Fix-18604][Master] Preserve forced-success state when recovering failed workflows (#18608) @wcmolin

Document

Click to expand
  • [Chore][API] Remove obsolete cluster query-by-code API (#18584) @ruanwenjun
  • [Chore] Update next release version to 3.4.3 (#18613) @ruanwenjun

Chore

Click to expand
  • [Chore] Fix sonar token leak (#18363) @SbloodyS
  • [Chore] Remove sonar check (#18374) @SbloodyS
  • [Chore] Fix auto labeler error (#18375) @SbloodyS
2 days ago
selenium

Nightly

Commits

  • bdba26c: [java] shrink published javadoc jars (#17957) (Titus Fortner) #17957
  • a710cbd: [build] skip redundant Rust tests when releasing (Titus Fortner)
  • b0b4a7a: [build] pin the rules_rs zlib bootstrap to an immutable snapshot (#17985) (Titus Fortner) #17985
3 days ago
selenium

Nightly

Commits

  • 989e662: [grid] Fix 500 when downloading a file whose name contains spaces (#17968) (Ashraf Ali) #17968
  • d6bf2fb: [java] add the LICENSE and NOTICE files to the jars created (#17601) (joerg1985) #17601
  • f3ccc60: [java] Remove deprecated GET /session/{sessionId}/se/files/{fileName} endpoint (#17982) (Diego Molina) #17982