@webikon/webentor-core 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Webentor Core Changelog
2
2
 
3
+ ## 0.12.0
4
+
5
+ - **BREAKING**: Remove `init.php` entry point. Bootstrap logic (constant defines, optional vendor autoload, core app file requires) moved into `WebentorCoreServiceProvider`. Acorn auto-discovery handles loading — consumer themes must no longer manually `require_once WEBENTOR_CORE_PHP_PATH . '/init.php'` from `functions.php`.
6
+ - Migration: delete the `require_once WEBENTOR_CORE_PHP_PATH . '/init.php'` line from your theme's `functions.php`. Keep the `WEBENTOR_CORE_PHP_PATH` define — it's still consumed by `config/view.php` to register core view paths. Then run `composer update webikon/webentor-core && wp acorn optimize:clear`.
7
+
3
8
  ## 0.11.0
4
9
 
5
10
  - Add responsive spacing settings for WP Core blocks (`core/paragraph`, `core/heading`) — spacing panel appears automatically, classes rendered on frontend via `WP_HTML_Tag_Processor`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webikon/webentor-core",
3
3
  "homepage": "https://webikon.sk",
4
- "version": "0.11.0",
4
+ "version": "0.12.0",
5
5
  "description": "Core functionality and useful utilities for Webentor Stack",
6
6
  "license": "MIT",
7
7
  "author": "Webikon s.r.o.",