Skip to content

Commit af38622

Browse files
committed
Merge branch 'main' into nuvei-bank-redirects
2 parents 4917b34 + 3e2a7ea commit af38622

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+3206
-2067
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
- [ ] Enhancement
77
- [ ] Refactoring
88
- [ ] Dependency updates
9+
- [ ] Documentation
10+
- [ ] CI/CD
911

1012
## Description
1113
<!-- Describe your changes in detail -->
1214

1315

1416
### Additional Changes
1517

18+
- [ ] This PR modifies the API contract
1619
- [ ] This PR modifies the database schema
1720
- [ ] This PR modifies application configuration/environment variables
1821

26 Bytes
Binary file not shown.

.github/workflows/manual-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434

3535
- name: Add multiple_mca feature if enabled
3636
if: ${{ inputs.multiple_mca == true }}
37-
run: echo "--features multiple_mca" >> EXTRA_FEATURES
37+
run: echo 'EXTRA_FEATURES="--features multiple_mca"' >> $GITHUB_ENV
3838

3939
- name: Build and push router Docker image
4040
uses: docker/build-push-action@v4
4141
with:
4242
build-args: |
4343
RUN_ENV=${{ inputs.environment }}
44-
EXTRA_FEATURES=EXTRA_FEATURES
44+
EXTRA_FEATURES=${{ env.EXTRA_FEATURES }}
4545
BINARY=router
4646
context: .
4747
push: true

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# 0.5.7 (2023-04-18)
2+
3+
## New Features
4+
5+
* **connector:**
6+
* [Shift4] add support for card 3DS payment (#828) (29999fe5)
7+
* [Nuvei] add support for card mandates (#818) (298a0a49)
8+
* **bank_redirects:** modify api contract for sofort (#880) (fc2e4514)
9+
* add template code for connector forte (#854) (7a581a6)
10+
* add template code for connector nexinets (#852) (dee5f61)
11+
12+
## Bug Fixes
13+
14+
* **connector:** [coinbase] make metadata as option parameter (#887) (f5728955)
15+
* Update events table after notifying merchant (#871) (013026)
16+
* **stripe:** remove cancel reason validation for stripe (#876) (fa44c1f6)
17+
18+
## Enhancement
19+
20+
* **payments:** make TokenizationAction clonable (#895)
21+
22+
## Integration
23+
24+
* Frm integration with hyperswitch (#857)
25+
26+
## Refactors
27+
28+
* use lowercase names for run environment and config files (#801) (ffaa8da0)
29+
* derive `Serialize` and `Deserialize` to `Country` enum (#882) (456c16fb)
30+
* **storage_models, errors:** impl StorageErrorExt for error_stack::Result<T, errors::StorageError> (#886) (b4020294)
31+
* **router:** KMS decrypt secrets when kms feature is enabled (#868) (8905e663)
32+
133
# 0.5.6 2023-04-14
234

335
## Build System / Dependencies

0 commit comments

Comments
 (0)