File tree Expand file tree Collapse file tree
src/main/java/com/mailjet/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616
1717This repo features the official Java wrapper for the Mailjet API.
1818
19- Check out all the resources and all the Java code examples in the [ Offical Documentation] [ doc ] .
19+ Check out all the resources and all the Java code examples in the [ Official Documentation] [ doc ] .
2020
2121## Table of contents
2222
@@ -48,6 +48,9 @@ Check out all the resources and all the Java code examples in the [Offical Docum
4848
4949
5050## Release notes
51+ v5.1.1
52+ - fixes adding additional quotes during serialization of string variables adn headers in TransactionalEmailBuilder
53+
5154v5.1.0
5255- downgraded OkHttpClient to v3.12 to be compatible with the current version in Spring Boot
5356- adds [ transactional email builder] ( src/test/java/com/mailjet/client/TransactionalEmailBuilderIT.java ) to make possible sending messages easier
@@ -70,7 +73,7 @@ Add the following in your `pom.xml`
7073 <dependency >
7174 <groupId >com.mailjet</groupId >
7275 <artifactId >mailjet-client</artifactId >
73- <version >5.1.0 </version >
76+ <version >5.1.1 </version >
7477 </dependency >
7578 </dependencies >
7679```
Original file line number Diff line number Diff line change 66 <!-- General configuration -->
77 <groupId >com.mailjet</groupId >
88 <artifactId >mailjet-client</artifactId >
9- <version >5.1.0 </version >
9+ <version >5.1.1 </version >
1010 <packaging >jar</packaging >
1111 <name >Mailjet Client</name >
1212 <description >A Mailjet API Client</description >
2727 <connection >scm:git:https://github.com/mailjet/mailjet-apiv3-java.git</connection >
2828 <developerConnection >scm:git:https://github.com/mailjet/mailjet-apiv3-java.git</developerConnection >
2929 <url >git@github.com:mailjet/mailjet-apiv3-java.git</url >
30- <tag >mailjet-client-5.1.0 </tag >
30+ <tag >mailjet-client-5.1.1 </tag >
3131 </scm >
3232 <!-- License-->
3333 <licenses >
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class MailjetClient {
3535 private ClientOptions _options ;
3636 private OkHttpClient _client ;
3737
38- private static final String userAgent = "mailjet-apiv3-java/v5.1.0 " ;
38+ private static final String userAgent = "mailjet-apiv3-java/v5.1.1 " ;
3939
4040 /**
4141 * Deprecated - please, use MailjetClient(ClientOptions clientOptions) ctor instead
You can’t perform that action at this time.
0 commit comments