Releases: ubaldop/sendgrid-java
Releases · ubaldop/sendgrid-java
4.3.1
4.3.0
Added
- PR #449: Dynamic Templates support -- BIG thanks to Marcus Vinícius
- PR #451: Added CodeTriage tag -- BIG thanks to Anshul Singhal
- PR #453: Documentation readability update -- BIG thanks to Anshul Singhal
- PR #461: Update README to use implementation instead of compile -- BIG thanks to Rosário Pereira Fernandes
- PR #463: Link to the online version of CLA in README.md -- BIG thanks to Bharat Raghunathan
Fix
- PR #358: Fixing similar code issue in examples/ips/ips.java -- BIG thanks to Julian Jacques Maurer
- PR #475: Fix formatting of README in examples/accesssettings -- BIG thanks to Nathan Seebarran
4.1.0
Added
- PR sendgrid#211 Return empty collections in place of nulls
- BIG thanks to Antonio Bucciol
4.0.1
Fix
- PR sendgrid#199 Return correct Email in getFrom
- BIG thanks to Jared Dellitt
4.0.0
BREAKING CHANGE
- PR sendgrid#162 Update java http client dependency to 4.1.0 from 2.3.4
- BIG thanks to Diego Camargo for the pull request!
- The breaking change is that variables that were public are now private and accessible only via getters and setters
- The
Requestobject attributes are now only accessible through getters/setters request.methodis nowrequest.setMethod(string)request.endpointis nowrequest.setEndpoint(string)request.bodyis nowrequest.setBody(string)- The
Responseobject attributes are now only accessible through getters/setters response.statusCodeis nowresponse.getStatusCode()response.bodyis nowresponse.getBody()response.headersis nowresponse.getHeaders()- Adding a query parameter goes from:
Map<String,String> queryParams = new HashMap<String, String>();
request.addQueryParam("limit", "1");
queryParams.put("limit", "1");
request.queryParams = queryParams;to:
request.addQueryParam("limit", "1");3.2.1
Added
- PR sendgrid#175
- Simplified
makeCall()method. - BIG thanks to Rafał Wrzeszcz for the pull request!
3.2.0
Added
- PR sendgrid#160
- [Enhancement] Adds an attachment builder that supports InputStream content
- BIG thanks to Dmitry Avershin for the pull request!
3.1.0
Added
- PR sendgrid#158, Solves sendgrid#138
- [Enhancement] allow using custom Client, http proxy support
- BIG thanks to David Maicher for the pull request!
3.0.9
Added
- Table of Contents in the README
- Added a USE_CASES.md section, with the first use case example for transactional templates
3.0.8
Fixed
- Updated dependency for java-http-client
- Pull #7: Fix Response Charset to UTF-8
- Fixes issue #6: Multi-byte character got garbled on received mail
- BIG thanks to Yoichi Kikuta for the pull request!