Skip to content

Releases: ubaldop/sendgrid-java

4.3.1

30 Oct 11:14

Choose a tag to compare

Added

4.3.0

30 Oct 11:08

Choose a tag to compare

Added

Fix

4.1.0

30 Oct 10:41

Choose a tag to compare

Added

4.0.1

30 Oct 10:41

Choose a tag to compare

Fix

4.0.0

30 Oct 10:41

Choose a tag to compare

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 Request object attributes are now only accessible through getters/setters
  • request.method is now request.setMethod(string)
  • request.endpoint is now request.setEndpoint(string)
  • request.body is now request.setBody(string)
  • The Response object attributes are now only accessible through getters/setters
  • response.statusCode is now response.getStatusCode()
  • response.body is now response.getBody()
  • response.headers is now response.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

30 Oct 10:41

Choose a tag to compare

Added

3.2.0

30 Oct 10:41

Choose a tag to compare

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

30 Oct 10:41

Choose a tag to compare

Added

3.0.9

30 Oct 10:41

Choose a tag to compare

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

30 Oct 10:41

Choose a tag to compare

Fixed