Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 4.5.0 #271

Merged
merged 1 commit into from
Jul 7, 2024
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
2 changes: 1 addition & 1 deletion indieauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: IndieAuth
* Plugin URI: https://github.com/indieweb/wordpress-indieauth/
* Description: IndieAuth is a way to allow users to use their own domain to sign into other websites and services
* Version: 4.4.3
* Version: 4.5.0
* Author: IndieWeb WordPress Outreach Club
* Author URI: https://indieweb.org/WordPress_Outreach_Club
* License: MIT
Expand Down
16 changes: 12 additions & 4 deletions languages/indieauth.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# This file is distributed under the MIT.
msgid ""
msgstr ""
"Project-Id-Version: IndieAuth 4.4.3\n"
"Project-Id-Version: IndieAuth 4.5.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/indieauth\n"
"POT-Creation-Date: 2024-06-17 21:55:46+00:00\n"
"POT-Creation-Date: 2024-07-07 13:19:13+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -375,14 +375,22 @@ msgstr ""
msgid "Invalid access token"
msgstr ""

#: includes/class-indieauth-client-discovery.php:34
#: includes/class-indieauth-client-discovery.php:38
msgid "Failed to Retrieve IndieAuth Client Details "
msgstr ""

#: includes/class-indieauth-client-discovery.php:64
#: includes/class-indieauth-client-discovery.php:69
msgid "Failed to Retrieve Client Details"
msgstr ""

#: includes/class-indieauth-client-discovery.php:100
msgid "Discovery Has Returned an Empty JSON Document"
msgstr ""

#: includes/class-indieauth-client-discovery.php:103
msgid "No Client ID Found in JSON Client Metadata"
msgstr ""

#: includes/class-indieauth-client-taxonomy.php:63
msgid "Stores information in IndieAuth Client Applications"
msgstr ""
Expand Down
11 changes: 10 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Requires at least:** 4.9.9
**Requires PHP:** 5.6
**Tested up to:** 6.5
**Stable tag:** 4.4.3
**Stable tag:** 4.5.0
**License:** MIT
**License URI:** http://opensource.org/licenses/MIT
**Donate link:** https://opencollective.com/indieweb
Expand Down Expand Up @@ -143,6 +143,10 @@ Since the extension is developing, there is currently not a specified way to tra

## Upgrade Notice ##

### 4.5.0 ###

4.5.0 removes support for client discovery using a manifest file. This was never part of the official specification and has been superseded by the newly added client json metadata option.

### 4.4.0 ###

4.4.0 removes the remote endpoint functionality, which will be archived as a separate plugin in future. It was already disabled by default. It also removes the ability to login via URL and password. Websignin login is the only login enhancement.
Expand Down Expand Up @@ -185,6 +189,11 @@ In version 2.0, we added an IndieAuth endpoint to this plugin, which previously

Project and support maintained on github at [indieweb/wordpress-indieauth](https://github.com/indieweb/wordpress-indieauth).

### 4.5.0 ###
* Remove experimental manifest searching code for client discovery
* Add support for client json metadata files recently added to specification with fallback to MF2 HTML
* Fix declaration issue(props @janboddez)

### 4.4.2 ###

* Prevent returning 401 for other successful OAuth2 plugins
Expand Down
11 changes: 10 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: IndieAuth, IndieWeb, IndieWebCamp, login
Requires at least: 4.9.9
Requires PHP: 5.6
Tested up to: 6.5
Stable tag: 4.4.3
Stable tag: 4.5.0
License: MIT
License URI: http://opensource.org/licenses/MIT
Donate link: https://opencollective.com/indieweb
Expand Down Expand Up @@ -143,6 +143,10 @@ Since the extension is developing, there is currently not a specified way to tra

== Upgrade Notice ==

= 4.5.0 =

4.5.0 removes support for client discovery using a manifest file. This was never part of the official specification and has been superseded by the newly added client json metadata option.

= 4.4.0 =

4.4.0 removes the remote endpoint functionality, which will be archived as a separate plugin in future. It was already disabled by default. It also removes the ability to login via URL and password. Websignin login is the only login enhancement.
Expand Down Expand Up @@ -185,6 +189,11 @@ In version 2.0, we added an IndieAuth endpoint to this plugin, which previously

Project and support maintained on github at [indieweb/wordpress-indieauth](https://github.com/indieweb/wordpress-indieauth).

= 4.5.0 =
* Remove experimental manifest searching code for client discovery
* Add support for client json metadata files recently added to specification with fallback to MF2 HTML
* Fix declaration issue(props @janboddez)

= 4.4.2 =

* Prevent returning 401 for other successful OAuth2 plugins
Expand Down
Loading