Skip to content

Commit

Permalink
Release 5.0 (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims authored Oct 28, 2022
1 parent 8e0daa8 commit bd5cacb
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2022 Auth0, Inc. <[email protected]> (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.
8 changes: 6 additions & 2 deletions wpAuth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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')) {
Expand Down

0 comments on commit bd5cacb

Please sign in to comment.