Razorpay for WooCommerce - Version 1.4.5

Version Description

Download this release

Release Info

Developer mayankamencherla
Plugin Icon 128x128 Razorpay for WooCommerce
Version 1.4.5
Comparing to
See all releases

Code changes from version 1.4.4 to 1.4.5

ca-bundle.crt CHANGED
File without changes
razorpay-payments.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WooCommerce Razorpay Payments
4
  Plugin URI: https://razorpay.com
5
  Description: Razorpay Payment Gateway Integration for WooCommerce
6
- Version: 1.4.4
7
  Author: Razorpay
8
  Author URI: https://razorpay.com
9
  */
3
  Plugin Name: WooCommerce Razorpay Payments
4
  Plugin URI: https://razorpay.com
5
  Description: Razorpay Payment Gateway Integration for WooCommerce
6
+ Version: 1.4.6
7
  Author: Razorpay
8
  Author URI: https://razorpay.com
9
  */
razorpay-sdk/src/Utility.php CHANGED
@@ -24,7 +24,7 @@ class Utility
24
 
25
  public function verifySignature($payload, $expectedSignature, $webhookSecret = '')
26
  {
27
- if (isset($webhookSecret) === true)
28
  {
29
  $actualSignature = hash_hmac(self::SHA256, $payload, $webhookSecret);
30
  }
24
 
25
  public function verifySignature($payload, $expectedSignature, $webhookSecret = '')
26
  {
27
+ if (empty($webhookSecret) === false)
28
  {
29
  $actualSignature = hash_hmac(self::SHA256, $payload, $webhookSecret);
30
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: razorpay
3
  Tags: razorpay, payments, india, woocommerce, ecommerce
4
  Requires at least: 3.9.2
5
  Tested up to: 4.7
6
- Stable tag: 1.4.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -36,6 +36,9 @@ This is compatible with WooCommerce>=2.4, including the new 3.0 release.
36
 
37
  == Changelog ==
38
 
 
 
 
39
  = 1.4.4 =
40
  * Added webhooks to the plugin (includes/razorpay-webhook.php)
41
 
3
  Tags: razorpay, payments, india, woocommerce, ecommerce
4
  Requires at least: 3.9.2
5
  Tested up to: 4.7
6
+ Stable tag: 1.4.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
36
 
37
  == Changelog ==
38
 
39
+ = 1.4.6 =
40
+ * Webhooks signature verification bug fix
41
+
42
  = 1.4.4 =
43
  * Added webhooks to the plugin (includes/razorpay-webhook.php)
44