Skip to content

Commit

Permalink
2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed May 7, 2024
1 parent ecec869 commit 1cd3f66
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### 2.4.0

* Add: REST API
* Add/fix: prefill WooCommerce checkout with user details from The Newsletter Plugin, Klaviyo, Mailpoet
* Fix: fatal error on first request after WooCommerce is deleted from filesystem
* Fix: broken WooCommerce orders page
* Fix: strpos() null error when HTTP_USER_AGENT missing. Thanks @sisaacrussell
* Improve: logging
* Improve: don't add autologin codes to The Newsletter Plugin emails' URLs

### 2.3.0

* Add: "Send magic link email" button on users list table
Expand Down
19 changes: 19 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,25 @@ An API is available for developers to use autologin codes elsewhere in WordPress

== Changelog ==

= 2.4.0 =

* Add: REST API
* Add/fix: prefill WooCommerce checkout with user details from The Newsletter Plugin, Klaviyo, Mailpoet
* Fix: fatal error on first request after WooCommerce is deleted from filesystem
* Fix: broken WooCommerce orders page
* Fix: strpos() null error when HTTP_USER_AGENT missing. Thanks @sisaacrussell
* Improve: logging
* Improve: don't add autologin codes to The Newsletter Plugin emails' URLs

= 2.3.0 =

* Add: "Send magic link email" button on users list table
* Fix: bug with bh-wp-logger – thanks @Amit-Biswas
* Add: screenshots to .org plugin page
* Add: CLI documentation
* Fix: minor wording
* Dev: add Playwright tests

= 2.2.0 =

* Add: configurable template for `user-edit.php` autologin URL
Expand Down
2 changes: 1 addition & 1 deletion bh-wp-autologin-urls.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Magic Emails & Autologin URLs
* Plugin URI: https://wordpress.org/BrianHenryIE/bh-wp-autologin-urls
* Description: Log in users via emails sent from WordPress.
* Version: 2.5.0
* Version: 2.4.0
* Tested up to: 6.4
* Requires PHP: 7.4
* Author: BrianHenryIE
Expand Down
2 changes: 1 addition & 1 deletion src/api/class-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function get_plugin_slug(): string {
public function get_plugin_version(): string {
return defined( 'BH_WP_AUTOLOGIN_URLS_VERSION' )
? constant( 'BH_WP_AUTOLOGIN_URLS_VERSION' )
: '2.5.0';
: '2.4.0';
}

/**
Expand Down

0 comments on commit 1cd3f66

Please sign in to comment.