<!-- CANARY: REQ=REQ-DOCS-001; FEATURE="Docs"; ASPECT=Documentation; STATUS=TESTED; OWNER=docs; UPDATED=2026-03-30 --> <h2 id="releases" class="position-relative d-flex align-items-center group"> <span>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="releases" aria-haspopup="dialog" aria-label="Share link: 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> </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, release notes, and upgrade guides for all Geode releases.</p> <h3 id="overview" class="position-relative d-flex align-items-center group"> <span>Overview</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="overview" aria-haspopup="dialog" aria-label="Share link: Overview"> <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>This section documents the current stable release, the active development line, and the major release series that landed after the docs site was last synchronized in February 2026.</p> <h3 id="current-release" class="position-relative d-flex align-items-center group"> <span>Current Release</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-release" aria-haspopup="dialog" aria-label="Share link: Current Release"> <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="__geode_tag__-current-stable" class="position-relative d-flex align-items-center group"> <span>&lt;strong&gt;v0.2.18&lt;/strong&gt; (Current Stable)</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="__geode_tag__-current-stable" aria-haspopup="dialog" aria-label="Share link: GEODE_ (Current Stable)"> <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>Release Date</strong>: <strong>March 30, 2026</strong> <strong>Status</strong>: Stable patch release</p> <p><strong>Key Highlights</strong>:</p> <ul> <li>fixes UUIDv7 generation for 32-bit ARM targets</li> <li>includes the March 28 CTE execution and DOT output fixes</li> <li>confirms <code>619/619</code> unit tests passing on the release line</li> <li>continues the <code>v0.2.x</code> storage, QUIC, and security work started earlier in March</li> </ul> <p>See <a href="/docs/reference/changelog/" >Changelog</a> for complete details.</p> <h3 id="development-branch" class="position-relative d-flex align-items-center group"> <span>Development Branch</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="development-branch" aria-haspopup="dialog" aria-label="Share link: Development Branch"> <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="main-unreleased" class="position-relative d-flex align-items-center group"> <span>main (unreleased)</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="main-unreleased" aria-haspopup="dialog" aria-label="Share link: main (unreleased)"> <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>The <code>main</code> branch can move ahead of <code>v0.2.18</code>. Recent follow-up areas have included:</p> <ul> <li>engine-backed persistence only (legacy <code>graph_store.dat</code> removed)</li> <li>graph name-to-UUID persistence fixes</li> <li>free-space bitmap rebuild-on-open</li> <li>post-open reload of graph state into memory</li> <li>pager-level TDE page encryption wiring</li> <li>lower-idle-CPU QUIC accept/poll behavior</li> <li>current open-gap documentation for <code>GAP-0270</code> through <code>GAP-0272</code></li> </ul> <h3 id="release-schedule" class="position-relative d-flex align-items-center group"> <span>Release Schedule</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-schedule" aria-haspopup="dialog" aria-label="Share link: Release Schedule"> <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>Geode follows a predictable release schedule:</p> <ul> <li><strong>Major Releases</strong>: Architectural changes and storage-format shifts</li> <li><strong>Minor Releases</strong>: New features and transport/security expansions</li> <li><strong>Patch Releases</strong>: Bug fixes, security hardening, and release validation</li> </ul> <h3 id="version-history" class="position-relative d-flex align-items-center group"> <span>Version History</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="version-history" aria-haspopup="dialog" aria-label="Share link: Version History"> <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="v0212---v0215-march-27-29-2026" class="position-relative d-flex align-items-center group"> <span>v0.2.12 - v0.2.15 (March 27-29, 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="v0212---v0215-march-27-29-2026" aria-haspopup="dialog" aria-label="Share link: v0.2.12 - v0.2.15 (March 27-29, 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><ul> <li>gRPC parity fixes for RLS, auth rate limiting, CDC, and backup lock behavior</li> <li>QUIC stream multiplexing and major poll-loop/accept-loop performance work</li> <li>CTE execution, DOT output fixes, and cross-compilation hardening for 32-bit ARM</li> <li>full-suite and unit-test hardening across the new storage path</li> </ul> <h4 id="v020---v0211-march-26-27-2026" class="position-relative d-flex align-items-center group"> <span>v0.2.0 - v0.2.11 (March 26-27, 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="v020---v0211-march-26-27-2026" aria-haspopup="dialog" aria-label="Share link: v0.2.0 - v0.2.11 (March 26-27, 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><ul> <li>DSN graph binding and HELLO-time graph resolution</li> <li>graph-storage engine integration with adapter bridge</li> <li>TLS/CA certificate handling improvements and local CA auto-detection</li> <li>security hardening for MFA, <code>--graph</code>, KMS tokens, metrics binding, and password handling</li> </ul> <h4 id="v0111---v0139-february-27-march-25-2026" class="position-relative d-flex align-items-center group"> <span>v0.1.11 - v0.1.39 (February 27-March 25, 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="v0111---v0139-february-27-march-25-2026" aria-haspopup="dialog" aria-label="Share link: v0.1.11 - v0.1.39 (February 27-March 25, 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><ul> <li>auth graph storage, HMAC integrity verification, and offline auth maintenance commands</li> <li>QUIC/TLS handshake, DNS, and shell keepalive fixes</li> <li>per-graph storage isolation and backup/restore changes</li> <li><code>ORDER BY</code> large-result crash fix</li> <li>DSN graph binding groundwork culminating in <code>v0.1.39</code></li> </ul> <h4 id="v013-january-2026" class="position-relative d-flex align-items-center group"> <span>v0.1.3 (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-january-2026" aria-haspopup="dialog" aria-label="Share link: v0.1.3 (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><ul> <li>original production-ready release</li> <li>GQL compliance milestone</li> <li>enterprise security, analytics, and operational baseline</li> </ul> <h3 id="upgrading-geode" class="position-relative d-flex align-items-center group"> <span>Upgrading Geode</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="upgrading-geode" aria-haspopup="dialog" aria-label="Share link: Upgrading 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> <h4 id="before-upgrading" class="position-relative d-flex align-items-center group"> <span>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="before-upgrading" aria-haspopup="dialog" aria-label="Share link: 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><ol> <li><strong>Read Release Notes</strong>: Review changes, especially storage and transport changes</li> <li><strong>Test in Staging</strong>: Upgrade a staging environment first</li> <li><strong>Backup Data</strong>: Create a full backup before upgrading</li> <li><strong>Check Compatibility</strong>: Verify client library, DSN, and certificate usage</li> <li><strong>Review storage format changes</strong>: <code>v0.1.28+</code> introduced per-graph storage; <code>main</code> after <code>v0.2.15</code> removes the legacy monolithic path entirely</li> </ol> <h4 id="example-docker-upgrade" class="position-relative d-flex align-items-center group"> <span>Example Docker Upgrade</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="example-docker-upgrade" aria-haspopup="dialog" aria-label="Share link: Example Docker Upgrade"> <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><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl"><span class="c1"># 1. Backup</span> </span></span><span class="line"><span class="cl">docker <span class="nb">exec</span> geode geode backup --output /backups/pre-upgrade.tar.gz </span></span><span class="line"><span class="cl"> </span></span><span class="line"><span class="cl"><span class="c1"># 2. Pull new image</span> </span></span><span class="line"><span class="cl">docker pull geodedb/geode:0.2.18 </span></span><span class="line"><span class="cl"> </span></span><span class="line"><span class="cl"><span class="c1"># 3. Stop container</span> </span></span><span class="line"><span class="cl">docker stop geode </span></span><span class="line"><span class="cl"> </span></span><span class="line"><span class="cl"><span class="c1"># 4. Start new container (data persists in volume)</span> </span></span><span class="line"><span class="cl">docker run -d <span class="se">\ </span></span></span><span class="line"><span class="cl"><span class="se"></span> -p 3141:3141 <span class="se">\ </span></span></span><span class="line"><span class="cl"><span class="se"></span> -v geode-data:/var/lib/geode <span class="se">\ </span></span></span><span class="line"><span class="cl"><span class="se"></span> --name geode <span class="se">\ </span></span></span><span class="line"><span class="cl"><span class="se"></span> geodedb/geode:0.2.18 </span></span></code></pre></div> <h4 id="compatibility" class="position-relative d-flex align-items-center group"> <span>Compatibility</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="compatibility" aria-haspopup="dialog" aria-label="Share link: Compatibility"> <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><table> <thead> <tr> <th>Server Version</th> <th>Go Client</th> <th>Python Client</th> <th>Rust Client</th> <th>Zig Client</th> </tr> </thead> <tbody> <tr> <td>v0.2.x</td> <td>rolling</td> <td>0.3.19+</td> <td>0.1.1-alpha.8+</td> <td>0.1.0+</td> </tr> <tr> <td>v0.1.39</td> <td>rolling</td> <td>0.3.19+</td> <td>0.1.1-alpha.8+</td> <td>0.1.0+</td> </tr> </tbody> </table> <h3 id="breaking-change-themes" class="position-relative d-flex align-items-center group"> <span>Breaking-Change Themes</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="breaking-change-themes" aria-haspopup="dialog" aria-label="Share link: Breaking-Change Themes"> <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><code>v0.2.x</code> introduces graph-bound DSNs and stronger graph/session isolation semantics</li> <li>March 2026 storage work moved from monolithic persistence toward per-graph and graph-storage-backed layouts</li> <li>auth and security tooling now include offline graph-backed integrity workflows in addition to online login/session flows</li> </ul> <h3 id="related-documentation" class="position-relative d-flex align-items-center group"> <span>Related Documentation</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="related-documentation" aria-haspopup="dialog" aria-label="Share link: Related Documentation"> <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/reference/changelog/" >Changelog</a> </li> <li><a href="/docs/operations/upgrades/" >Upgrade Procedures</a> </li> <li><a href="/docs/reference/dsn/" >DSN Specification</a> </li> </ul>