v4.3.6

langchain-ai/deepagentsv4.3.6Feb 13, 2026by juliangarnier

AI Summary

Fixes a bug in Auto Layout where synchronization with scrolling was not properly synced.

Key Highlights

  • Fix auto layout not properly synced with onScroll.
  • Allows controlling layout animations with sync options.

Full Release Notes

## Bug Fixes
- **Auto Layout**
  - Fix auto layout not properly synced with onScroll, allowing controlling layout animations like this:
```js
layout.animate({
  autoplay: onScroll({
    sync: true,
  })
});
```