Amazon Web Services - Version 0.2.2

Version Description

  • 2015-01-19 =
  • Bug Fix: Reverting AWS client config of region and signature
Download this release

Release Info

Developer bradt
Plugin Icon 128x128 Amazon Web Services
Version 0.2.2
Comparing to
See all releases

Code changes from version 0.2.1 to 0.2.2

amazon-web-services.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Amazon Web Services
4
  Plugin URI: http://wordpress.org/extend/plugins/amazon-web-services/
5
  Description: Includes the Amazon Web Services PHP libraries, stores access keys, and allows other plugins to hook into it
6
  Author: Brad Touesnard
7
- Version: 0.2.1
8
  Author URI: http://bradt.ca/
9
  Network: True
10
  Text Domain: amazon-web-services
@@ -22,10 +22,10 @@ Domain Path: /languages/
22
  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23
  // **********************************************************************
24
 
25
- $GLOBALS['aws_meta']['amazon-web-services']['version'] = '0.2.1';
26
 
27
  $GLOBALS['aws_meta']['amazon-web-services']['supported_addon_versions'] = array(
28
- 'amazon-s3-and-cloudfront' => '0.8',
29
  );
30
 
31
  require dirname( __FILE__ ) . '/classes/aws-compatibility-check.php';
4
  Plugin URI: http://wordpress.org/extend/plugins/amazon-web-services/
5
  Description: Includes the Amazon Web Services PHP libraries, stores access keys, and allows other plugins to hook into it
6
  Author: Brad Touesnard
7
+ Version: 0.2.2
8
  Author URI: http://bradt.ca/
9
  Network: True
10
  Text Domain: amazon-web-services
22
  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23
  // **********************************************************************
24
 
25
+ $GLOBALS['aws_meta']['amazon-web-services']['version'] = '0.2.2';
26
 
27
  $GLOBALS['aws_meta']['amazon-web-services']['supported_addon_versions'] = array(
28
+ 'amazon-s3-and-cloudfront' => '0.8.1',
29
  );
30
 
31
  require dirname( __FILE__ ) . '/classes/aws-compatibility-check.php';
classes/amazon-web-services.php CHANGED
@@ -236,8 +236,6 @@ class Amazon_Web_Services extends AWS_Plugin_Base {
236
  $args = array(
237
  'key' => $this->get_access_key_id(),
238
  'secret' => $this->get_secret_access_key(),
239
- 'region' => 'us-east-1',
240
- 'signature' => 'v4',
241
  );
242
 
243
  $args = apply_filters( 'aws_get_client_args', $args );
236
  $args = array(
237
  'key' => $this->get_access_key_id(),
238
  'secret' => $this->get_secret_access_key(),
 
 
239
  );
240
 
241
  $args = apply_filters( 'aws_get_client_args', $args );
languages/amazon-web-services.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Amazon Web Services\n"
4
- "POT-Creation-Date: 2015-01-09 17:14-0000\n"
5
- "PO-Revision-Date: 2015-01-09 17:14-0000\n"
6
  "Last-Translator: Delicious Brains <nom@deliciousbrains.com>\n"
7
  "Language-Team: Delicious Brains <nom@deliciousbrains.com>\n"
8
  "Language: en\n"
@@ -40,7 +40,7 @@ msgstr ""
40
  msgid "Cheatin' eh?"
41
  msgstr ""
42
 
43
- #: classes/amazon-web-services.php:245
44
  #, php-format
45
  msgid ""
46
  "You must first <a href=\"%s\">set your AWS access keys</a> to use this addon."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Amazon Web Services\n"
4
+ "POT-Creation-Date: 2015-01-19 16:01-0000\n"
5
+ "PO-Revision-Date: 2015-01-19 16:01-0000\n"
6
  "Last-Translator: Delicious Brains <nom@deliciousbrains.com>\n"
7
  "Language-Team: Delicious Brains <nom@deliciousbrains.com>\n"
8
  "Language: en\n"
40
  msgid "Cheatin' eh?"
41
  msgstr ""
42
 
43
+ #: classes/amazon-web-services.php:232
44
  #, php-format
45
  msgid ""
46
  "You must first <a href=\"%s\">set your AWS access keys</a> to use this addon."
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bradt
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC
4
  Tags: amazon, amazon web services
5
  Requires at least: 3.5
6
- Tested up to: 4.1
7
- Stable tag: 0.2.1
8
  License: GPLv3
9
 
10
  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
26
 
27
  == Changelog ==
28
 
 
 
 
29
  = 0.2.1 - 2015-01-10 =
30
  * New: AWS SDK updated to 2.7.13
31
  * New: Translation ready
@@ -44,4 +47,4 @@ This plugin is required by other plugins, which uses its libraries and its setti
44
  * Improvement: Code formatting to WordPress standards
45
 
46
  = 0.1 - 2013-09-20 =
47
- * First release
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC
4
  Tags: amazon, amazon web services
5
  Requires at least: 3.5
6
+ Tested up to: 4.2
7
+ Stable tag: 0.2.2
8
  License: GPLv3
9
 
10
  Houses the Amazon Web Services (AWS) PHP libraries and manages access keys. Required by other AWS plugins.
26
 
27
  == Changelog ==
28
 
29
+ = 0.2.2 - 2015-01-19 =
30
+ * Bug Fix: Reverting AWS client config of region and signature
31
+
32
  = 0.2.1 - 2015-01-10 =
33
  * New: AWS SDK updated to 2.7.13
34
  * New: Translation ready
47
  * Improvement: Code formatting to WordPress standards
48
 
49
  = 0.1 - 2013-09-20 =
50
+ * First release