Changelog

    What's New in Shopflow

    Every API update, SDK release, and platform improvement. In one place.

    RSS
    142 releases total
    Last updated Feb 18, 2026
    Updated weekly

    2026

    @shopflow/node
    v2.4.1
    PATCH
    Feb 18, 2026|View diff|

    Fix race condition in cart webhook handler

    • Fixed
      Webhook signature validation timeout on high-latency connections (>2s)
    • Fixed
      Concurrent cart.update() calls could silently drop items in edge cases
    • Updated
      axios 1.6.8 → 1.7.9
    • Updated
      TypeScript definitions for WebhookEvent type (adds .raw property)
    shopflow (Python)
    v2.1.0
    MINOR
    Feb 10, 2026|View diff|

    Add async/await support for all endpoints

    • Added
      AsyncClient class — full asyncio support
      async with shopflow.AsyncClient(key) as sf:
          products = await sf.products.list()
    • Added
      asyncio-compatible auto-pagination helper (async for product in sf.products...)
    • Added
      Pydantic v2 model support (replaces v1, fully backward compatible)
    • Deprecated
      Synchronous-only helper methods will be removed in v3.0.0

    Breaking Change — Action Required

    Pagination format changed from offset-based to cursor-based. Update your API calls before Mar 1, 2026.

    REST API
    v2
    BREAKING
    Feb 5, 2026|

    Cursor-based pagination replaces offset pagination

    • Removed
      page and per_page query params (deprecated since v1.8, Jan 2025)
    • Added
      cursor, limit, and has_more response fields
    • Updated
      All list endpoints now return: {"data": [...], "pagination": {"cursor": "cur_01HXYZ", "hasMore": true, "limit": 20}}
      {
        "data": [...],
        "pagination": {
          "cursor": "cur_01HXYZ",
          "hasMore": true,
          "limit": 20
        }
      }
    • Added
      X-Shopflow-Cursor response header for quick cursor extraction
    View Migration Guide
    @shopflow/react
    v1.5.0
    MINOR
    Jan 28, 2026|View diff|

    React Server Components and Next.js App Router support

    • Added
      Full React Server Components (RSC) compatibility — ShopflowProvider, CartButton work in RSC
    • Added
      Next.js App Router examples + documentation
    • Added
      useServerCart hook for Server Actions (Next.js 14+)
    • Fixed
      SSR hydration mismatch on cart count
    • Fixed
      TypeScript strict mode errors in CartContext

    Security Update

    Security update. Update immediately.

    Platform
    SECURITY
    Jan 20, 2026|

    Critical: API key rotation after third-party incident

    • Security
      Rotated all API keys exposed in third-party security audit (CVE-2026-0142)
    • Security
      Added API key fingerprinting to detect leaked credentials automatically
    • Added
      Instant key revocation dashboard (Settings → API Keys → Revoke All)
    • Added
      Email alerts for API key usage from new IP addresses
    Platform
    v3.0
    MAJOR
    Jan 15, 2026|

    Shopflow Platform v3.0 — GraphQL subscriptions, B2B engine, and multi-warehouse

    • Added
      GraphQL subscriptions (real-time via WebSocket) for inventory + orders
    • Added
      Native B2B engine — price lists, Net 30/60/90, credit limits, account hierarchies
    • Added
      Multi-warehouse routing — smart FEFO order allocation across unlimited locations
    • Added
      Headless storefront toolkit — React, Vue, Remix, Astro official integrations
    • Added
      Expiry date tracking for F&B and perishable goods workflows
    • Updated
      Dashboard UI redesigned (v3.0) — 40% faster load times
    Read Full Release Notes

    Stay in the Loop

    Get notified when we ship new features, fix bugs, or release breaking changes.

    Breaking changes only
    Weekly digest option
    Unsubscribe anytime
    Or subscribe via RSS