Skip to content
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

add statement api #38

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

16,17,21のサポートをしたいがmockitoの大幅ver up(とそれに伴うリファクタ)が必要

Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
- name: Build with Maven
- name: Build & Test with Maven
run: mvn install -Dgpg.skip=true
75 changes: 1 addition & 74 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,74 +1 @@

=== 0.6.1 2022-10-05

* Add 3D Secure feature. #37

=== 0.6.0 2022-09-08

* Add retry feature. #34

=== 0.5.0 2022-08-10

This version include breaking changes.

* [breaking change] When API returned not json response, it will throw APIException instead of JsonSyntaxException. #32
* add getStatus method to each Exception. #32

=== 0.4.4 2021-03-08

* add charge.fee_rate properties #28

=== 0.4.3 2020-12-17

* add transfer.summary.dispute_xxx properties #26

=== 0.4.2 2020-06-29

* Fix error.code from InvalidRequestException in 404

=== 0.4.1 2019-07-22

* Update [status page URL](https://status.pay.jp)

=== 0.4.0 2019-07-05

* Add [subscription.next_cycle_plan](https://pay.jp/docs/api/#subscription-%E5%AE%9A%E6%9C%9F%E8%AA%B2%E9%87%91)

=== 0.3.0 2018-06-27

* Add interface for additional http headers

=== 0.2.1 2017-03-10

* Fix bug Account.retrieve()

=== 0.2.0 2017-02-06

* Delete Account.getCustommer
* Delete Account.getAccountsEnabled

=== 0.1.1 2016-07-12

* Support metadata parameter for Card, Charge, Plan and Subscription.
* Fix api call fails with longer api key.

=== 0.1.0 2015-06-23

* Delete unuse source, add README.md and RequestExample.md.

=== 0.0.5 2015-06-19

* Fix all features.

=== 0.0.3 2015-06-15

* Fix Charge, Token, Event, Transfer.

=== 0.0.2 2015-06-12

* Set the test key, fix Account.

=== 0.0.1 2015-06-11

* Init source.

Please see https://github.com/payjp/payjp-java/releases
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>jp.pay</groupId>
<artifactId>payjp-java</artifactId>
<version>0.6.1</version>
<version>0.6.2</version>
</dependency>
```

Expand All @@ -27,7 +27,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "jp.pay:payjp-java:0.6.1"
compile "jp.pay:payjp-java:0.6.2"
```

### Others
Expand Down