From 557fd02bd4e200ba71d93f08974b74f380e2d571 Mon Sep 17 00:00:00 2001
From: Kishore Reddy <97159124+kishore-paypay@users.noreply.github.com>
Date: Tue, 21 Apr 2026 19:19:31 +0900
Subject: [PATCH 1/2] release new version
---
DynamicQRCode.md | 2 +-
PendingPayment.md | 4 ++--
PreAuthCapture.md | 4 ++--
build.gradle | 2 +-
src/main/java/jp/ne/paypay/api/ApiConstants.java | 2 +-
userAuth.md | 4 ++--
6 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/DynamicQRCode.md b/DynamicQRCode.md
index 363c2c8..dba2efc 100644
--- a/DynamicQRCode.md
+++ b/DynamicQRCode.md
@@ -27,7 +27,7 @@ Before integrating with the SDK, run through this checklist:
Add this dependency to your project's build file:
```groovy
-compile "jp.ne.paypay:paypayopa:1.0.8"
+compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/dynamicqrcode#tag/Api-Authentication) if you want to know more about the authentication.
diff --git a/PendingPayment.md b/PendingPayment.md
index 10580d5..93608b5 100644
--- a/PendingPayment.md
+++ b/PendingPayment.md
@@ -37,11 +37,11 @@ gradle install
jp.ne.paypay
paypayopa
- 1.0.8
+ 1.0.9
compile
#Gradle: Add this dependency to your project's build file:
-compile "jp.ne.paypay:paypayopa:1.0.8"
+compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/pending_payments#tag/Api-Authentication) if you want to know more about the authentication.
diff --git a/PreAuthCapture.md b/PreAuthCapture.md
index 156e57c..bb9192c 100644
--- a/PreAuthCapture.md
+++ b/PreAuthCapture.md
@@ -36,11 +36,11 @@ gradle install
jp.ne.paypay
paypayopa
- 1.0.8
+ 1.0.9
compile
#Gradle: Add this dependency to your project's build file:
-compile "jp.ne.paypay:paypayopa:1.0.8"
+compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/preauth_capture#tag/Api-Authentication) if you want to know more about the authentication.
diff --git a/build.gradle b/build.gradle
index 4c105ca..de56e41 100644
--- a/build.gradle
+++ b/build.gradle
@@ -11,7 +11,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'jp.ne.paypay'
-version = '1.0.8'
+version = '1.0.9'
diff --git a/src/main/java/jp/ne/paypay/api/ApiConstants.java b/src/main/java/jp/ne/paypay/api/ApiConstants.java
index 3f3c045..53b06a1 100644
--- a/src/main/java/jp/ne/paypay/api/ApiConstants.java
+++ b/src/main/java/jp/ne/paypay/api/ApiConstants.java
@@ -16,5 +16,5 @@ public class ApiConstants {
public static final String CONTENT_TYPE = "Content-Type";
public static final String USER_AUTHORIZATION_ID = "userAuthorizationId";
public static final String RESOLVE_BASE_URL = "https://developer.paypay.ne.jp/develop/resolve";
- public static final String USER_AGENT = "PayPay-SDK/1.0.8/java";
+ public static final String USER_AGENT = "PayPay-SDK/1.0.9/java";
}
diff --git a/userAuth.md b/userAuth.md
index 5fdb5db..0fb6c91 100644
--- a/userAuth.md
+++ b/userAuth.md
@@ -12,11 +12,11 @@ gradle install
jp.ne.paypay
paypayopa
- 1.0.8
+ 1.0.9
compile
#Gradle: Add this dependency to your project's build file:
-compile "jp.ne.paypay:paypayopa:1.0.8"
+compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/pending_payments#tag/Api-Authentication) if you want to know more about the authentication.
From 609cdd19edce82e173cbcb5f4a4f05b5bf3cb265 Mon Sep 17 00:00:00 2001
From: kishore
Date: Tue, 21 Apr 2026 19:35:24 +0900
Subject: [PATCH 2/2] fix test
---
src/test/java/jp/ne/paypay/api/ApiClientTest.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/test/java/jp/ne/paypay/api/ApiClientTest.java b/src/test/java/jp/ne/paypay/api/ApiClientTest.java
index 33d5886..fc8bc52 100644
--- a/src/test/java/jp/ne/paypay/api/ApiClientTest.java
+++ b/src/test/java/jp/ne/paypay/api/ApiClientTest.java
@@ -61,10 +61,10 @@ public void configTest() throws ApiException{
Assert.assertNotNull(configuration.getDefaultApiClient());
Assert.assertNotNull(apiClient.getBasePath());
Assert.assertFalse(apiClient.isProductionMode());
- Assert.assertEquals(apiClient.getBasePathProd(), "https://api.paypay.ne.jp");
- Assert.assertEquals(apiClient.getBasePathSandbox(), "https://stg-api.sandbox.paypay.ne.jp");
+ Assert.assertEquals(ApiConstants.PROD_BASE_PATH, apiClient.getBasePathProd());
+ Assert.assertEquals(ApiConstants.SANDBOX_BASE_PATH, apiClient.getBasePathSandbox());
apiClient.setProductionMode(true);
- Assert.assertEquals(apiClient.getBasePath(), "https://api.paypay.ne.jp");
+ Assert.assertEquals(ApiConstants.PROD_BASE_PATH, apiClient.getBasePath());
apiClient.setBasePathProd("prodUrl");
Assert.assertEquals(apiClient.getBasePathProd(), "prodUrl");
apiClient.setBasePathSandbox("sandboxUrl");