From 860c1a69c38697711cfa836d28ca81ea75674b9c Mon Sep 17 00:00:00 2001 From: Brady Vercher Date: Thu, 28 Jan 2021 14:38:16 -0800 Subject: [PATCH] Release 0.7.0. --- CHANGELOG.md | 10 +++++++++- languages/satispress.pot | 15 ++++++++++++--- package.json | 2 +- satispress.php | 4 ++-- 4 files changed, 24 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index befa576..05e737e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [0.7.0] - 2021-1-28 + +* Introduced validators to prevent invalid artifacts from being cached when downloaded from the vendor. +* Introduced adapters for downloading artifacts from vendors that use a non-standard update process. +* Added a field to the SatisPress package list screen to copy the CLI command for requiring a package in `composer.json`. +* Fixed a bug with the logger not logging messages above the specified log level. + ## [0.6.0] - 2021-1-11 * Added the `satispress_package_download_url` filter. This can be used to ignore update requests from vendors with custom update routines that cause invalid artifacts to be downloaded. @@ -73,7 +80,8 @@ Major changes include: * [Capabilities](docs/security.md#capabilities) were added for viewing and downloading packages, as well as managing SatisPress options. Only administrators have access by default. * The storage layer was abstracted to make it swappable. -[Unreleased]: https://github.com/cedaro/satispress/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/cedaro/satispress/compare/v0.7.0...HEAD +[0.6.0]: https://github.com/cedaro/satispress/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/cedaro/satispress/compare/v0.5.2...v0.6.0 [0.5.2]: https://github.com/cedaro/satispress/compare/v0.5.1...v0.5.2 [0.5.1]: https://github.com/cedaro/satispress/compare/v0.5.0...v0.5.1 diff --git a/languages/satispress.pot b/languages/satispress.pot index 87a4c6a..1382a25 100644 --- a/languages/satispress.pot +++ b/languages/satispress.pot @@ -2,9 +2,9 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: SatisPress 0.6.0\n" +"Project-Id-Version: SatisPress 0.7.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" -"POT-Creation-Date: 2021-01-12 05:36:52+00:00\n" +"POT-Creation-Date: 2021-01-28 22:36:07+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -194,7 +194,16 @@ msgstr "" msgid "Require" msgstr "" -#: views/templates.php:94 +#: views/templates.php:93 +#. translators: %s: composer.json +msgid "Copy and paste into %s" +msgstr "" + +#: views/templates.php:100 +msgid "CLI Command" +msgstr "" + +#: views/templates.php:108 #. translators: %s: version number msgid "Download %s" msgstr "" diff --git a/package.json b/package.json index a06ce05..be509fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "0.6.0", + "version": "0.7.0", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index a97b7da..c7670e1 100644 --- a/satispress.php +++ b/satispress.php @@ -10,7 +10,7 @@ * Plugin Name: SatisPress * Plugin URI: https://github.com/cedaro/satispress * Description: Generate a Composer repository from installed WordPress plugins and themes. - * Version: 0.6.0 + * Version: 0.7.0 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '0.6.0'; +const VERSION = '0.7.0'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {