Skip to content

Commit 542b4f0

Browse files
updating version - Adding optional retry logic for Http requests.
1 parent ca53d9e commit 542b4f0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,9 @@ This example demonstrates how to add custom headers to your email message.
173173
### [Basic send with a web proxy](https://github.com/socketlabs/socketlabs-csharp/blob/master/Example%20Projects/dotNetCoreExample/Examples/Basic/BasicSendWithProxy.cs)
174174
This example demonstrates how to use a proxy with your HTTP client.
175175

176+
### [Basic send with retry enabled](https://github.com/socketlabs/socketlabs-csharp/blob/master/Example%20Projects/dotNetCoreExample/Examples/Basic/BasicSendWithRetry.cs)
177+
This example demonstrates how to use the retry logic with your HTTP client.
178+
176179
### [Basic send complex example](https://github.com/socketlabs/socketlabs-csharp/blob/master/Example%20Projects/dotNetCoreExample/Examples/Basic/BasicComplexExample.cs)
177180
This example demonstrates many features of the Basic Send, including adding multiple recipients, adding message and mailing id's, and adding an embedded image.
178181

@@ -205,6 +208,7 @@ For more information about AMP please see [AMP Project](https://amp.dev/document
205208

206209
<a name="version"></a>
207210
# Version
211+
* 1.2.2 - Adding optional retry logic for Http requests. If configured, the request will retry when certain 500 errors occur (500, 502, 503, 504)
208212
* 1.2.1 - Adding request timeout value on the client for Http requests
209213
* 1.2.0 - Can now pass in instance of HTTP client, adds .NET 5.0 support
210214
* 1.1.0 - Adds Amp Html Support

manifest/socketlabs.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>SocketLabs.EmailDelivery</id>
5-
<version>1.2.1</version>
5+
<version>1.2.2</version>
66
<title>SocketLabs.EmailDelivery</title>
77
<authors>Joe Cooper, David Schrenker, Matt Reibach, Ryan Lydzinski (Contributor), Mike Goodfellow (Contributor), Saranya Kavuri (Contributor)</authors>
88
<license type="file">license.txt</license>

src/SocketLabs/SocketLabs.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageId>SocketLabs</PackageId>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
1010
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
11-
<Version>1.2.1</Version>
11+
<Version>1.2.2</Version>
1212
<Copyright>(C) 2018-2021 SocketLabs</Copyright>
1313
<PackageIconUrl>https://www.socketlabs.com/assets/socketlabs-logo1.png</PackageIconUrl>
1414
<Authors>SocketLabs Development Team</Authors>

0 commit comments

Comments
 (0)