Releases: Automattic/wordbless
0.6.0
What's Changed
This allows WorDBless to work in two modes -- no database (default) or with SQLite by passing an argument to the Load::init() function. This uses the SQLite implementation plugin being developed for potential Core inclusion. A known issue is that the SQLite plugin does not expect to be used for new installs without an existing MySQL database, so the first run of using SQLite will emit some noise about the DB not being found until it switches over to attempting SQLite.
Full Changelog: 0.5.3...0.6.0
0.5.3
0.5.2
What's Changed
- Metadata: Fix return value for Metadata::get when
$singleis true by @manzoorwanijk in #77 - Fix warning with WordPress 6.8 by @anomiex in #78
New Contributors
- @manzoorwanijk made their first contribution in #77
Full Changelog: 0.5.1...0.5.2
0.5.1
0.5.0
What's Changed
- Move phpunit-polyfills to dev-requirements by @heiglandreas in #66
- Bump to PHP 7.2 and WP 6.6 by @kraftbj in #67
- Allow custom upload directories by @kraftbj in #70
New Contributors
- @heiglandreas made their first contribution in #66
Full Changelog: 0.4.2...0.5.0
0.4.2
What's Changed
- Use Yoast PHPUnit Polyfill by @kraftbj in #61
- Add db_server_info method by @nateweller in #63
- Upgrade PHPStan and use Composer v2 by @szepeviktor in #62
New Contributors
- @nateweller made their first contribution in #63
Full Changelog: 0.4.1...0.4.2
0.4.1
What's Changed
- Use TAB characters in README by @szepeviktor in #57
- Fix failing test under PHP8 and provide a fallback value for string by @cezarpopa in #59
New Contributors
- @cezarpopa made their first contribution in #59
Full Changelog: 0.4.0...0.4.1
0.4.0 — New Installer!
The package that WorDBless pulls WordPress updated their process to no longer ship the wp-content directory, which means no longer will all the default themes from Twenty Ten onward will be downloaded!
The downside is this breaks the historical way WorDBless is installed.
When updating to 0.4.0, you will need to update your package's composer.json to use the new command:
"scripts": {
"post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy"
},
Thanks to @oskosk, @lhkowalski, and @dkmyta for the original report.
What's Changed
- update examples on readme by @leogermani in #49
- Remove redundant check from Post::insert_post by @szepeviktor in #50
- Remove zero empty-check from insert_post by @szepeviktor in #51
- Resolve wp-content folder failure on install by @kraftbj in #54
- Fix autoloading by @leogermani in #56
New Contributors
Full Changelog: 0.3.1...0.4.0
0.3.1: Change the option array merge order in Options::get_all_options (#45)
Fixes update_option for default options and fix wp_untrash_post tests for WordPress 5.6
0.2.0
Adds support for Users.
You can now add, edit, and remove users, as well as play with their roles and capabilities.
Bugfixes
- Fix the return value of
get_{*}_metawhenmeta_keyis not found.