I Shipped...

9 March 2026 (1PR)

a typo fix in the Tiptap Svelte installation guide

Small but satisfying: I spotted a one-character typo in the Svelte installation instructions on the Tiptap docs site and sent in a fix.

7 March 2026 (3PRs)

a compatibility fix for better-auth 1.5.3 in jazz-tools

The better-auth library released v1.5.3, which moved where certain functions live inside the package. Jazz was importing createAuthMiddleware from better-auth/plugins, but that location was removed in the newer version. I updated the import to use better-auth/api instead, which works across versions and keeps the integration working.

guides, quickstarts, and framework patterns for the docs

I added a new guides section to the Jazz docs with quickstart guides for Vue and TypeScript, framework patterns with React/Vue/Svelte tabs, binary data handling, and a WHERE operator reference.

options object support for Svelte QuerySubscription

I updated the Svelte QuerySubscription to accept an options object as its second argument instead of just a bare string. This brings it in line with the React API and makes it easier to pass configuration like the durability tier setting.

5 March 2026 (5PRs)

a built-in MCP docs server for jazz-tools

I built an MCP server into jazz-tools that exposes Jazz documentation as searchable tools for AI assistants. You can run it with npx jazz-tools mcp and it gives AI coding assistants direct access to the Jazz docs.

a fix for a callback race condition in subscriptions

I fixed a race condition where the subscription callback could fire before the internal tracking map was ready. The synchronous immediate_tick() call was triggering the callback before the sender could be inserted into the shared subscription map.

a fix for empty query results from anonymous clients

I fixed a bug where demo and anonymous clients always got empty query results. They were sending no session in their subscription payloads, and a previous change had made the server require a session for policy evaluation. Now the server falls back to the session it established during the connection handshake.

corrected docstrings for database operations

I fixed incorrect docstrings in the database module that described insert, update, and deleteFrom as synchronous when they’re actually async. Small fix, but wrong docs can mislead developers.

EXISTS subquery support in policy expressions

I added support for EXISTS (SELECT FROM ...) subqueries in the SQL policy expression parser, and fixed a bug where the outer row’s ID wasn’t being resolved correctly in policy conditions. This lets you write more expressive permission rules.

3 March 2026 (1PR)

a fix to pass SSH agent variables through to the sandbox

When running commands like git fetch inside the sandbox, they couldn’t talk to my running SSH agent because the relevant environment variables were being stripped out. That meant SSH would pop up and ask for my passphrase on the terminal, which garbled the Claude Code session I was working in. I added SSH_AUTH_SOCK and SSH_AGENT_PID to the list of variables that get passed through, so SSH “just works” inside the sandbox.

2 March 2026 (4PRs)

a fix for corrupted columns on subscription updates

I fixed a bug where using .include() caused base columns to get corrupted when a subscription fired a second time. The reevaluation function was being passed the output tuple (which included extra joined columns) instead of the original base columns, causing data to shift around.

a fix for DROP COLUMN generation in multi-table migrations

I fixed a bug where running a migration on multiple tables at once only generated the DROP COLUMN SQL for the first table, silently skipping the rest.

reliable end-to-end test setup for Svelte

I replaced a hand-rolled binary spawn in the Svelte end-to-end test setup with the official startLocalJazzServer helper, giving each test run its own port. This made the tests more reliable and less prone to port conflicts.

Wequencer, a collaborative real-time music sequencer example

I built Wequencer — a collaborative real-time music sequencer — as a new example app for Jazz. It’s built with Svelte 5 and Tone.js, and lets multiple users compose music together in real time.

27 February 2026 (1PR)

a fix for missing policy enforcement in queries

I fixed an issue where query() and subscribe() weren’t applying permission policies because the session wasn’t being passed through. Now the client defaults to the JWT session resolved at construction time, so policies are always enforced.

26 February 2026 (2PRs)

new apps to the Jazz showcase and redesigned the layout to a card grid

The Jazz website has a showcase page listing apps built with Jazz. I added two new projects — Alkalye and Hifz Garden — and redesigned the layout from a vertical list to a 3-column card grid with randomised ordering on each load. I also added a “Submit your app” button so other developers can easily get their projects listed.

Svelte 5 bindings for jazz-tools

I added Svelte 5 bindings for jazz-tools, including a reactive QuerySubscription class, context helpers, a user-switcher component, and a hook for linking external identities. This lets Svelte developers use Jazz with idiomatic Svelte 5 rune-based reactivity.

25 February 2026 (1PR)

support for Real (float) column types

I added support for floating-point columns in the database. The TypeScript side already allowed col.float() and generated the right SQL, but the Rust SQL parser was rejecting it with an “UnsupportedType” error.

23 February 2026 (2PRs)

a fix for garbled query results when using include

I fixed a bug where using .include() on message queries caused the message text to come out garbled. The root cause was that an internal descriptor wasn’t being updated after array subqueries were compiled, so the data was being read from the wrong columns.

a fix for incorrect pluralization in the code generator

I replaced a hand-rolled singularize function with the pluralize-esm library. The old function only handled a few suffix patterns and got common English plurals wrong — for example, it was turning “canvases” into “Canvase” instead of “Canvas”.