Skip to content

emdash

v@emdash-cms/[email protected] Breaking

This release includes 1 breaking change for platform teams planning a safe upgrade.

Published 15d Productivity & Wikis
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Topics

astro cms emdash typescript

Summary

AI summary

Updates Minor Changes, Patch Changes, and sandboxed across a mixed release.

Changes in this release

Breaking Medium

Removes the `atprotoPlugin` named export and factory call shape.

Removes the `atprotoPlugin` named export and factory call shape.

Source: granite4.1:8b-q6_K@2026-05-19

Confidence: low

Full changelog

Minor Changes

  • #1057 c0ce915 Thanks @ascorbic! - BREAKING: Removes the atprotoPlugin named export and the factory call shape. Import the default export and pass it directly into plugins: or sandboxed:.

    - import { atprotoPlugin } from "@emdash-cms/plugin-atproto";
    + import atproto from "@emdash-cms/plugin-atproto";
    
      export default defineConfig({
      	integrations: [
      		emdash({
    - 			sandboxed: [atprotoPlugin()],
    + 			sandboxed: [atproto],
      		}),
      	],
      });
    

    Two changes: drop the { } around the import, and drop the () after the plugin name. Per-install configuration moved to the admin UI's settings (KV-backed) when the sandboxed plugin redesign landed, so there's no longer a need for a factory call.

Patch Changes

Breaking Changes

  • Removed the named export `atprotoPlugin` and its factory call shape; import the default export (`import atproto from "@emdash-cms/plugin-atproto"`) and pass it directly to `sandboxed:` or `plugins:`.

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track emdash

Get notified when new releases ship.

Sign up free

About emdash

All releases →

Related context

Related tools

Earlier breaking changes

Beta — feedback welcome: [email protected]