File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.1.0
4
+ * [ FIX] Mitigates NRE and race in Connect/Disconnect (PR #72 , issue #71 )
5
+ * [ FIX] Potential incompatibility with il2cpp compiler for iOS target due to dynamic keyword (issue #69 )
6
+ * [ FIX] Race condition in PresenceChannel name (issue #44 )
7
+ * [ ADDED] Extended API for Bind/Unbind and BindAll/UnbindAll to emit a more idiomatic <PusherEvent > as an alternative to the raw data String
8
+ * [ ADDED] NUnit 3 Test Adaptor to enable test integration with VS2019
9
+
3
10
## 1.0.2
4
11
* [ CHANGED] Project now targets DotNet Standard 1.6.
5
12
* [ REMOVED] Retired Sync versions of method. Updated tests to use async versions of methods.
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ private string ConstructUrl()
213
213
{
214
214
var scheme = _options . Encrypted ? Constants . SECURE_SCHEMA : Constants . INSECURE_SCHEMA ;
215
215
216
- return $ "{ scheme } { _options . Host } /app/{ _applicationKey } ?protocol=5&client=pusher-dotnet-client&version=0.0.1 ";
216
+ return $ "{ scheme } { _options . Host } /app/{ _applicationKey } ?protocol=5&client=pusher-dotnet-client&version=1.1.0 ";
217
217
}
218
218
219
219
/// <summary>
@@ -423,4 +423,4 @@ private void SubscribeExistingChannels()
423
423
}
424
424
}
425
425
}
426
- }
426
+ }
Original file line number Diff line number Diff line change 7
7
<PropertyGroup >
8
8
<PackageId >PusherClient</PackageId >
9
9
<PackageTitle >Pusher .NET Client Library</PackageTitle >
10
- <PackageVersion >0.6 </PackageVersion >
10
+ <PackageVersion >1.1.0 </PackageVersion >
11
11
<PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
12
12
<PackageTags >pusher realtime websocket</PackageTags >
13
13
<License >https://github.com/pusher/pusher-websocket-dotnet/blob/master/LICENSE.txt</License >
You can’t perform that action at this time.
0 commit comments