Skip to content

Latest commit

 

History

History
473 lines (354 loc) · 25.3 KB

CHANGELOG.md

File metadata and controls

473 lines (354 loc) · 25.3 KB

Change Log

All notable changes to this project will be documented in this file.

[2024-02-14] Version 4.10.2

Library - Chore

[2023-11-17] Version 4.10.1

Library - Chore

[2023-11-06] Version 4.10.0

Library - Feature

Library - Test

[2022-06-29] Version 4.9.3

Library - Chore

[2022-05-18] Version 4.9.2

Library - Docs

Library - Chore

  • PR #726: security upgrade jackson-databind from 2.13.0 to 2.13.2. Thanks to @tomoyaY!

Library - Fix

[2022-03-23] Version 4.9.1

Library - Chore

[2022-03-09] Version 4.9.0

Library - Chore

Library - Feature

[2022-02-09] Version 4.8.3

Library - Chore

[2022-01-12] Version 4.8.2

Library - Fix

Library - Chore

[2021-12-01] Version 4.8.1

Library - Chore

[2021-11-03] Version 4.8.0

Library - Fix

  • PR #707: Add missing bypass settings to MailSettings. Thanks to @arkitex!

Library - Feature

  • PR #706: allow personalization of the From name and email for each email recipient. Thanks to @beebzz!

[2021-10-18] Version 4.7.6

Library - Docs

[2021-09-22] Version 4.7.5

Library - Chore

[2021-08-11] Version 4.7.4

Library - Chore

[2021-06-30] Version 4.7.3

Library - Docs

  • PR #679: Fix number of free emails in README. Thanks to @mjjs!

[2021-02-24] Version 4.7.2

Library - Chore

[2020-12-16] Version 4.7.1

Library - Fix

[2020-11-18] Version 4.7.0

Library - Docs

Library - Feature

[2020-11-05] Version 4.6.8

Library - Chore

[2020-10-14] Version 4.6.7

Library - Docs

[2020-09-28] Version 4.6.6

Library - Docs

Library - Fix

[2020-09-16] Version 4.6.5

Library - Docs

[2020-08-19] Version 4.6.4

Library - Docs

Library - Test

Library - Chore

[2020-08-05] Version 4.6.3

Library - Chore

Library - Docs

Library - Fix

[2020-07-22] Version 4.6.2

Library - Chore

Library - Docs

[2020-07-08] Version 4.6.1

Library - Fix

[2020-06-10] Version 4.6.0

Library - Feature

[2020-05-13] Version 4.5.0

Library - Feature

[2020-04-15] Version 4.4.8

Library - Fix

[2020-04-01] Version 4.4.7

Library - Docs

Library - Fix

[2020-03-18] Version 4.4.6

Library - Docs

Library - Chore

[2020-02-19] Version 4.4.5

Library - Docs

[2020-02-08] Version 4.4.4

Library - Fix

[2020-02-05] Version 4.4.3

Library - Docs

Library - Chore

[2020-02-01] Version 4.4.2

Library - Chore

[2019-05-20] Version 4.4.1

Fix

  • 4.4.0 release not deployed properly to Maven

[4.4.0] - 2019-05-20

Added

  • PR #500: Update CONTRIBUTING.md - using gitflow workflow, development branch instead of main -- BIG thanks to Alex
  • PR #521: Updating prerequisites -- BIG thanks to Rishabh
  • PR #495: Add ability to impersonate subusers -- BIG thanks to Rohit Tarachandani
  • PR #569: Twilio Branding + CLA Policy Update

Fix

  • PR #497: USE_CASES.md was missing the subject in the template and the dynamic data for the subject -- BIG thanks to Kyle Roberts
  • PR #306: Java packages were not corresponding to the actual location of classes, all packages were update to match class location -- BIG thanks to Bojan Trajkovski
  • PR #544: Remove references to "Whitelabel" -- BIG thanks to Chandler Weiner
  • PR #507: Update TROUBLESHOOTING.md broken link -- BIG thanks to Andrew Joshua Loria

[4.3.0] - 2018-10-11

Added

Fix

[4.2.1] - 2018-05-08

Security Fix

  • Update to the latest Jackson recommended dependency, based on this article.

[4.2.0] - 2018-05-04

Added

Fix

[4.1.2] - 2017-10-30

Added

  • PR #220 Alway serialize click-tracking parameters.
  • BIG thanks to Mattia Barbon

[4.1.1] - 2017-10-10

Added

[4.1.0] - 2017-08-16

Added

  • PR #211 Return empty collections in place of nulls
  • BIG thanks to Antonio Bucciol

[4.0.1] - 2017-05-22

Fix

  • PR #199 Return correct Email in getFrom
  • BIG thanks to Jared Dellitt

[4.0.0] - 2017-04-18

BREAKING CHANGE

  • PR #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] - 2017-04-13

Added

  • PR #175
  • Simplified method makeCall().
  • BIG thanks to Rafał Wrzeszcz for the pull request!

[3.2.0] - 2017-03-22

Added

  • PR #160
  • [Enhancement] Adds an attachment builder that supports InputStream content
  • BIG thanks to Dmitry Avershin for the pull request!

[3.1.0] - 2016-10-11

Added

  • PR #158, Solves #138
  • [Enhancement] allow using custom Client, HTTP proxy support
  • BIG thanks to David Maicher for the pull request!

[3.0.9] - 2016-08-24

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] - 2016-08-09

Fixed

[3.0.7] - 2016-08-08

Added

[3.0.6] - 2016-07-26

Added

[3.0.5] - 2016-07-20

Added

  • README updates
  • Update introduction blurb to include information regarding our forward path
  • Update the v3 /mail/send example to include non-helper usage
  • Update the generic v3 example to include non-fluent interface usage

[3.0.4] - 2016-07-19

Fixed

[3.0.3] - 2016-07-12

Added

  • Update docs, unit tests and examples to include Sender ID

[3.0.2] - 2016-07-05

Updated

[3.0.1] - 2016-06-28

Fixed

[3.0.0] - 2016-06-13

Added

  • Breaking change to support the v3 Web API
  • New HTTP client
  • v3 Mail Send helper

[2.2.2] - 2015-5-23

Fixed

  • Substitution orders being swapped via #65

[2.2.1] - 2015-5-14

Changed

  • Update smtpapi-java to v1.2.0

[2.2.0] - 2015-4-27

Added

  • Support for API keys
  • setTemplateId to use the Template Engine