<!-- CANARY: REQ=REQ-API-DOCS-002; FEATURE="APIDocumentation"; ASPECT=BuildTarget; STATUS=EXEMPT; OWNER=tooling; UPDATED=2026-03-30 --> <h2 id="changelog" class="position-relative d-flex align-items-center group"> <span>Changelog</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="changelog" aria-haspopup="dialog" aria-label="Share link: Changelog"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h2><div id="headingShareModal" class="heading-share-modal" role="dialog" aria-modal="true" aria-labelledby="headingShareTitle" hidden> <div class="hsm-dialog" role="document"> <div class="hsm-header"> <h2 id="headingShareTitle" class="h6 mb-0 fw-bold">Share this section</h2> <button type="button" class="hsm-close" aria-label="Close"> <i class="fa-solid fa-xmark"></i> </button> </div> <div class="hsm-body"> <label for="headingShareInput" class="form-label small text-muted mb-1 text-uppercase fw-bold" style="font-size: 0.7rem; letter-spacing: 0.5px;">Permalink</label> <div class="input-group mb-4 hsm-url-group"> <input id="headingShareInput" type="text" class="form-control font-monospace" readonly aria-readonly="true" style="font-size: 0.85rem;" /> <button class="btn btn-primary hsm-copy" type="button" aria-label="Copy" title="Copy"> <i class="fa-duotone fa-clipboard" aria-hidden="true"></i> </button> </div> <div class="small fw-bold mb-2 text-muted text-uppercase" style="font-size: 0.7rem; letter-spacing: 0.5px;">Share via</div> <div class="hsm-share-grid"> <a id="share-twitter" class="btn btn-outline-secondary w-100" target="_blank" rel="noopener noreferrer"> <i class="fa-brands fa-twitter me-2"></i>Twitter </a> <a id="share-linkedin" class="btn btn-outline-secondary w-100" target="_blank" rel="noopener noreferrer"> <i class="fa-brands fa-linkedin me-2"></i>LinkedIn </a> <a id="share-facebook" class="btn btn-outline-secondary w-100" target="_blank" rel="noopener noreferrer"> <i class="fa-brands fa-facebook me-2"></i>Facebook </a> </div> </div> </div> </div> <style> .heading-share-modal { position: fixed; inset: 0; display: flex; justify-content: center; align-items: center; background: rgba(0, 0, 0, 0.6); z-index: 1050; padding: 1rem; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); } .heading-share-modal[hidden] { display: none !important; } .hsm-dialog { max-width: 420px; width: 100%; background: var(--bs-body-bg, #fff); color: var(--bs-body-color, #212529); border: 1px solid var(--bs-border-color, rgba(0,0,0,0.1)); border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); overflow: hidden; animation: hsm-fade-in 0.2s ease-out; } @keyframes hsm-fade-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } [data-bs-theme="dark"] .hsm-dialog { background: #1e293b; border-color: rgba(255,255,255,0.1); color: #f8f9fa; } .hsm-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--bs-border-color, rgba(0,0,0,0.1)); background: rgba(0,0,0,0.02); } [data-bs-theme="dark"] .hsm-header { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.1); } .hsm-close { background: transparent; border: none; color: inherit; opacity: 0.5; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 1.2rem; line-height: 1; transition: opacity 0.2s; } .hsm-close:hover { opacity: 1; } .hsm-body { padding: 1.5rem; } .hsm-url-group { display: flex !important; align-items: stretch; } .hsm-url-group .form-control { flex: 1; min-width: 0; margin: 0; background: var(--bs-secondary-bg, #f8f9fa); border-color: var(--bs-border-color, #dee2e6); border-top-right-radius: 0; border-bottom-right-radius: 0; height: 42px; } .hsm-url-group .btn { flex: 0 0 auto; margin: 0; margin-left: -1px; border-top-left-radius: 0; border-bottom-left-radius: 0; height: 42px; display: flex; align-items: center; justify-content: center; padding: 0 1.25rem; z-index: 2; } [data-bs-theme="dark"] .hsm-url-group .form-control { background: #0f172a; border-color: #334155; color: #e2e8f0; } .hsm-share-grid { display: flex; flex-direction: column; gap: 0.5rem; } .hsm-share-grid .btn { display: flex; align-items: center; justify-content: center; font-size: 0.9rem; padding: 0.6rem; border-color: var(--bs-border-color); width: 100%; } [data-bs-theme="dark"] .hsm-share-grid .btn { color: #e2e8f0; border-color: #475569; } [data-bs-theme="dark"] .hsm-share-grid .btn:hover { background: #334155; border-color: #cbd5e1; } </style> <script> (function(){ const modal = document.getElementById('headingShareModal'); if(!modal) return; const input = modal.querySelector('#headingShareInput'); const copyBtn = modal.querySelector('.hsm-copy'); const twitter = modal.querySelector('#share-twitter'); const linkedin = modal.querySelector('#share-linkedin'); const facebook = modal.querySelector('#share-facebook'); const closeBtn = modal.querySelector('.hsm-close'); let lastFocus=null; let trapBound=false; function buildUrl(id){ return window.location.origin + window.location.pathname + '#' + id; } function isOpen(){ return !modal.hasAttribute('hidden'); } function hydrate(id){ const url=buildUrl(id); input.value=url; const enc=encodeURIComponent(url); const text=encodeURIComponent(document.title); if(twitter) twitter.href=`https://twitter.com/intent/tweet?url=${enc}&text=${text}`; if(linkedin) linkedin.href=`https://www.linkedin.com/sharing/share-offsite/?url=${enc}`; if(facebook) facebook.href=`https://www.facebook.com/sharer/sharer.php?u=${enc}`; } function openModal(id){ lastFocus=document.activeElement; hydrate(id); if(!isOpen()){ modal.removeAttribute('hidden'); } requestAnimationFrame(()=>{ input.focus(); }); trapFocus(); } function closeModal(){ if(!isOpen()) return; modal.setAttribute('hidden',''); if(lastFocus && typeof lastFocus.focus==='function') lastFocus.focus(); } function copyCurrent(){ try{ navigator.clipboard.writeText(input.value).then(()=>feedback(true),()=>fallback()); } catch(e){ fallback(); } } function fallback(){ input.select(); try{ document.execCommand('copy'); feedback(true);}catch(e){ feedback(false);} } function feedback(ok){ if(!copyBtn) return; const icon=copyBtn.querySelector('i'); if(!icon) return; const prev=copyBtn.getAttribute('data-prev')||icon.className; if(!copyBtn.getAttribute('data-prev')) copyBtn.setAttribute('data-prev',prev); icon.className= ok ? 'fa-duotone fa-clipboard-check':'fa-duotone fa-circle-exclamation'; setTimeout(()=>{ icon.className=prev; },1800); } function handleShareClick(e){ e.preventDefault(); const btn=e.currentTarget; const id=btn.getAttribute('data-share-target'); if(id) openModal(id); } function bindShareButtons(){ document.querySelectorAll('.h-share').forEach(btn=>{ if(!btn.dataset.hShareBound){ btn.addEventListener('click', handleShareClick); btn.dataset.hShareBound='1'; } }); } bindShareButtons(); if(document.readyState==='loading'){ document.addEventListener('DOMContentLoaded', bindShareButtons); } else { requestAnimationFrame(bindShareButtons); } document.addEventListener('click', function(e){ const shareBtn=e.target.closest && e.target.closest('.h-share'); if(shareBtn && !shareBtn.dataset.hShareBound){ handleShareClick.call(shareBtn, e); } }, true); document.addEventListener('click', e=>{ if(e.target===modal) closeModal(); if(e.target.closest && e.target.closest('.hsm-close')){ e.preventDefault(); closeModal(); } if(copyBtn && (e.target===copyBtn || (e.target.closest && e.target.closest('.hsm-copy')))) { e.preventDefault(); copyCurrent(); } }); document.addEventListener('keydown', e=>{ if(e.key==='Escape' && isOpen()) closeModal(); }); function trapFocus(){ if(trapBound) return; trapBound=true; modal.addEventListener('keydown', f=>{ if(f.key==='Tab' && isOpen()){ const focusable=[...modal.querySelectorAll('a[href],button,input,textarea,select,[tabindex]:not([tabindex="-1"])')].filter(el=>!el.hasAttribute('disabled')); if(!focusable.length) return; const first=focusable[0]; const last=focusable[focusable.length-1]; if(f.shiftKey && document.activeElement===first){ f.preventDefault(); last.focus(); } else if(!f.shiftKey && document.activeElement===last){ f.preventDefault(); first.focus(); } } }); } if(closeBtn) closeBtn.addEventListener('click', e=>{ e.preventDefault(); closeModal(); }); })(); </script><p>Complete version history and release notes for Geode graph database.</p> <h3 id="current-status-__geode_release_month_year__" class="position-relative d-flex align-items-center group"> <span>Current Status (&lt;strong&gt;March 2026&lt;/strong&gt;)</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="current-status-__geode_release_month_year__" aria-haspopup="dialog" aria-label="Share link: Current Status (GEODE_)"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h3><p><strong>Current stable release</strong>: <code>v0.2.18</code> <strong>Current development branch</strong>: <code>main</code> (unreleased)</p> <p>The docs site was last synchronized with Geode changes on February 13, 2026. Since then, <code>../geode</code> has added 316 commits across storage-engine migration, DSN graph binding, graph-storage integration, QUIC transport work, security hardening, gRPC parity, CTE execution, and ARM32 compatibility.</p> <p><strong>Current quality snapshot</strong>:</p> <ul> <li><code>619/619</code> unit tests passing on the <code>v0.2.18</code> release line</li> <li>Full geodetestlab audit on 2026-03-29: <code>3847 passed</code>, <code>70 failed</code>, <code>35 skipped</code> (<code>3952</code> total)</li> <li><code>70/70</code> GQL conformance profile tests still tracked as passing</li> <li>Three currently documented open gaps on <code>main</code>: <ul> <li><code>GAP-0270</code>: CLI auth commands still operate on local storage instead of delegating to a running server</li> <li><code>GAP-0271</code>: FLE role parsing must reject semicolon-delimited role injection</li> <li><code>GAP-0272</code>: <code>geode query -</code> can fail silently on one bulk <code>MERGE</code> stdin batch</li> </ul> </li> </ul> <h3 id="recent-mainline-work" class="position-relative d-flex align-items-center group"> <span>Recent Mainline Work</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="recent-mainline-work" aria-haspopup="dialog" aria-label="Share link: Recent Mainline Work"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h3><p>These changes reflect unreleased follow-up work observed on <code>main</code> during the March 2026 sync window.</p> <h4 id="storage-reliability-and-restart-correctness" class="position-relative d-flex align-items-center group"> <span>Storage reliability and restart correctness</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="storage-reliability-and-restart-correctness" aria-haspopup="dialog" aria-label="Share link: Storage reliability and restart correctness"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><ul> <li>Removed legacy <code>graph_store.dat</code> persistence on <code>main</code>; engine-backed persistence is now the only path</li> <li>Persisted graph name-to-UUID mappings so restarts reopen the correct on-disk graph directories</li> <li>Rebuilt free-space bitmaps on open so previously written pages remain visible after restart</li> <li>Reloaded in-memory node/edge state after catalog open so engine-backed graphs repopulate correctly</li> <li>Persisted adapter label dictionaries alongside graph checkpoints</li> <li>Fixed UUID truncation and UUID-to-slot translation errors that affected restart correctness</li> </ul> <h4 id="encryption-and-quic-follow-ups" class="position-relative d-flex align-items-center group"> <span>Encryption and QUIC follow-ups</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="encryption-and-quic-follow-ups" aria-haspopup="dialog" aria-label="Share link: Encryption and QUIC follow-ups"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><ul> <li>Wired pager-level TDE page encryption into graph-storage read/write paths</li> <li>Upgraded the QUIC dependency and switched accept handling to condition-variable waiting</li> <li>Reduced QUIC idle polling frequency to lower background CPU usage</li> </ul> <h4 id="audit-updates" class="position-relative d-flex align-items-center group"> <span>Audit updates</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="audit-updates" aria-haspopup="dialog" aria-label="Share link: Audit updates"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><ul> <li>Published the latest full-suite audit results and the three remaining open gaps (<code>GAP-0270</code> through <code>GAP-0272</code>)</li> </ul> <h3 id="stable-releases" class="position-relative d-flex align-items-center group"> <span>Stable Releases</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="stable-releases" aria-haspopup="dialog" aria-label="Share link: Stable Releases"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h3> <h4 id="v0215---2026-03-29" class="position-relative d-flex align-items-center group"> <span>[v0.2.15] - 2026-03-29</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v0215---2026-03-29" aria-haspopup="dialog" aria-label="Share link: [v0.2.15] - 2026-03-29"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><strong>Status</strong>: Stable patch release</p> <p><strong>Highlights</strong>:</p> <ul> <li>Fixed UUIDv7 generation on 32-bit ARM by replacing unsupported 64-bit atomics with mutex-protected state</li> <li>Carried forward the CTE execution and DOT output fixes from <code>v0.2.14</code></li> <li>Confirmed all cross-compile targets and <code>619/619</code> unit tests passing on the release line</li> </ul> <h4 id="v0214---2026-03-28" class="position-relative d-flex align-items-center group"> <span>[v0.2.14] - 2026-03-28</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v0214---2026-03-28" aria-haspopup="dialog" aria-label="Share link: [v0.2.14] - 2026-03-28"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><strong>Status</strong>: Stable patch release</p> <p><strong>Highlights</strong>:</p> <ul> <li>Wired <code>WITH RECURSIVE</code> / CTE execution into the query engine</li> <li>Fixed DOT graph output regressions</li> <li>Corrected test-harness false positives that rejected valid GQL query text</li> <li>Improved full-suite results to <code>3692/3926</code> passing on the tagged release</li> </ul> <h4 id="v0213---2026-03-27" class="position-relative d-flex align-items-center group"> <span>[v0.2.13] - 2026-03-27</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v0213---2026-03-27" aria-haspopup="dialog" aria-label="Share link: [v0.2.13] - 2026-03-27"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><strong>Status</strong>: Stable feature/performance release</p> <p><strong>Highlights</strong>:</p> <ul> <li>Added server-side QUIC stream multiplexing</li> <li>Added a dedicated poll thread and improved accept-loop behavior</li> <li>Updated vendored QUIC code for ACK-race, handshake-lock, and bytes-in-flight fixes</li> <li>Increased measured single-client load throughput from roughly <code>19 QPS</code> to <code>247 QPS</code></li> </ul> <h4 id="v0212---2026-03-27" class="position-relative d-flex align-items-center group"> <span>[v0.2.12] - 2026-03-27</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v0212---2026-03-27" aria-haspopup="dialog" aria-label="Share link: [v0.2.12] - 2026-03-27"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><strong>Status</strong>: Stable hardening release</p> <p><strong>Highlights</strong>:</p> <ul> <li>Wired RLS filtering, auth rate limiting, and CDC locking into the gRPC transport</li> <li>Populated per-graph <code>.store</code> files during persistence and shutdown checkpointing</li> <li>Removed admin password leakage from structured logs</li> <li>Added SSRF validation for webhook URLs</li> <li>Improved large-graph persistence behavior by streaming non-TDE loads and reducing TDE finalization memory pressure</li> <li>Tagged full-suite result: <code>3891 passed</code>, <code>0 failed</code>, <code>35 skipped</code> (<code>3926</code> total)</li> </ul> <h4 id="v020---v0211---2026-03-26-through-2026-03-27" class="position-relative d-flex align-items-center group"> <span>[v0.2.0 - v0.2.11] - 2026-03-26 through 2026-03-27</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v020---v0211---2026-03-26-through-2026-03-27" aria-haspopup="dialog" aria-label="Share link: [v0.2.0 - v0.2.11] - 2026-03-26 through 2026-03-27"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><strong>Series summary</strong>:</p> <ul> <li>Added DSN graph binding with HELLO-time graph resolution and session isolation</li> <li>Integrated the graph-storage engine behind the existing execution engine</li> <li>Added per-graph checkpoint hooks, storage flush fixes, and graph-routing safety work</li> <li>Hardened TLS and certificate handling, including local CA auto-detection and system-readable cert paths</li> <li>Closed multiple security gaps: <ul> <li>cryptographic randomness for MFA secrets</li> <li><code>--graph</code> validation to prevent injection</li> <li>QUIC auth rate limiting</li> <li>constant-time token comparisons</li> <li>metrics bound to localhost by default</li> </ul> </li> <li>Fixed DISTINCT collision verification and several adjacency-index performance issues</li> </ul> <h4 id="v0111---v0139---2026-02-27-through-2026-03-25" class="position-relative d-flex align-items-center group"> <span>[v0.1.11 - v0.1.39] - 2026-02-27 through 2026-03-25</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v0111---v0139---2026-02-27-through-2026-03-25" aria-haspopup="dialog" aria-label="Share link: [v0.1.11 - v0.1.39] - 2026-02-27 through 2026-03-25"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><strong>Series summary</strong>:</p> <ul> <li>Introduced graph-backed authentication storage with HMAC integrity verification and offline <code>auth init|reseal|verify</code> workflows</li> <li>Added API key, MFA, and auth graph persistence improvements</li> <li>Fixed DNS resolution, hostname handling, and QUIC handshake regressions</li> <li>Added QUIC keepalive and concurrency fixes for the shell and clients</li> <li>Added per-graph storage isolation, automatic migration away from monolithic storage, and updated backup/restore flows</li> <li>Fixed large-result <code>ORDER BY</code> crashes (<code>GAP-0257</code>)</li> <li>Added DSN graph binding, graph-bound session enforcement, and server-side graph auto-create semantics</li> </ul> <h4 id="v013---production-ready-release-january-2026" class="position-relative d-flex align-items-center group"> <span>[v0.1.3] - Production Ready Release (January 2026)</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="v013---production-ready-release-january-2026" aria-haspopup="dialog" aria-label="Share link: [v0.1.3] - Production Ready Release (January 2026)"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><p><code>v0.1.3</code> remains the original production-ready milestone that first brought the docs site into parity: GQL compliance, enterprise security, backup/recovery, analytics, and the first stable operational baseline.</p> <h3 id="release-line-summary" class="position-relative d-flex align-items-center group"> <span>Release Line Summary</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="release-line-summary" aria-haspopup="dialog" aria-label="Share link: Release Line Summary"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h3><table> <thead> <tr> <th>Series</th> <th>Window</th> <th>Primary Changes</th> </tr> </thead> <tbody> <tr> <td><code>v0.2.15</code></td> <td>2026-03-29</td> <td>ARM32 UUIDv7 fix, CTE execution, DOT output</td> </tr> <tr> <td><code>v0.2.12-v0.2.14</code></td> <td>2026-03-27 to 2026-03-28</td> <td>gRPC parity, QUIC multiplexing, CTE execution, test-harness fixes</td> </tr> <tr> <td><code>v0.2.0-v0.2.11</code></td> <td>2026-03-26 to 2026-03-27</td> <td>DSN graph binding, graph-storage integration, security hardening</td> </tr> <tr> <td><code>v0.1.11-v0.1.39</code></td> <td>2026-02-27 to 2026-03-25</td> <td>auth graph storage, TLS/QUIC fixes, per-graph storage, large-result stability</td> </tr> <tr> <td><code>v0.1.3</code></td> <td>2026-01</td> <td>original production-ready milestone</td> </tr> </tbody> </table> <h3 id="upgrade-notes" class="position-relative d-flex align-items-center group"> <span>Upgrade Notes</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="upgrade-notes" aria-haspopup="dialog" aria-label="Share link: Upgrade Notes"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h3> <h4 id="recommended-reading-before-upgrading" class="position-relative d-flex align-items-center group"> <span>Recommended reading before upgrading</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="recommended-reading-before-upgrading" aria-haspopup="dialog" aria-label="Share link: Recommended reading before upgrading"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h4><ul> <li>Read the <a href="/docs/reference/dsn/" ><code>DSN</code> specification</a> if you use connection strings or graph-bound sessions</li> <li>Read the <a href="/docs/operations/upgrades/" ><code>Upgrade Procedures</code></a> page before moving from <code>v0.1.x</code> into <code>v0.2.x</code></li> <li>Review the security pages if you depend on auth automation, API keys, or FLE access controls</li> <li>If you need the post-<code>v0.2.15</code> storage and pager-encryption fixes, track <code>main</code> or wait for the next patch tag rather than assuming they are part of <code>v0.2.15</code></li> </ul> <h3 id="references" class="position-relative d-flex align-items-center group"> <span>References</span> <button type="button" class="h-share btn btn-link p-0 text-decoration-none link-secondary opacity-50 hover-opacity-100 transition-all ms-1" data-share-target="references" aria-haspopup="dialog" aria-label="Share link: References"> <i class="fa-sharp-duotone fa-solid fa-share-nodes" aria-hidden="true" style="font-size: 0.8em;"></i> <span class="visually-hidden">Share link</span> </button> </h3><ul> <li><a href="/docs/releases/" >Releases</a> </li> <li><a href="/docs/operations/upgrades/" >Upgrade Procedures</a> </li> <li><a href="/docs/reference/dsn/" >DSN Specification</a> </li> <li><a href="/docs/development/testing-guide/" >Testing Guide</a> </li> </ul>