Shopify Release Notes

Last updated: Nov 5, 2025

Shopify Products

All Shopify Release Notes

  • Nov 5, 2025
    • Parsed from source:
      Nov 5, 2025
    • Detected by Releasebot:
      Nov 5, 2025
    • Modified by Releasebot:
      Nov 7, 2025
    Shopify logo

    Shopify

    Pay US Suppliers Instantly with Same-Day ACH from Shopify Balance

    We've introduced Same-Day ACH for Shopify Balance users in the US 6 making it faster to pay suppliers and partners on the same business day.

    Original source Report a problem
  • Nov 5, 2025
    • Parsed from source:
      Nov 5, 2025
    • Detected by Releasebot:
      Nov 5, 2025
    Shopify logo

    Shopify Developers by Shopify

    tax_summaries/create webhook and taxSummaryCreate mutation now available

    Shopify API 2026-01 adds tax_summaries/create webhook and taxSummaryCreate mutation for Tax Partner Apps. Enables generation of tax summaries by order or bulk, triggered by fulfillments and refunds, with rich tax data. Includes access scope write_taxes and onboarding details.

    What's New

    The taxSummaryCreate mutation enables apps to request the generation of tax summaries for orders. The tax_summaries/create webhook is triggered by events that may affect tax liability, such as fulfillments and refunds.

    Using the Mutation

    The mutation accepts either a specific order ID or a time range for bulk processing:

    mutation {
      taxSummaryCreate(orderId: "gid://shopify/Order/123456789") {
        enqueuedOrders {
          id
        }
        userErrors {
          field
          message
        }
      }
    }
    

    Webhook Payload

    The tax_summaries/create webhook provides comprehensive tax data, including:

    • Sales agreements and associated sales details
    • Delivery groups with fulfillment information
    • Tax exemption details
    • Return sales types for refund workflows
    • Order context and financial status

    Requirements

    • Access Scope: write_taxes
    • Tax Platform Access: Tax Platform features

    Learn More

    For information about the Tax Platform and partnership opportunities, see Building tax apps.

    Original source Report a problem
  • Nov 5, 2025
    • Parsed from source:
      Nov 5, 2025
    • Detected by Releasebot:
      Nov 7, 2025
    Shopify logo

    Shopify

    Capital flex is now live in the US

    Eligible US merchants can now access Capital flex 6 continuous access to working capital. Borrow what you need, when you need it, up to your limit. As you repay, your available funds replenish.

    Original source Report a problem
  • Nov 5, 2025
    • Parsed from source:
      Nov 5, 2025
    • Detected by Releasebot:
      Nov 5, 2025
    Shopify logo

    Shopify

    Cash checks on the go with Shopify Balance.

    New feature

    Merchants can now snap photos of paper checks and cash them directly into their Shopify Balance account

    Original source Report a problem
  • Nov 4, 2025
    • Parsed from source:
      Nov 4, 2025
    • Detected by Releasebot:
      Nov 5, 2025
    Shopify logo

    Shopify

    New: Collection duplication

    Duplicate any collection to reuse settings, products, and conditions to run recurring campaigns and test merchandising faster.

    Original source Report a problem
  • Nov 4, 2025
    • Parsed from source:
      Nov 4, 2025
    • Detected by Releasebot:
      Nov 5, 2025
    • Modified by Releasebot:
      Nov 7, 2025
    Shopify logo

    Shopify

    Exclude products by tag in smart collections

    It's now possible to exclude products from smart collections with the new Tag is not equal to condition.

    Original source Report a problem
  • Nov 1, 2025
    • Parsed from source:
      Nov 1, 2025
    • Detected by Releasebot:
      Nov 1, 2025
    Shopify logo

    Shopify Developers by Shopify

    Order Update Phone Field Public

    Admin API 2026-01 Update

    As of Admin API 2026-01, the phone field is now publicly available in the orderUpdate mutation's OrderInput. This field allows developers to update the customer phone number for an order, overwriting the existing phone number.

    This change brings parity with the REST API, which already supports updating the phone field through the Order resource. The phone field is particularly useful for maintaining accurate customer contact information, especially for SMS notifications and order-related communications.

    Implementation details

    For implementation details, refer to the orderUpdate mutation documentation.

    Original source Report a problem
  • Oct 31, 2025
    • Parsed from source:
      Oct 31, 2025
    • Detected by Releasebot:
      Oct 31, 2025
    Shopify logo

    Shopify Developers by Shopify

    Support metafield and metaobject standards in Declarative Custom Data Definitions

    We now support enabling and referencing standard metafield and metaobject definitions through an app’s TOML file. Key benefits include:

    • Standard metafield and metaobject definitions can be enabled through TOML, and managed through the app dev or app deploy command.
    • Shopify automatically distributes these definitions to multiple shops simultaneously, significantly speeding up migration processes.
    • Updates are atomic, ensuring that all stores consistently maintain the same version of your definitions.

    For more information, see the custom data documentation on shopify.dev.

    Original source Report a problem
  • Oct 31, 2025
    • Parsed from source:
      Oct 31, 2025
    • Detected by Releasebot:
      Oct 31, 2025
    Shopify logo

    Shopify Developers by Shopify

    New Queries for Bulk Operations

    New Admin API GraphQL queries unlock bulk operations at scale with bulkOperations and bulkOperation. Enhanced filtering, sorting, and pagination give full visibility and easier debugging for all bulk tasks, while older bulk workflows are deprecated.

    What's Changed

    Here's an overview of the updates:

    New Bulk Operations Retrieval Queries

    We have added two new queries for accessing your bulk operations:

    • bulkOperations: A connection-based query that returns a paginated list of all your bulk operations, complete with filtering and sorting options.
    • bulkOperation: A single-object query that retrieves a specific bulk operation by its ID.

    Enhanced Filtering and Search Capabilities

    The bulkOperations connection now supports flexible querying with the following features:

    • Status Filtering: Locate operations by status (e.g., canceled, completed, running).
    • Type Filtering: Filter operations by type (query or mutation).
    • Date Filtering: Search for operations created before or after a specific date.
    • Sorting Options: Sort operations by created_at, completed_at, or status in ascending or descending order.
    • Search Syntax: Use field:value patterns for precise filtering.

    What You Need to Do

    Depending on your requirements, follow these steps:

    To List and Filter Bulk Operations

    Utilize the bulkOperations connection query with search syntax:

    query {
      bulkOperations(
        first: 10
        query: "status:completed operation_type:query created_at:>2025-10-10"
        sortKey: CREATED_AT
        reverse: true
      ) {
        edges {
          node {
            id
            status
            query
            createdAt
            completedAt
            url
          }
        }
        pageInfo {
          hasNextPage
          hasPreviousPage
        }
      }
    }
    

    To Retrieve a Specific Bulk Operation

    Use the bulkOperation query:

    query {
      bulkOperation(id: "gid://shopify/BulkOperation/123456789") {
        id
        status
        query
        createdAt
        completedAt
        url
        errorCode
      }
    }
    

    If You're Using Existing Bulk Operation Workflows

    No changes are necessary. The current Bulk Operation can still be used but is being deprecated.

    Why We Made This Change

    Previously, you could only access the most recent bulk operation through current Bulk Operation. These new queries offer:

    • Complete visibility into all your bulk operations, not just the current one.
    • Enhanced debugging capabilities by filtering operations by status or date.
    • Efficient pagination for managing large numbers of operations.
    • Simplified monitoring, debugging, and management of bulk operations at scale.

    Learn More

    • Bulk Operations Queries Guide
    Original source Report a problem
  • Oct 31, 2025
    • Parsed from source:
      Oct 31, 2025
    • Detected by Releasebot:
      Nov 7, 2025
    Shopify logo

    Shopify

    Create cards for additional accounts within Balance

    US Shopify Balance merchants can create cards linked to additional accounts within Balance. Additionally, merchants with Balance and/or Credit can create and manage cards in one unified Cards section.

    Original source Report a problem

Related vendors