← All Framer updates
Framer Plugins 3.10 — createManagedCollection and CMS Plugin Fixes cover
Framer update · 8 min read · 6 tags

Framer Plugins 3.10 — createManagedCollection and CMS Plugin Fixes

Plugin authors get createManagedCollection for CMS collections that behave across every mode, plus CSV Import mapping, date displayTime, and a batch of integration fixes Framer shipped in late January.

update cms plugins developers api workflow

TL;DR — On January 28, 2026, Framer shipped Plugins 3.10: CMS — a developer-focused drop led by createManagedCollection, so plugin authors can create and manage CMS collections reliably across all modes. The same release improves CSV Import (mapping, collection creation, DateTime support), adds setCloseWarning and displayTime on date fields, and patches Ashby, HubSpot, Workshop, and other marketplace plugins teams already run in production.

This yoframer article lives at /framer-updates/framer-plugins-3-10-cms-managed-collections-update/ and translates Framer’s Plugins 3.10 notes for agencies, plugin makers, and CMS-heavy site owners — what to upgrade, what to test before client handoff, and which remix-friendly templates give you realistic collections to sync against.

Plugins 3.10 CMS at a glance

AreaWhat Framer shippedWhy it matters
Managed collectionscreateManagedCollection APICleaner plugin-owned CMS sync without mode-specific hacks
SafetysetCloseWarning()Fewer accidental closes during imports or long syncs
FieldsdisplayTime on date fieldsEditorial teams see time, not only calendar dates
Collections APIcreateCollection works across modesLess “works in canvas, breaks in CMS” drift
CSV ImportMapping, collection creation, DateTimeFaster migrations into Framer CMS
IntegrationsAshby, HubSpot, Workshop, Sheets, Notion fixesProduction plugins behave better on real client stacks

What Plugins 3.10 changes for authors

1. createManagedCollection — the headline API

Framer positions managed collections as the reliable path when a plugin owns the CMS schema and row sync — think Notion pull, Sheets sync, or a custom operations dashboard. Before this API, authors often stitched together collection creation calls that behaved differently depending on where the plugin surfaced. createManagedCollection is Framer’s answer: one creation path that holds up across modes so workflows keep moving without extra setup.

If you maintain a private agency plugin, audit your collection bootstrap code first. This is the release that rewards deleting defensive branches.

2. setCloseWarning and displayTime — small APIs, loud UX wins

setCloseWarning lets plugins warn users before closing mid-job — the same class of fix Framer extended to CSV Import, Notion, and Google Sheets (warning on close during active work). displayTime on date fields helps editorial surfaces that schedule posts or events with a time component, not only a day bucket.

Neither API is glamorous, but both reduce support tickets — the kind clients describe as “the plugin ate my import.”

3. Marketplace plugin fixes you may already depend on

Framer’s changelog calls out practical integration work:

  • Ashby — multiple secondary locations via collection references.
  • CSV Import — mapping, collection creation, DateTime support.
  • HubSpot — authentication redirect fixes for smoother sign-in.
  • Workshop — respects external changes and manual edits cleanly.

Even if you never ship a plugin, your stack might include one of these. Schedule a smoke test on staging after you bump Framer.

4. General stability Framer bundled in the same drop

The General section also notes createCollection working consistently across modes, YouTube embed crash fixes in Rich Text, and Safari context menu layout fixes when Search is enabled. Treat those as permission to close old browser-specific bug tickets in your internal tracker.

How Plugins 3.10 fits the CMS story

CMS 3.0 (April 2026) redesigned how humans edit rows. Plugins 3.10 (January 2026) strengthens how code and integrations feed those rows — an earlier chapter in the same arc. When CMS Plugins arrived later, Framer focused on sidebar discovery and overlay Save ergonomics for editors.

Read them together: APIs for builders, table UX for editors, sidebar polish for everyone.

Try Plugins 3.10 in your plugin project

  1. Open a staging project with CMS collections — not production first.
  2. Read Framer’s createManagedCollection reference and compare it to your current bootstrap.
  3. If you ship imports, enable setCloseWarning on long-running tasks and verify the warning copy with a non-technical tester.
  4. Run CSV Import against a 50-row sample with DateTime columns — confirm cells land in the table without manual repair.
  5. Cross-check Framer’s developer changelog for the exact v3.10.2 / v3.10.3 version lines if you pin SDK versions in CI.

