Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions magicauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: MagicAuth
* Plugin URI: https://github.com/EtticDevelopment/magicauth
* Description: Passwordless WordPress sign-in via email magic link or 6-character code.
* Version: 1.1.0
* Version: 1.0.0
* Requires at least: 6.4
* Requires PHP: 8.0
* Author: Ettic
Expand All @@ -26,7 +26,7 @@
return;
}

define( 'MAGICAUTH_VERSION', '1.1.0' );
define( 'MAGICAUTH_VERSION', '1.0.0' );
define( 'MAGICAUTH_DB_VERSION', 1 );
define( 'MAGICAUTH_FILE', __FILE__ );
define( 'MAGICAUTH_DIR', plugin_dir_path( __FILE__ ) );
Expand Down
12 changes: 1 addition & 11 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: login, passwordless, magic link, authentication, security
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
Stable tag: 1.1.0
Stable tag: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -71,13 +71,3 @@ Yes. Templates can be overridden by copying them into `your-theme/magicauth/`. F
== Privacy ==

MagicAuth registers a WordPress privacy exporter and eraser. Personal data stored is limited to: `user_id`, an HMAC of the user's email and IP, and timestamps for each sign-in attempt. Verifiers are not exportable; only metadata about issued/consumed tokens.

== Changelog ==

= 1.1.0 =
* Security: new "Fix WordPress salts" wizard under Settings > MagicAuth > Diagnostics & recovery. Fetches fresh keys from the official api.wordpress.org generator (with a local `random_bytes` fallback for offline sites) and writes them to `wp-config.php` automatically (atomic temp-file swap, no readable backup left in the web root). Falls back to a copy-and-paste block when `wp-config.php` is not writable.
* Security: the weak-salt admin notice now offers a one-click "Fix it for me" button and explains the impact before any change. The wizard never enables the branded login replacement — it only clears the block.
* Security: weak-salt detection now covers all eight key/salt constants (previously the four `*_KEY` constants only).

= 1.0.0 =
* Initial public release.
Loading