Skip to content

Commit 1e31880

Browse files
committed
Roles, Permissions and more tests - v3.30 pushed to NuGet
1 parent 425b778 commit 1e31880

37 files changed

+902
-266
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

NuGet/ServiceStack.Common/lib/ServiceStack.Interfaces.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

NuGet/ServiceStack.Common/servicestack.common.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
33
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
44
<id>ServiceStack.Common</id>
5-
<version>3.2.8</version>
5+
<version>3.3.0</version>
66
<authors>Demis Bellot</authors>
77
<owners>Demis Bellot</owners>
88
<summary>Opensource .NET and Mono REST Web Services framework</summary>
0 Bytes
Binary file not shown.
4 KB
Binary file not shown.
-1 KB
Binary file not shown.

NuGet/ServiceStack/servicestack.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
33
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
44
<id>ServiceStack</id>
5-
<version>3.2.8</version>
5+
<version>3.3.0</version>
66
<authors>Demis Bellot</authors>
77
<owners>Demis Bellot</owners>
88
<summary>Opensource .NET and Mono REST Web Services framework</summary>

release/copy.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
COPY ..\NuGet\ServiceStack\lib\* latest\ServiceStack
2+
COPY ..\NuGet\ServiceStack.Common\lib\* latest\ServiceStack
3+
4+
COPY ..\..\ServiceStack.Text\NuGet\lib\* latest\ServiceStack
5+
COPY ..\..\ServiceStack.Redis\NuGet\lib\* latest\ServiceStack
6+
COPY ..\..\ServiceStack.OrmLite\NuGet\ServiceStack.OrmLite.SqlServer\lib\* latest\ServiceStack

src/ServiceStack.Common/ServiceClient.Web/ServiceClientBase.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,15 @@ private bool HandleResponseException<TResponse>(Exception ex, string httpMethod,
173173
var client = SendRequest(httpMethod, requestUri, request);
174174
client.AddBasicAuth(this.UserName, this.Password);
175175

176-
using (var responseStream = client.GetResponse().GetResponseStream())
176+
try
177177
{
178-
response = DeserializeFromStream<TResponse>(responseStream);
179-
return true;
178+
using (var responseStream = client.GetResponse().GetResponseStream())
179+
{
180+
response = DeserializeFromStream<TResponse>(responseStream);
181+
return true;
182+
}
180183
}
184+
catch { /* Ignore deserializing error exceptions */ }
181185
}
182186
}
183187
catch (Exception subEx)

0 commit comments

Comments
 (0)