-
Notifications
You must be signed in to change notification settings - Fork 19
Release/2.1.0 #292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release/2.1.0 #292
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fe42c00
PRE-3278: adding scalapay APM and project configuration
adumont-payplug f9b1f6e
PRE-3278: adding Unit testing for the plugin
adumont-payplug 2b5627c
PRE-3349: Retrieve min/max amount for each APM from API
adumont-payplug ed0dac3
PRE-3365: Get allowed_countries from api + filter display
adumont-payplug 2b59920
PRE-3231: fix refund from BO for scalapay
adumont-payplug File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| ## Description | ||
| <!-- Provide a clear summary of the changes and the problem it solves. --> | ||
| <!-- Include any relevant context or background information. --> | ||
|
|
||
| **Motivation:** | ||
|
|
||
| **Related issue(s):** Closes # | ||
|
|
||
| --- | ||
|
|
||
| ## Type of Change | ||
| <!-- check the corresponding checkbox(es) with an "x" --> | ||
| - 🐛 Bug fix (non-breaking change that fixes an issue) [ ] | ||
| - ✨ New feature (non-breaking change that adds functionality) [ ] | ||
| - 💥 Breaking change (fix or feature that causes existing functionality to change and that could impact other libs) [ ] | ||
| - 🔧 Refactor (no functional changes, code improvement only) [ ] | ||
| - 📦 Dependency update [ ] | ||
| - 🔒 Security fix [ ] | ||
| - 📝 Documentation update [ ] | ||
|
|
||
| --- | ||
|
|
||
| ## Checklist | ||
| ### Code Quality | ||
| - [ ] Code is linted and formatted | ||
| - [ ] No unnecessary commented-out code or debug logs | ||
| - [ ] No hardcoded values (use env variables or config) | ||
|
|
||
| ### Testing | ||
| - [ ] Unit tests added / updated | ||
|
|
||
| ### Security & Ops | ||
| - [ ] No sensitive data or secrets introduced | ||
| - [ ] Logging and error handling are appropriate | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| name: Auto-tag RC0 | ||
|
|
||
| 'on': | ||
| create: | ||
|
|
||
| jobs: | ||
| create-rc0-tag: | ||
| if: startsWith(github.ref, 'refs/heads/release/') | ||
| uses: payplug/template-ci/.github/workflows/auto_tag_rc.yml@main | ||
| secrets: inherit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| name: CI | ||
|
|
||
| 'on': | ||
| pull_request: | ||
| branches: | ||
| - test-develop-ci | ||
| - test-master-ci | ||
| paths-ignore: | ||
| - README.md | ||
|
|
||
| jobs: | ||
| quality: | ||
| uses: payplug/template-ci/.github/workflows/sylius_quality.yml@main | ||
|
|
||
| sylius-matrix: | ||
| needs: [quality] | ||
| if: github.base_ref == 'test-develop-ci' | ||
| uses: payplug/template-ci/.github/workflows/sylius_phpunit.yml@main | ||
|
|
||
| sonarcloud: | ||
| if: always() && !failure() && !cancelled() && github.base_ref == 'test-develop-ci' | ||
| needs: sylius-matrix | ||
| uses: payplug/template-ci/.github/workflows/sonarcloud.yml@main | ||
| with: | ||
| project-name: 'github-payplug-payplug-syliuspayplugplugin' | ||
| src-folder: 'src/' | ||
| secrets: | ||
| sonar-orga: ${{ secrets.SONAR_ORGA }} | ||
| sonar-token: ${{ secrets.SONAR_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| name: Release — RC | ||
|
|
||
| 'on': | ||
| push: | ||
| tags: | ||
| - '*-rc*' | ||
|
|
||
| jobs: | ||
| quality: | ||
| uses: payplug/template-ci/.github/workflows/sylius_quality.yml@main | ||
|
|
||
| phpunit: | ||
| needs: [quality] | ||
| uses: payplug/template-ci/.github/workflows/sylius_phpunit.yml@main | ||
|
|
||
| github-release: | ||
| needs: phpunit | ||
| uses: payplug/template-ci/.github/workflows/github_release_rc.yml@main | ||
| secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,3 +24,4 @@ CLAUDE.md | |
| .DS_Store | ||
| .claude | ||
| .review | ||
| .phpunit.result.cache | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.