Inngest Release Notes

Follow

28 release notes curated from 21 sources by the Releasebot Team. Last updated: Jun 26, 2026

Get this feed:
  • Dec 10, 2025
    • Date parsed from source:
      Dec 10, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    Checkpointing: Near-zero latency for durable workflows

    Inngest releases a developer preview of Checkpointing for its orchestration engine, bringing durable workflows with near-zero inter-step latency and faster end-to-end execution. The opt-in feature is available at the client or function level for real-time workflows, including AI experiences.

    We're thrilled to release the developer preview of a new Inngest's orchestration engine capability: Checkpointing. By enabling checkpointing, Inngest workflows stay durable while achieving near-zero inter-step latency.

    Checkpointing is designed to support the growing need for real-time Inngest workflows鈥攕uch as AI workflows鈥攑owering interactive and reliable user experiences.

    We've been dogfooding Checkpointing for several weeks, and the results are astonishing: near-zero inter-step latency and an overall 50% reduction in workflow duration.

    Checkpointing is currently available in developer preview as an opt-in configuration at the client or function level.

    Get started and learn more about Checkpointing.

    Original source
  • Oct 27, 2025
    • Date parsed from source:
      Oct 27, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    Dev Server MCP

    Inngest launches MCP Integration for its dev server, bringing AI-assisted development workflows to local functions. It connects Claude Code, Cursor and other assistants for seamless testing and debugging, with tools for events, tracing, function runs, offline docs and integration testing.

    We are excited to announce the release of MCP Integration, bringing AI-assisted development workflows to the Inngest dev server. Connect Claude Code, Cursor, and other AI assistants directly to your local Inngest functions for seamless testing and debugging.

    The MCP server provides comprehensive access to your development environment with 8 powerful tools:

    • Event management - Send events and discover registered functions
    • Real-time monitoring - Track function execution and debug failures with detailed traces
    • Direct function invocation - Execute functions synchronously and get immediate results
    • Documentation access - Search and read Inngest documentation offline
    • Integration testing - Poll multiple runs to verify complex workflows

    Learn more in the MCP Integration documentation.

    Original source
  • All of your release notes in one feed

    Join Releasebot and get updates from Inngest and hundreds of other software products.

    Create account
  • Oct 3, 2025
    • Date parsed from source:
      Oct 3, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    New webhook content types

    Inngest adds more flexible webhook support with x-www-form-urlencoded and multipart/form-data content types, giving webhook transforms both a JSON body view and the raw request body as a string.

    Webhooks are now more flexible with the addition of x-www-form-urlencoded and multipart/form-data content types.

    When sending a request with either of these content types, your webhook transform will have access to both a JSON object representation of the body and the raw body as a string.

    For example, if you send a webhook request like the following:

    curl https://inn.gs/e/REDACTED \
      -H "content-type: application/x-www-form-urlencoded" \
      -d "name=Alice&messages=hello&messages=world"
    

    And your webhook transform looks like this:

    function transform(json, headers, queryParams, raw) {
    
      return {
    
        name: "hi",
    
        data: { json, raw },
    
      };
    
    };
    

    Then the resulting event data will be:

    {
    
      "json": {
    
        "messages": [
    
          "hello",
    
          "world"
    
        ],
    
        "name": [
    
          "Alice"
    
        ]
    
      },
    
      "raw": 
    
      "name=Alice&messages=hello&messages=world"
    
    }
    

    Note that the JSON object's values are always arrays of strings.

    Original source
  • Sep 26, 2025
    • Date parsed from source:
      Sep 26, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    Realtime support for Python (Beta)

    Inngest adds realtime support for Python, letting developers push durable workflow updates to the browser.

    We've released realtime support for Python (v0.5.9), enabling developers to build interactive applications that push updates from durable workflows to the browser.

    Read the full blog post or explore the realtime documentation for more details.

    Original source
  • Sep 26, 2025
    • Date parsed from source:
      Sep 26, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    Zod 4 and Standard Schema support in the TypeScript SDK

    Inngest adds Standard Schema support to its TypeScript SDK, letting users define event payload types with Zod 4 and more.

    Our TypeScript SDK now supports the Standard Schema interface, which allows you to now use Zod 4 to define your event payload types. The Standard Schema interface is a standard way to define event payload types in a way that is easy to use and understand. This means that schemas can now be defined with:

    • Zod
    • Valibot
    • ArkType
    • joi
    • and more!

    Upgrade to SDK v3.42.0 or higher and check out the documentation for more information.

    Original source
  • Sep 24, 2025
    • Date parsed from source:
      Sep 24, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    AgentKit: New useAgent hook for realtime streaming

    Inngest releases useAgent and useChat hooks for streaming realtime AgentKit updates to the browser.

    We've released useAgent and useChat, hooks for streaming realtime updates from your AgentKit agents to the browser.

    Read the full blog post or explore the documentation and guides for more information.

    Original source
  • Sep 22, 2025
    • Date parsed from source:
      Sep 22, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    step.run in REST APIs (Golang)

    Inngest releases the latest Go SDK with step.run for durable, observable REST APIs.

    We've released the latest Go SDK (v0.14.0), enabling you to use step.run in your REST APIs. You can now make any API endpoint durable and observable with a couple lines of code. TypeScript SDK support is coming soon.

    Read the full blog post or dive into the docs for more details.

    Original source
  • Jul 23, 2025
    • Date parsed from source:
      Jul 23, 2025
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    Advanced Event Search

    Inngest adds advanced event filters with CEL expressions and a new Events page search view.

    Advanced event filters are now available using a CEL expression. Access the new search functionality by clicking the "Show search" button on the Events page.

    Learn more about how to use this feature and view the list of searchable properties in our docs

    Original source
  • Jun 25, 2026
    • Date parsed from source:
      Jun 25, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.33.1-test.3

    Inngest ships a prerelease built from v1.33.1-test.3 with commit ef7617395b6c10ee87ddb558b0041548d5549e9d.

    Prerelease

    This prerelease was built from v1.33.1-test.3.

    Commit: ef7617395b6c10ee87ddb558b0041548d5549e9d

    Original source
  • Jun 24, 2026
    • Date parsed from source:
      Jun 24, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.33.1-test.2

    Inngest ships a prerelease built from v1.33.1-test.2 with commit 57d65b228ed991a33f0eee1577acb06731e00584.

    Prerelease

    This prerelease was built from v1.33.1-test.2.

    Commit: 57d65b228ed991a33f0eee1577acb06731e00584

    Original source
  • Jun 23, 2026
    • Date parsed from source:
      Jun 23, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.33.0

    Inngest adds debug API semaphore routes, invoke button session support, and Insights AI experiment updates.

    Changelog

    馃殌 Features

    (debugapi) Add semaphore routes to the debug API (#4488)

    (sessions) Allow sessions in invoke button (#4489)

    Insights ai experiments updates (#4492)

    馃殰 Refactor

    (queue) Make Producer configurable in Queue (#4078)

    Original source
  • Jun 22, 2026
    • Date parsed from source:
      Jun 22, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.32.0

    Inngest adds tracing, sessions page optimization, and new metrics and insights improvements.

    Changelog

    馃殌 Features

    • (tracing) Allow system queue tracing (#4442)
    • (score) Make score kind constant (#4482)
    • (sessions) Sessions page optimization (#4480)

    馃悰 Bug Fixes

    • (support) Fix local dev deps misalignment (#4472)
    • Update experiments docs links (#4481)

    鈿欙笍 Miscellaneous Tasks

    • Dedup parallel fan-in discovery via coalesce key (#4452)
    • (insights) Add "Open in Insights" button on Failed Functions chart on the Metrics page (#4046)
    • (metrics) Add counter to checkpoint ops (#4478)
    Original source
  • Jun 18, 2026
    • Date parsed from source:
      Jun 18, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.31.0

    Inngest adds session server parse and emit, a sessions dashboard UI, and trace view fixes for cleaner spans.

    Changelog

    馃殌 Features

    • Session server parse + emit (#4404)
    • Add sessions dashboard UI (#4403)

    馃悰 Bug Fixes

    • (traces) Deduplicate nonstep/step spans in trace view (#4448)
    • (extended traces) Reparent orphaned extended trace spans using span attributes (#4443)
    • (trace view) Fix the ordering/timestamps of finalization spans (#4456)

    馃捈 Other

    • (npm) Address UI dependency alerts (#4260)

    馃殰 Refactor

    • (devServer) New Information Architecture (#4395)
    Original source
  • Jun 17, 2026
    • Date parsed from source:
      Jun 17, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.30.0

    Inngest adds a V2 API rerun endpoint and CLI command for rerunning runs.

    Release Notes

    #4410 feat: v2 api rerun

    Adds Agentic/V2 REST API endpoint and CLI for POST /v2/runs/{run_id}/rerun:

    npx inngest-cli@latest api rerun 01KV5P4M13DQ5V9R3S1DT4JDVQ
    

    Changelog

    馃殌 Features

    V2 api rerun (#4410)

    Original source
  • Jun 17, 2026
    • Date parsed from source:
      Jun 17, 2026
    • First seen by Releasebot:
      Jun 26, 2026
    Inngest logo

    Inngest

    v1.29.0

    Inngest adds queue and executor improvements, a safer scoring dashboard UI, and several bug fixes that tighten cleanup, partition handling, run status reporting, and data-leak protection across the platform.

    Changelog

    馃殌 Features

    • (queue) Track earliest peek time before Constraint API (#4391)

    馃悰 Bug Fixes

    • Queue item cleanup race in non-key-queues postgres cancel path (#4337)
    • (dashboard) Use distinct speedometer icon for sidebar Overview (#4429)
    • (tests) Widen timing tolerance from 10ms to 100ms in TestStartAll/TestSingleSvcError (#4115)
    • Alias conflicting grpc import (#4436)
    • (tests) Replace 50ms settle delay with deterministic clock.BlockUntil() in TestQueueItemProcessWithConstraintChecks (#4434)
    • (queue) Ignore already-leased partitions during scan (#4438)
    • Keep completed runs from being reported as reverted (#4247)
    • (tests) Increase WaitForRunStatus timeouts in all affected E2E tests (#4435)
    • Make WaitForRunStatus tolerate transient not found GQL errors (#4206)
    • (executor) Always SavePending after parallel ops to coalesce discovery (#4021)
    • Scope GetSpanOutput query by run_id to prevent cross-run data leak (#4441)
    • (scoring) Improve scoring dashboard ui (#4433)

    馃И Testing

    • (cqrs) Cover all terminal trace run statuses (#4446)

    鈿欙笍 Miscellaneous Tasks

    • (tests) Fix flaky test status (#4439)
    • (tests) Flaky test fix (#4440)
    • Ttl upsert pkg (#4432)
    Original source
Releasebot

Curated by the Releasebot team

Releasebot is an aggregator of official release notes from hundreds of software vendors and thousands of sources.

Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.

Similar to Inngest with recent updates: