For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Resources
Get started
    • Overview
  • APIs and SDKs
    • Data API
    • Designer API
    • Browser API
  • Developer tools
    • MCP Server
    • Webflow Apps
    • Webflow CLI
    • DevLink
    • Webflow Cloud
    • Flowkit CSS Framework
    • Changelog
LogoLogo
Resources
Get started

Changelog

This is an overview of the changes to the Webflow APIs and related tools. To filter the list, select one or more tags.

December 10, 2025
December 10, 2025

v1.8.50: Security and automation improvements

v1.8.50 includes important security updates and workflow improvements that make it easier to use in both local development and automated environments.

Security hardening for scaffolds

We’ve updated the dependencies used in Webflow Cloud scaffold projects to address recent security vulnerabilities. When you create a new Webflow Cloud project, you’ll automatically get the latest secure versions of these dependencies.

Automation-ready with --no-input flag

The new global --no-input flag is now available on all CLI commands. This flag disables all interactive prompts, ensuring your automated scripts never get stuck waiting for user input. You can use this flag to ensure your CI/CD pipelines and automated workflows run smoothly without any manual intervention.

Clearer workspace context when sharing

The webflow library share command now displays your Workspace name in the confirmation prompt. This helps you verify you’re sharing to the correct workspace before proceeding, especially useful when working across multiple workspaces. This small change helps prevent accidentally sharing component libraries to the wrong workspace.


December 10, 2025
December 10, 2025
Was this page helpful?
Previous

Beta release: New tools and improved functionality

Try the latest beta features and tools
Next
Built with

Prop type aliases and workflow improvements

This update includes developer experience improvements across the Code Components suite of packages. Including @webflow/data-types, @webflow/react, and @webflow/webflow-cli.

@webflow/data-types and @webflow/react 1.0.3

We’ve added aliases to the prop types that match common React patterns you already know, so you can use the naming conventions that feel natural to your team.

New aliases for prop types:

  • props.String - Use interchangeably with props.Text for text-based props
  • props.Children - Use interchangeably with props.Slot for child content

These aliases work seamlessly with existing prop types, giving you flexibility in how you structure your component definitions.

1// Both of these work identically in your .webflow.tsx file
2buttonText: props.Text({ name: "Button Text" })
3// or
4buttonText: props.String({ name: "Button Text" })
5
6// And for child content:
7children: props.Slot({ name: "Children" })
8// or
9children: props.Children({ name: "Children" })

@webflow/webflow-cli 1.8.50

The webflow library share command now displays your Workspace name in the confirmation prompt. This helps you verify you’re sharing to the correct workspace before proceeding, especially useful when working across multiple workspaces.

For more updates on the Webflow CLI, see the CLI changelog.