Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [2.0.1] - 2026-08-18

### Fixed

- Restored remote project import from a shareable link or a project ID. Preparing 2.0.0 for open source removed the importer's client-side credential, which left the request failing, and the unusable input was then deleted — taking a working feature and every shared link with it.
- Restored the Auto BEM class generator in the Bricks structure panel. 2.0.0 moved the builder connector into the page footer while the generator still loaded in the head, so the generator read an undefined connector, failed its own feature check, and never started.
- Restored remote project import from a shareable link or a project ID. Preparing 2.0.0 for open source removed the importer's client-side credential, which left every request failing, and the input that no longer worked was then deleted, taking the feature and every shared link with it.
- Fixed Bricks synchronization for empty class sets.
- Batched the Bricks reference sweep and reported pushes that fail instead of passing silently.
- Fixed Figma plugin host message handling.
- Fixed the WordPress URLs used inside the Figma sandbox.
- Allowed the Figma connection key header through the REST CORS preflight, so Figma synchronization reaches the site.

### Changed

- WordPress now retrieves a shared project through the plugin's own REST route rather than from the administrator's browser, so the request leaves the server and no third-party host is contacted by the admin screen.
- WordPress now retrieves a shared project through the plugin's own REST route rather than from the administrator's browser, so the request leaves the server and the admin screen contacts no third-party host.

## [2.0.0] - 2026-08-12

Expand Down
2 changes: 1 addition & 1 deletion packages/blocks/src/theme-toggle/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core-framework/theme-toggle",
"version": "2.0.0",
"version": "2.0.1",
"title": "Theme Toggle",
"category": "core-framework",
"description": "Easily add toggle between dark and light mode. This feature requires use of the Core Framework classes and variables.",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/constants/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const APP_VERSION = "2.0.0";
export const APP_VERSION = "2.0.1";
2 changes: 1 addition & 1 deletion packages/figma/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "core-framework-figma",
"version": "2.0.0",
"version": "2.0.1",
"private": true,
"description": "Figma integration for Core Framework",
"author": "David Babinec",
Expand Down
2 changes: 1 addition & 1 deletion packages/gutenberg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coreframework-gutenberg-integration",
"version": "2.0.0",
"version": "2.0.1",
"description": "Gutenberg editor integration for Core Framework.",
"author": "David Babinec",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/gutenberg/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Core Framework Gutenberg Integration
* Author: Core Framework & Sebastian Piskaty
* Author URI: https://coreframework.com & https://secumbu.at
* Version: 2.0.0
* Version: 2.0.1
* License: MIT
* License URI: https://opensource.org/license/mit
* Text Domain: coreframework
Expand Down
4 changes: 2 additions & 2 deletions packages/wp/core-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Core Framework
* Plugin URI: https://coreframework.com
* Description: The CORE of your website
* Version: 2.0.0
* Version: 2.0.1
* Author: Core Framework
* Author URI: https://coreframework.com
* Text Domain: core-framework
Expand Down Expand Up @@ -40,7 +40,7 @@
define( 'CORE_FRAMEWORK_NAME', dirname( CORE_FRAMEWORK_MAIN_FILE ) );

define( 'CORE_FRAMEWORK_DB_VER', '1.3' );
define( 'CORE_FRAMEWORK_VERSION', '2.0.0' );
define( 'CORE_FRAMEWORK_VERSION', '2.0.1' );

define( 'CORE_FRAMEWORK_ASSETS_PREFIX', 'core-framework/core-framework/' );

Expand Down
2 changes: 1 addition & 1 deletion packages/wp/gutenberg-blocks/theme-toggle/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "core-framework/theme-toggle",
"version": "2.0.0",
"version": "2.0.1",
"title": "Theme Toggle",
"category": "core-framework",
"description": "Easily add toggle between dark and light mode. This feature requires use of the Core Framework classes and variables.",
Expand Down
2 changes: 1 addition & 1 deletion packages/wp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coreframework",
"version": "2.0.0",
"version": "2.0.1",
"description": "The Core Framework WordPress plugin.",
"author": "David Babinec",
"license": "MIT",
Expand Down
10 changes: 9 additions & 1 deletion packages/wp/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: css, framework, stylesheet, bricks, oxygen
Requires at least: 6.0
Requires PHP: 8.0
Tested up to: 7.0
Stable tag: 2.0.0
Stable tag: 2.0.1
License: MIT
License URI: https://opensource.org/license/mit

Expand Down Expand Up @@ -75,6 +75,14 @@ No. The font browser uses Google's public, keyless font endpoints.

== Changelog ==

= 2.0.1 =

* Fixed the Auto BEM class generator not appearing in the Bricks structure panel after updating to 2.0.0.
* Restored remote project import from a shareable project link or project ID.
* Fixed Bricks synchronization for empty class sets, and reported pushes that fail rather than passing silently.
* Fixed Figma plugin host message handling and the WordPress URLs used inside the Figma sandbox.
* Allowed the Figma connection key header through the REST CORS preflight so Figma synchronization reaches the site.

= 2.0.0 =

* Released Core Framework as free and open-source software under the MIT License.
Expand Down
2 changes: 1 addition & 1 deletion packages/www/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-framework",
"private": true,
"version": "2.0.0",
"version": "2.0.1",
"description": "The standalone Core Framework web app.",
"author": "David Babinec",
"license": "MIT",
Expand Down
Loading