Three workflow recipes for Plugins 3.10

Recipe 1

Greenfield managed collection sync

You are shipping a plugin that owns a jobs board collection and syncs nightly from a headless API.

  1. Prototype createManagedCollection on a throwaway Framer file with two fields and ten rows.
  2. Log collection IDs on create so support can trace client projects without opening the editor.
  3. Document which plugin modes you support in README — canvas-only vs CMS sidebar vs both.
Recipe 2

CSV migration weekend with DateTime

An agency is moving a WordPress export into Framer CMS before launch Monday.

  1. Map columns in CSV Import using the new mapping UI Framer highlights in this release.
  2. Include a DateTime column in the test CSV even if launch content is date-only — catch timezone surprises early.
  3. Keep the import tab open until the close warning confirms the job finished — do not Cmd+W through it.
Recipe 3

Client handoff with integration smoke tests

The site uses HubSpot forms sync plus Workshop content — the client is non-technical.

  1. Re-authenticate HubSpot on staging after the redirect fix Framer documents.
  2. Edit a Workshop-backed row manually, then run a plugin sync — confirm external edits are respected.
  3. Add a one-page “plugin health” doc listing installed marketplace plugins and last verified date.

Framer templates for CMS-heavy plugin tests

Need more CMS-first starters? Browse the template directory or our best free SaaS Framer templates in 2026 roundup.

Official Framer resources worth bookmarking

More reading on yoframer

The bottom line

Plugins 3.10 is Framer investing in the CMS integration layercreateManagedCollection for authors, CSV Import upgrades for migrations, and setCloseWarning for safer long jobs. If you only run marketplace plugins, still run staging smoke tests; if you write plugins, treat this as a refactor release worth scheduling before your next client launch.

Get started free on Framer →

Frequently Asked Questions

Quick answers about Framer Plugins 3.10 — the createManagedCollection API, CSV Import improvements, setCloseWarning, displayTime on date fields, and where to read the full developer changelog.

What is createManagedCollection in Framer Plugins 3.10?
Framer’s January 28, 2026 Plugins 3.10 release centers on createManagedCollection — a new API for plugin authors to create and manage CMS collections reliably across all plugin modes. It is meant to reduce brittle setup when a plugin owns collection sync. See https://www.framer.com/updates/plugins-3.10-cms and https://www.framer.com/developers/changelog.
Do I need to be a plugin developer to care about this update?
The headline value is for teams shipping or maintaining Framer plugins and CMS sync tools. Site owners still benefit indirectly through fixes to CSV Import, HubSpot, Ashby, Workshop, and close-warning behavior on data-heavy plugins they already install from the marketplace.
What does setCloseWarning do?
Framer added setCloseWarning so plugins can show a warning when users try to close the plugin while work is in flight — useful for long imports or sync jobs. It is part of the general API improvements listed on https://www.framer.com/updates/plugins-3.10-cms.
What changed in CSV Import?
Framer documents new mapping, collection creation, and DateTime support for the CSV Import plugin, plus a warning when closing during an active import (shared with Notion and Google Sheets plugins). That makes bulk migrations into CMS 3.0-style tables less fragile for agencies moving client blogs or catalogs.
How does Plugins 3.10 relate to CMS 3.0 and CMS Plugins?
CMS 3.0 redesigned the editor table; Plugins 3.10 strengthens the APIs and marketplace tools that feed those collections. Framer’s April CMS Plugins update later improved sidebar discovery and overlay Save behavior. Read our CMS 3.0 guide at /framer-updates/framer-cms-3-update/ and CMS Plugins at /framer-updates/framer-cms-plugins/.
Where is the official Framer announcement?
Framer published Plugins 3.10 on https://www.framer.com/updates/plugins-3.10-cms with a link to the developer changelog at https://www.framer.com/developers/changelog. Browse all platform releases at https://www.framer.com/updates.

Keep exploring

Browse every free and premium Framer template in the yoframer directory, or open the full Framer updates index.

More updates