tag:github.com,2008:https://github.com/GobbyAI/gobby/releases
Release notes from gobby
2026-02-04T13:50:25Z
tag:github.com,2008:Repository/1116509875/v0.2.11
2026-02-04T14:24:50Z
v0.2.11
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.9...v0.2.11"><tt>v0.2.9...v0.2.11</tt></a></p>
github-actions[bot]
tag:github.com,2008:Repository/1116509875/v0.2.9
2026-01-30T23:35:29Z
v0.2.9
<h2>What's Changed</h2>
<ul>
<li>Release v0.2.8 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joshwilhelmi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joshwilhelmi">@joshwilhelmi</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3873694634" data-permission-text="Title is private" data-url="https://github.com/GobbyAI/gobby/issues/4" data-hovercard-type="pull_request" data-hovercard-url="/GobbyAI/gobby/pull/4/hovercard" href="https://github.com/GobbyAI/gobby/pull/4">#4</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.8...v0.2.9"><tt>v0.2.8...v0.2.9</tt></a></p>
<h2>What's Changed</h2>
<ul>
<li>Release v0.2.8 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joshwilhelmi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joshwilhelmi">@joshwilhelmi</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3873694634" data-permission-text="Title is private" data-url="https://github.com/GobbyAI/gobby/issues/4" data-hovercard-type="pull_request" data-hovercard-url="/GobbyAI/gobby/pull/4/hovercard" href="https://github.com/GobbyAI/gobby/pull/4">#4</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.8...v0.2.9"><tt>v0.2.8...v0.2.9</tt></a></p>
joshwilhelmi
tag:github.com,2008:Repository/1116509875/v0.2.8
2026-01-30T03:02:03Z
v0.2.8
<p>See CHANGELOG.md for details</p>
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.7...v0.2.8"><tt>v0.2.7...v0.2.8</tt></a></p>
joshwilhelmi
tag:github.com,2008:Repository/1116509875/v0.2.7
2026-01-28T19:05:45Z
v0.2.7
<h2>[0.2.7] - 2025-01-28</h2>
<h3>Major Features</h3>
<h4>Unified Spawn Agent API</h4>
<ul>
<li>New unified <code>spawn_agent</code> MCP tool replacing legacy spawn tools</li>
<li><code>IsolationHandler</code> abstraction with <code>CurrentIsolationHandler</code>, <code>WorktreeIsolationHandler</code>, and <code>CloneIsolationHandler</code></li>
<li><code>SpawnExecutor</code> for unified spawn dispatch across all isolation modes</li>
<li><code>generic.yaml</code> agent and workflow definitions as reference implementations</li>
<li>Deprecation warnings added to <code>spawn_agent_in_worktree</code>, <code>spawn_agent_in_clone</code>, and <code>start_agent</code></li>
</ul>
<h4>Agent Sandboxing</h4>
<ul>
<li><code>SandboxConfig</code> models for agent spawning with network and filesystem controls</li>
<li>Sandbox resolvers for CLI-specific configuration (Claude, Gemini, Codex)</li>
<li>Sandbox params in <code>spawn_agent</code> MCP tool and <code>build_cli_command</code></li>
<li><code>sandboxed.yaml</code> example agent demonstrating sandbox configuration</li>
<li>Integration and unit tests for sandbox functionality</li>
</ul>
<h4>Project-Scoped Session References</h4>
<ul>
<li>Database schema for project-scoped session sequential numbers</li>
<li>CLI integration for displaying <code>#N</code> style session refs</li>
<li>MCP tools and display updates for session refs</li>
<li>Migration 77 for session seq_num backfill</li>
</ul>
<h4>Database Migration V2 Baseline</h4>
<ul>
<li>Flattened baseline schema (BASELINE_SCHEMA_V2) for fresh installs</li>
<li><code>use_flattened_baseline</code> config option (defaults to True)</li>
<li><code>schema_dump.sql</code> for schema documentation</li>
<li>Migration documentation updates</li>
</ul>
<h3>Architecture Refactoring</h3>
<ul>
<li>Memory module decomposition (ingestion, search, services packages)</li>
<li>Session tools decomposition (_messages.py, _handoff.py, _crud.py, _commits.py)</li>
<li>Task enforcement decomposition (enforcement/ package)</li>
<li>Codex adapter decomposition (codex_impl/ package)</li>
<li>Config module cleanup: removed deprecated prompt fields, added prompt_path pattern</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Fixed <code>delete_task</code> recursion bug when parent task depends on children</li>
<li>Fixed config tests for <code>prompt_path</code> refactor</li>
<li>Fixed <code>mock_memory_manager.get_related</code> to use <code>AsyncMock</code></li>
<li>Fixed mypy type errors in 4 files</li>
<li>Fixed pytest failures from config refactor and async/sync mismatches</li>
<li>Fixed task lifecycle tools returning <code>success: true</code> on errors</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Added <code>search.md</code> guide for unified search functionality</li>
<li>Added <code>configuration.md</code> guide for daemon configuration</li>
<li>Comprehensive documentation guide updates</li>
<li>Updated doctor skill with Phase 5 Security Audit section</li>
</ul>
<p>See CHANGELOG.md for full details.</p>
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.6...v0.2.7"><tt>v0.2.6...v0.2.7</tt></a></p>
joshwilhelmi
tag:github.com,2008:Repository/1116509875/v0.2.6
2026-01-25T21:17:02Z
v0.2.6
<p>Release 0.2.6</p>
<h2>Changes</h2>
<ul>
<li>Fix bandit B110 warning in detection_helpers.py</li>
<li>Add moreutils timestamps to pre-push-test.sh for debugging</li>
<li>Various improvements and bug fixes from dev branch</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Release 0.2.6 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joshwilhelmi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joshwilhelmi">@joshwilhelmi</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3853835342" data-permission-text="Title is private" data-url="https://github.com/GobbyAI/gobby/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/GobbyAI/gobby/pull/3/hovercard" href="https://github.com/GobbyAI/gobby/pull/3">#3</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.5...v0.2.6"><tt>v0.2.5...v0.2.6</tt></a></p>
joshwilhelmi
tag:github.com,2008:Repository/1116509875/v0.2.5
2026-01-21T15:06:06Z
v0.2.5
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/GobbyAI/gobby/compare/v0.2.1...v0.2.5"><tt>v0.2.1...v0.2.5</tt></a></p>
github-actions[bot]
tag:github.com,2008:Repository/1116509875/v0.2.1
2026-01-12T07:37:15Z
v0.2.1
<p>chore(release): bump version to 0.2.1</p>
joshwilhelmi
tag:github.com,2008:Repository/1116509875/v0.2.0
2026-01-08T20:35:08Z
chore: prepare v0.2.0 release for PyPI
<ul>
<li>Bump version to 0.2.0</li>
<li>Add PyPI metadata (readme, license, authors, keywords, classifiers)</li>
<li>Add project URLs pointing to GobbyAI/gobby</li>
</ul>
joshwilhelmi