Skip to content

Commit

Permalink
Release 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradyvercher committed Jan 12, 2021
1 parent 74a1247 commit 317a2dc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

## [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.
* Created missing artifacts from source for the currently installed version of a package when viewing the `packages.json` endpoint. This allows updates made through FTP, git, or the admin UI to be archived automatically and included in `packages.json` without having to perform any additional manual steps. See [#131](https://github.com/cedaro/satispress/issues/131)
* Archived packages automatically when they're upgraded in the WordPress admin panel.
* Coerced package download URLs retrieved from the `update_plugins` and `update_themes` transients to strings before using them to prevent fatal errors caused by packages that inject unexpected data. See [#106](https://github.com/cedaro/satispress/issues/106)
* Updated `dealerdirect/phpcodesniffer-composer-installer` for Composer 2 compatibility. Props [@aaronware](https://github.com/aaronware)
* Updated `composer/semver` dependency to version 3.2.

## [0.5.2] - 2020-12-01

* Cast meta keys to strings in `SatisPress\Authentication\ApiKey\ApiKeyRepository::find_for_user()` to prevent fatal errors in some situations [#133](https://github.com/cedaro/satispress/issues/133).
Expand Down Expand Up @@ -64,7 +73,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.5.2...HEAD
[Unreleased]: https://github.com/cedaro/satispress/compare/v0.6.0...HEAD
[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
[0.5.0]: https://github.com/cedaro/satispress/compare/v0.4.1...v0.5.0
Expand Down
8 changes: 4 additions & 4 deletions languages/satispress.pot
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Copyright (C) 2020 Cedaro
# Copyright (C) 2021 Cedaro
# This file is distributed under the GPL-2.0-or-later.
msgid ""
msgstr ""
"Project-Id-Version: SatisPress 0.5.2\n"
"Project-Id-Version: SatisPress 0.6.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n"
"POT-Creation-Date: 2020-12-01 19:36:18+00:00\n"
"POT-Creation-Date: 2021-01-12 05:36:52+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "satispress",
"version": "0.5.2",
"version": "0.6.0",
"description": "Generate a Composer repository from installed WordPress plugins and themes.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions satispress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.2
* Version: 0.6.0
* Author: Cedaro
* Author URI: https://www.cedaro.com/
* License: GPL-2.0-or-later
Expand All @@ -37,7 +37,7 @@
*
* @var string
*/
const VERSION = '0.5.2';
const VERSION = '0.6.0';

// Load the Composer autoloader.
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
Expand Down

0 comments on commit 317a2dc

Please sign in to comment.