Skip to content

Commit

Permalink
Release 6.0.19
Browse files Browse the repository at this point in the history
- Adds support for Cardholder operations [Issuing] (CS2)
- Adds support for Cards operations [Issuing] (CS2)
- Adds support for Card Controls operations [Issuing] (CS2)
- Adds support for Card Testing operations [Issuing] (CS2)
- Updates conflict response for onboard sub entity operation to include ID
- Adds authentication_status_reason to 3DS object in the GET payment details response
- Adds missing and properties in Customers Instruments
- Add local_schemes and deprecate scheme_local
- Feat(issuing): simulate preauth auths & reversals
- Feat(issuing): simulate clearing
- Adds strings format for the correct deserialization from json responses
- Adds final keyword to queryFilter param in query method
- Removes final keyword from this package classes
  • Loading branch information
armando-rodriguez-cko committed Jul 26, 2023
1 parent c2cd047 commit 65190d8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 35 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,3 @@ jobs:
CHECKOUT_DEFAULT_OAUTH_ISSUING_CLIENT_ID: ${{ secrets.IT_CHECKOUT_DEFAULT_OAUTH_ISSUING_CLIENT_ID }}
CHECKOUT_DEFAULT_OAUTH_ISSUING_CLIENT_SECRET: ${{ secrets.IT_CHECKOUT_DEFAULT_OAUTH_ISSUING_CLIENT_SECRET }}
run: ./gradlew build test --fail-fast
- id: setup-java-11-sonar-analysis
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- id: cache-sonarcloud-packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- id: run-sonar-analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew sonarqube --info
16 changes: 0 additions & 16 deletions .github/workflows/build-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,3 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew build
- id: setup-java-11-sonar-analysis
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- id: cache-sonarcloud-packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- id: run-sonar-analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew sonarqube --info
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: [ self-hosted, checkout-default-runners-github-runners ]
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.checkout
version=6.0.18
version=6.0.19

maven2_url=https://oss.sonatype.org/service/local/staging/deploy/maven2/
snapshot_url=https://oss.sonatype.org/content/repositories/snapshots/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ void shouldMakePayPalPayment() {
.build()))
.build();

checkErrorItem(() -> paymentsClient.requestPayment(paymentRequest), APM_SERVICE_UNAVAILABLE);
checkErrorItem(() -> paymentsClient.requestPayment(paymentRequest), PAYEE_NOT_ONBOARDED);
}

@Test
Expand Down

0 comments on commit 65190d8

Please sign in to comment.