From 8e5d5eee209bdbe35ecf9dbe57518beb90d00ca4 Mon Sep 17 00:00:00 2001 From: Brad Touesnard Date: Mon, 19 Jan 2015 14:32:32 -0400 Subject: [PATCH] Deploying version 0.2.2 --- .scrutinizer.yml | 11 ----------- amazon-web-services.php | 6 +++--- classes/amazon-web-services.php | 2 -- languages/amazon-web-services.pot | 6 +++--- readme.txt | 5 ++++- 5 files changed, 10 insertions(+), 20 deletions(-) delete mode 100644 .scrutinizer.yml diff --git a/.scrutinizer.yml b/.scrutinizer.yml deleted file mode 100644 index ae9395c..0000000 --- a/.scrutinizer.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -filter: - excluded_paths: [vendor/*] -checks: - php: - code_rating: true - duplication: true -tools: - php_code_sniffer: - config: - standard: WordPress diff --git a/amazon-web-services.php b/amazon-web-services.php index 84924f7..961c0f1 100644 --- a/amazon-web-services.php +++ b/amazon-web-services.php @@ -4,7 +4,7 @@ Plugin URI: http://wordpress.org/extend/plugins/amazon-web-services/ Description: Includes the Amazon Web Services PHP libraries, stores access keys, and allows other plugins to hook into it Author: Brad Touesnard -Version: 0.2.1 +Version: 0.2.2 Author URI: http://bradt.ca/ Network: True Text Domain: amazon-web-services @@ -22,10 +22,10 @@ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // ********************************************************************** -$GLOBALS['aws_meta']['amazon-web-services']['version'] = '0.2.1'; +$GLOBALS['aws_meta']['amazon-web-services']['version'] = '0.2.2'; $GLOBALS['aws_meta']['amazon-web-services']['supported_addon_versions'] = array( - 'amazon-s3-and-cloudfront' => '0.8', + 'amazon-s3-and-cloudfront' => '0.8.1', ); require dirname( __FILE__ ) . '/classes/aws-compatibility-check.php'; diff --git a/classes/amazon-web-services.php b/classes/amazon-web-services.php index 3f5f474..ee4aa94 100644 --- a/classes/amazon-web-services.php +++ b/classes/amazon-web-services.php @@ -236,8 +236,6 @@ function get_client() { $args = array( 'key' => $this->get_access_key_id(), 'secret' => $this->get_secret_access_key(), - 'region' => 'us-east-1', - 'signature' => 'v4', ); $args = apply_filters( 'aws_get_client_args', $args ); diff --git a/languages/amazon-web-services.pot b/languages/amazon-web-services.pot index 3346c18..fb5b7b8 100644 --- a/languages/amazon-web-services.pot +++ b/languages/amazon-web-services.pot @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: Amazon Web Services\n" -"POT-Creation-Date: 2015-01-09 17:14-0000\n" -"PO-Revision-Date: 2015-01-09 17:14-0000\n" +"POT-Creation-Date: 2015-01-19 16:01-0000\n" +"PO-Revision-Date: 2015-01-19 16:01-0000\n" "Last-Translator: Delicious Brains \n" "Language-Team: Delicious Brains \n" "Language: en\n" @@ -40,7 +40,7 @@ msgstr "" msgid "Cheatin' eh?" msgstr "" -#: classes/amazon-web-services.php:245 +#: classes/amazon-web-services.php:232 #, php-format msgid "" "You must first set your AWS access keys to use this addon." diff --git a/readme.txt b/readme.txt index e0b0d79..e766eea 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i Tags: amazon, amazon web services Requires at least: 3.5 Tested up to: 4.1 -Stable tag: 0.2.1 +Stable tag: 0.2.2 License: GPLv3 Houses the Amazon Web Services (AWS) PHP libraries and manages access keys. Required by other AWS plugins. @@ -26,6 +26,9 @@ This plugin is required by other plugins, which uses its libraries and its setti == Changelog == += 0.2.2 - 2015-01-19 = +* Bug Fix: Reverting AWS client config of region and signature + = 0.2.1 - 2015-01-10 = * New: AWS SDK updated to 2.7.13 * New: Translation ready