Skip to content

Releases: wpbones/WPBones

v1.7.0

22 Oct 14:48
Compare
Choose a tag to compare

✨ Added

  • Added new entry logging in config/plugin.php file to configure Logging behavior.
  • Added new DB::tableWithoutPrefix() method to query the database table without the table prefix.
  • Added new $usePrefix params in the DB::table() method to query the database table with or without the table prefix.
  • Added new $usePrefixproperty in the Model class to query the database table with or without the table prefix.
  • Added new $usePrefixproperty in the Migration class to query the database table with or without the table prefix.
  • Added new $usePrefixproperty in the Seeder class to query the database table with or without the table prefix.
  • Added new WPKirk-Database-Boilerplate example plugin.
  • Added new Templates section in the documentation.

💎 Changed and Improved

🐛 Fixed

  • Resolved an issue with the Log provider that prevented logs from being written to the file and displayed in the console.
  • Fixed the Model and Eloquent model path created by bones command.

💥 Breaking Changes

  • The "log" entry in the config/plugin.php file is deprecated. Use the new setting logging instead.
  • The "log_level" entry in the config/plugin.php file is deprecated as it is no longer used.

1.6.5

02 Oct 05:08
Compare
Choose a tag to compare

✨ Added

  • Added a new WP Bones helper function wpbones_flatten_and_uniquify() to flatten and uniquify the array.
  • Added a new php bones plugin command to display the plugin header and perform plugin related operations.
  • Added a new php bones plugin --check-header command to check the plugin header.

💎 Changed and Improved

  • Revamped the php bones command intro message.
  • Removed verbose file listing during the php bones update command.
  • Improved documentation for enhanced clarity and usability

🐛 Fixed

  • Fixed the select() fluent method in the HTML::select() component to work with the multiple attribute. Now you can pass a comma separated string to the selected attribute as well as an array.
  • Fixed the Eloquent documentation.
  • Fixed an issue with the php bones update command where it was incorrectly searching for the hardcoded localization folder instead of using the Domain Path value from the plugin header.
  • Fixed an issue in the View Class class that prevent that correct enqueueing of the inline scripts and inline styles.

💥 Breaking Changes

  • Deprecated withScripts() and withStyles() fluent methods in the View Class - use withScript() and withStyle() instead.

v1.6.0

26 Sep 11:18
Compare
Choose a tag to compare

✨ Added

💎 Changed and Improved

🐛 Fixed

  • Fixed an issue where admin scripts and styles were always being loaded in the View Class, even on the theme side.
  • Fixed Compatibility with macOS .DS_Store files (#47)

💥 Breaking Changes

  • Deprecated withAdminScripts() and withAdminStyles() fluent methods in the View Class - use withAdminScript() and withAdminStyle() instead.
  • Deprecated withLocalizeScripts() fluent methods in the View Class - use withLocalizeScript() instead.
  • Deprecated withAdminAppsScripts() fluent methods in the View Class - use withAdminAppsScript() instead.
  • Deprecated getBasePath()and getBaseUri() methods in the Plugin Class - use basePath and baseUri properties instead.
  • In the WPBones demo plugin and WPBones Boilerplate plugin we have renamed the localization folder to languages.

🤝 Suggestions

  • To use the new npm scripts for the localization, you need to install WP-CLI.

🧑‍💻👩‍💻 New Contributors

v1.5.0

26 Jul 10:36
Compare
Choose a tag to compare

✨ New

  • Added --wp option to the php bones deploy command to create a WordPress plugin folder structure in accordance with the WordPress Plugin Handbook.
  • Updated the documentation about the php bones deploy command.
  • updated the documentation and the Demo plugin about the ability to handle the null values in the options.
  • Added useful information on Before submitting your plugin to the WordPress repository in the documentation.
  • Updated the Demo plugin to the latest version of WP Bones.
  • Updated the WP Kirk Boilerplate to the latest version of WP Bones.

1.4.15

18 Jul 12:50
Compare
Choose a tag to compare
  • 🌟 support symlink inside wp-content/plugins

1.4.14

18 Jul 05:57
Compare
Choose a tag to compare
  • 🚨 fix warning on “Creation of dynamic property” #41
  • 🐛 Add missing do_action call
  • 🗑️ Cleanup

1.4.13

16 Jul 08:51
Compare
Choose a tag to compare
  • 🌟 Remove undefined checks from upgrader_post_install: the $hook_extra['type'] and $hook_extra['action'] variables doesn't exist in most cases, causing the hook to never run. By checking for the plugin name instead, we ensure the hook executes correctly.

  • 🌟 Allow null as option default value. Currently, if you set a default value of null for an option in your config/option.php file, every time you activate the plugin, the value of that option is reset to null, regardless of the current value.

1.4.11

10 Jul 10:57
Compare
Choose a tag to compare
  • ✨ adds new updated file
  • 🐛 fixes miss “run” in package build
  • ✨ updates and align custom post type and custom taxonomies

1.4.7

13 Jun 06:43
Compare
Choose a tag to compare
  • Fixed and improved the deploy process

1.4.0

10 May 07:53
Compare
Choose a tag to compare

✨ New

  • Added wp-scripts package in the packages.json
  • Added build:app script in the packages.json
  • Added build:start script in the packages.json
  • Added resources/assets/apps folder to vuild a full ReactJS application
  • Added withAdminAppsScripts() method in the View
  • Added documentation Hot to create a ReactJS application
  • Added documentation Versioning your Plugin

💎 Improvements

  • Improved the php bones version to support

    • --pre-patch Eg. 1.0.1-rc.1
    • --pre-minor Eg. 1.1.0-rc.1
    • --pre-major Eg. 2.0.0-rc.1
  • Update the Service Provider documentation WP Bones Documentation

🐛 Fixes

  • Minor fixes and improvements in the documentation Website WP Bones

⚠️ Note well

  • The WordPress Playground may not work properly with Illuminate Eloquent and Blade templates. We recommend downloading the demo and using it locally.