From ec79b06a220fbf1a47c71941b7ca64d3ac66e152 Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Fri, 7 May 2021 09:41:39 +0300 Subject: [PATCH 1/3] Add the notice --- readme.md | 4 +++- readme.txt | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ef0d348..4677e6f 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,8 @@ # Application Passwords for WordPress -[![Build Status](https://travis-ci.org/wordpress/application-passwords.svg?branch=master)](https://travis-ci.org/wordpress/application-passwords) +**⚠️ IMPORTANT: This plugin has been merged into WordPress core and doesn't have to be installed separately. [View the integration guide →](https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/)** + +--- Creates unique passwords for applications to authenticate users without revealing their main passwords. diff --git a/readme.txt b/readme.txt index 8d8454c..111c6f6 100644 --- a/readme.txt +++ b/readme.txt @@ -12,6 +12,10 @@ Creates unique passwords for applications to authenticate users without revealin == Description == +**⚠️ IMPORTANT: This plugin has been merged into WordPress core and doesn't have to be installed separately. [View the integration guide →](https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/)** + +--- + Use Application Passwords to authenticate users without providing their passwords directly. Instead, a unique password is generated for each application without revealing the user's main password. Application passwords can be revoked for each application individually. **Important:** Application Passwords can be used only for authenticating API requests such as [REST API](https://developer.wordpress.org/rest-api/) and [XML-RPC](https://codex.wordpress.org/XML-RPC_WordPress_API), and they won't work for regular site logins. From 7545dfaf4022dda4c37d4429510a25fe7a101e0e Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Fri, 7 May 2021 09:44:16 +0300 Subject: [PATCH 2/3] Mention the version too --- readme.md | 2 +- readme.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 4677e6f..9d13f7d 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # Application Passwords for WordPress -**⚠️ IMPORTANT: This plugin has been merged into WordPress core and doesn't have to be installed separately. [View the integration guide →](https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/)** +**⚠️ IMPORTANT: This plugin has been merged into WordPress core version 5.6 and doesn't have to be installed separately. [View the integration guide →](https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/)** --- diff --git a/readme.txt b/readme.txt index 111c6f6..0120559 100644 --- a/readme.txt +++ b/readme.txt @@ -12,7 +12,7 @@ Creates unique passwords for applications to authenticate users without revealin == Description == -**⚠️ IMPORTANT: This plugin has been merged into WordPress core and doesn't have to be installed separately. [View the integration guide →](https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/)** +**⚠️ IMPORTANT: This plugin has been merged into WordPress core version 5.6 and doesn't have to be installed separately. [View the integration guide →](https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/)** --- From aa29f9767c2588fafd9fba28747fc268d2523edf Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Fri, 7 May 2021 09:46:18 +0300 Subject: [PATCH 3/3] Lock Composer to version 1 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 52f3f4a..cf6a6e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,6 +24,7 @@ env: - WP_VERSION=trunk WP_MULTISITE=1 install: + - composer self-update --1 - npm install - export DEV_LIB_PATH="vendor/xwp/wp-dev-lib/scripts" - source "$DEV_LIB_PATH/travis.install.sh"