From bd5cacbeb069baa8e41a67ab933d6419bb422f1d Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Fri, 28 Oct 2022 16:10:50 -0500 Subject: [PATCH] Release 5.0 (#853) --- CHANGELOG.md | 17 +++++++++++++++++ LICENSE.md | 21 +++++++++++++++++++++ wpAuth0.php | 8 ++++++-- 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 LICENSE.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..0525eee3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Change Log + +## [5.0](https://github.com/auth0/wp-auth0/tree/5.0.0) (2022-10-28) +[Full Changelog](https://github.com/auth0/wp-auth0/compare/4.4.0...5.0.0) + +Introducing V5 of WP-Auth0 ("Login by Auth0"), a major redesign and upgrade to our WordPress integration plugin. V5 includes many new features and changes: + +- [WordPress 6](https://wordpress.org/support/wordpress-version/version-6-0/) and [PHP 8](https://www.php.net/releases/8.0/en.php) support +- Integration with the [Auth0-PHP SDK](https://github.com/auth0/auth0-php), and access to its entire API (including Management API calls) +- High performance background sync using [WordPress' Cron](https://developer.wordpress.org/plugins/cron/) feature +- "Flexible identifier" support, allowing users to sign in using multiple connection types without requiring extra configuration +- Expanded control over how sign ins without matching existing WordPress accounts are handled +- Enhanced session pairing between WordPress and Auth0, including session invalidation, access token refresh, and more. + +V5 represents a major step forward for our WordPress plugin, and we're excited to see what you build with it! + +It's important to note, if you wrote custom theme code or plugins for your WordPress site that targeted previous versions of the plugin, you may need to adjust those themes or plugins to adapt to the new version. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000..8e265f7e --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 Auth0, Inc. (https://auth0.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/wpAuth0.php b/wpAuth0.php index 7cedd032..3df4bb1e 100644 --- a/wpAuth0.php +++ b/wpAuth0.php @@ -4,7 +4,11 @@ * Plugin Name: Auth0 * Plugin URL: https://github.com/auth0/wp-auth0 * Description: Supercharge your WordPress website with Auth0. Improve account security, add support for multifactor, enable social, passwordless and enterprise connections, and much more. - * Version: 5.0.0b1 + * Version: 5.0.0 + * Requires at least: 6.0 + * Tested up to: 6.1 + * Stable tag: 5.0.0 + * Requires PHP: 8.0 * Author: Auth0 * Author URI: https://auth0.com * License: MIT @@ -15,7 +19,7 @@ declare(strict_types=1); -define('WP_AUTH0_VERSION', '5.0.0-BETA1'); +define('WP_AUTH0_VERSION', '5.0.0'); // Require loading through WordPress if (! defined('ABSPATH')) {