Skip to content

Releases: Automattic/wordbless

0.6.0

22 Apr 16:55
7db3385

Choose a tag to compare

What's Changed

  • Experimental: Add support for SQLite by @kraftbj in #74

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

15 Apr 19:17
57e6be2

Choose a tag to compare

What's Changed

  • Fix get_metadata( $single = true ) when the default is an array by @anomiex in #79

Full Changelog: 0.5.2...0.5.3

0.5.2

15 Apr 17:50
eccefa1

Choose a tag to compare

What's Changed

  • Metadata: Fix return value for Metadata::get when $single is true by @manzoorwanijk in #77
  • Fix warning with WordPress 6.8 by @anomiex in #78

New Contributors

Full Changelog: 0.5.1...0.5.2

0.5.1

26 Mar 14:38
bd206db

Choose a tag to compare

What's Changed

  • BaseTestCase: Add attributes for PHPUnit 11+ by @anomiex in #75

Full Changelog: 0.5.0...0.5.1

0.5.0

12 Feb 22:35
33e7d5a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.2...0.5.0

0.4.2

15 Mar 13:06
a1fe637

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.1...0.4.2

0.4.1

15 Dec 15:15
8cd8d87

Choose a tag to compare

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

Full Changelog: 0.4.0...0.4.1

0.4.0 — New Installer!

14 Sep 14:22
4811e45

Choose a tag to compare

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

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)

07 Jul 21:52
fc36fd2

Choose a tag to compare

Fixes update_option for default options and fix wp_untrash_post tests for WordPress 5.6

0.2.0

01 Dec 21:39
f3e55e0

Choose a tag to compare

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_{*}_meta when meta_key is not found.