This repository was archived by the owner on Oct 17, 2023. It is now read-only.
Releases: hellosign/hellosign-java-sdk
Releases · hellosign/hellosign-java-sdk
v4.0.9
v4.0.8 - Adds redirect parameter when using template
This release fixes issue #70 where redirectUrl wasn't available when using a template in a signature request.
v4.0.7 - Bug Fixes
Fixes an issue where updateApiApp and deleteApiApp were not making requests to the correct API endpoint (issue #68)
v4.0.5 - Add parameter reset when exceptions are encountered
This fixes issue #65
v4.0.5 - Add Signature Statuses
This version adds the following signature statues:
error_unknownerror_fileerror_component_positionerror_text_tag
Thanks @codylerum !
v4.0.4
v4.0.3 - Add support for new event types
Add ENUM types for the following callback events:
signature_request_downloadablesignature_request_delegated
v4.0.2 - Add support for SignatureRequest getFilesUrl
This closes issue #43. Thanks @rscarvalho!
v4.0.1 - Add support for new features
v4.0.0
Breaking changes from 3.5.6:
- The following now return boolean instead of int:
HelloSignClient.cancelSignatureRequest()HelloSignClient.destroyTeam()
- Update DEFAULT_OAUTH_TOKEN_URL to app.*
- Removed deprecated methods:
- Removed methods for getOauthData that don't include a state parameter
- Removed HelloSignClient(String email, String password)
- Removed createAccount(String email, String password)
- Removed createAccount(String email, String password, String clientId, String clientSecret)
Non-breaking changes:
- Refactored HTTP client code to be testable.
- Rebuilt JUnit tests to run off Mockito using pre-generated responses.
- Added travis-ci config to run tests against all changes.
- Reformatted entire code base.
- Make HttpClient injectable through the protected constructor, update tests
- Don't swallow exception in isAccountValid()
- General bug fixes and adding missing enum values for OAuth Scopes
This closes issue #13 .