Skip to content

Commit

Permalink
add statement api & rm vulnerabilities pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
darai0512 committed Jan 17, 2024
1 parent 51d2169 commit d2a7371
Show file tree
Hide file tree
Showing 17 changed files with 161 additions and 747 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
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
Loading

0 comments on commit d2a7371

Please sign in to comment.