> ## Documentation Index
> Fetch the complete documentation index at: https://www.dynamic.xyz/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog

<div style={{ width: '100%', height: '100dvh', margin: 0, padding: 0 }}>
  <iframe
    id="changelog-iframe"
    src="https://dynamic-labs-changelog-app.vercel.app/"
    style={{
  width: '100%',
  height: '100%',
  minHeight: '100dvh',
  border: 'none',
  display: 'block',
  margin: 0,
  padding: 0,
}}
    title="Dynamic SDK Changelog"
  />

  <script
    dangerouslySetInnerHTML={{ __html: `
const iframe = document.getElementById('changelog-iframe');

function syncTheme() {
if (!iframe) return;
const isDark = document.documentElement.classList.contains('dark');
iframe.contentWindow?.postMessage(
  { type: 'theme', theme: isDark ? 'dark' : 'light' },
  'https://dynamic-labs-changelog-app.vercel.app'
);
}

// Sync on load
iframe?.addEventListener('load', syncTheme);

// Watch for Mintlify theme class changes on <html>
const observer = new MutationObserver(syncTheme);
observer.observe(document.documentElement, {
attributes: true,
attributeFilter: ['class']
});
`}}
  />
</div>
