Skip to content

Commit

Permalink
Merge pull request #382 from razorpay/merge-3.8.6-beta-to-master
Browse files Browse the repository at this point in the history
Merge 3.8.6 beta to master
enishant authored Sep 19, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 7ed1e96 + 66e8fc5 commit 2632c27
Showing 47 changed files with 2,908 additions and 2,601 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ on:
push:
branches: ["master"]
schedule:
- cron: '30 20 * * *'
- cron: '30 20 * * *'
jobs:
semgrep:
name: Scan
@@ -48,4 +48,4 @@ jobs:
curl -X POST -H "Content-Type: application/json" -H "Authorization: token ${{ github.token }}" \
-d '{ "state" : "success" , "context" : "github/security-status-check" , "description" : "github/security-status-check", "target_url" : "https://github.com/${{ github.repository }}" }' \
https://api.github.com/repos/${{ github.repository }}/statuses/${{ env.githubCommit }}
exit 0
exit 0
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
.idea
27 changes: 19 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,17 @@
# Change Log


## [4.0.0] - 2022-09-19
**This module can be used to place order before payment in Magento, in new state and pending status.**

### Changed
- [Now a notification will be displayed whenever a new version update is released.](https://github.com/razorpay/razorpay-magento/pull/380)
- [Instructions have been updated to set up cron with Magento.](https://github.com/razorpay/razorpay-magento/pull/376)

### Fixed
- [Order status mismatch on Magento and Razorpay dashboard is resolved. Correct order status will reflect on both the dashboards.](https://github.com/razorpay/razorpay-magento/pull/222)
- [Webhook secret will not be removed from core config data on version upgrade. Configuration of webhook will remain same.](https://github.com/razorpay/razorpay-magento/pull/377)

## [3.7.3] - 2021-01-07

### Changed
@@ -56,34 +67,34 @@
Fixed webhook localhost url validation.

## [3.6.1] - 2021-06-17

### Changed
### Fixed
- [Signature issue, billing address validation](https://github.com/razorpay/razorpay-magento/pull/254).

Fixed webhook signature mismatch issue and added validation for shipping/billing address and shipping method for quote, before creating RZP order.

## [3.6.0] - 2021-06-11

### Added

- [GraphQL Support](https://github.com/razorpay/razorpay-magento/pull/240).

Razorpay GraphQL Support added in this release. Please follow the readme file for instructions of uses.
### Changed

### Changed
### Fixed

## [3.5.3] - 2021-06-03
## [3.5.3] - 2021-06-03

### Added

- [Actual amount paid in order comments section ( In case of Offer/Fee applied on RZP dashboard.)](https://github.com/razorpay/razorpay-magento/pull/249).
### Changed

### Changed

Added label for front-end to fix radio button selection issue.

### Fixed

- [Webhook signature mismatch](https://github.com/razorpay/razorpay-magento/pull/251).
- [Webhook signature mismatch](https://github.com/razorpay/razorpay-magento/pull/251).
4 changes: 2 additions & 2 deletions Controller/BaseController.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

namespace Razorpay\Magento\Controller;

if (class_exists('Razorpay\\Api\\Api') === false)
if(class_exists('Razorpay\\Api\\Api') === false)
{
// require in case of zip installation without composer
require_once __DIR__ . "/../../Razorpay/Razorpay.php";
@@ -109,4 +109,4 @@ protected function getCheckout()
}
return $this->checkout;
}
}
}
Loading

0 comments on commit 2632c27

Please sign in to comment.