This repository has been archived by the owner on May 14, 2020. It is now read-only.
Releases: helpscout/helpscout-api-java
Releases · helpscout/helpscout-api-java
v1.6.2
v1.5.1: Bug Fix
Version 1.5.1 specifically addresses one bug in the Address model where JSON being de-serialized threw an exception as it needed java.util.Date
objects in place of java.util.Calendar
objects. More detail can be found in the PR (closed) for this bug #14
v1.5.0: Bug Fixes
Version 1.5.0 addresses numerous issues and PRs, and also cleans up many areas of the code base:
- Identifiers are now of type Long (matching model objects). Old methods using Integer are deprecated.
- Added support for generics.
- Lombok-ified many classes.
- Added toString() methods to model objects.
- The build now also generates a source JAR.
- Reformatted code to use spaces instead of tabs.
- Used Base64 encoder from Apache Commons Codec insead of "sun.misc" package. Fixes issue #2.
- Initialized ApiClient instance at class-load time and refactored ApiClient.getInstance(). Fixes issue #6.
- Fixed error in example CreateConversation.java, and also improved exception messages in the case of bad requests. Fixes issue #8.
Thanks to our many contributors who submitted pull requests for this release!
v1.4.0: Reports
Added support for getting reports.
v1.3.13: Update thread text
Added support to update the body text of a thread.
v1.3.12: Search Conversations and Customers
Added support for searching for conversations and customers.
v1.3.11: Get current user
Added a function to get the User associated with the API key used to make the request.
v1.3.10: Delete a Note
- Added an endpoint to delete a note.