Skip to content

Releases: adamhartford/SwiftR

SignalR 2.2.2 and configurable allowed origin for CORS

28 Sep 17:22
Compare
Choose a tag to compare
  • Added support for SignalR 2.2.2, which is now assumed by default.
  • Added originUrlString property to configure allowed origin for CORS (thanks @eabadjiev).

Fixed warnings

09 May 23:24
Compare
Choose a tag to compare
v0.13.1

Update to v0.13.1

API Improvements

17 Jan 14:39
Compare
Choose a tag to compare

You now create a SignalR instance instead of using SwiftR.connect(). This is intended to make the setup code easier to read and understand, and allows the connection setup to be done outside of callback (a common question/complaint).

If you do not want to update your code for these changes, point your SwiftR Podfile reference to version 0.12.0.

Updated for Xcode 8 and Swift 3

15 Sep 14:45
Compare
Choose a tag to compare

If you still need Swift 2.2 support, use version 0.11.0.

New demo. Updated error handler.

01 Jun 20:28
Compare
Choose a tag to compare
  • New demo application using http://swiftr.azurewebsites.net
  • Updated error handler to avoid JavaScript execution returned a result of an unsupported type message.

Bug Fix

17 May 14:36
Compare
Choose a tag to compare

Fixed issue #48. Null error printing to console when no error occurred.

Bug fixes

05 May 15:47
Compare
Choose a tag to compare
  • Add support for WKWebView customUserAgent. Issue #36.
  • Fixed SignalR version support. Issue #44.
  • Fixed error handler not being called. Issue #40.

Default Arguments to Nil

08 Apr 17:30
Compare
Choose a tag to compare

No longer need to pass nil/empty arguments.

myHub.invoke("someMethod", arguments: nil)

can become...

myHub.invoke("someMethod")

Bug Fix (Persistent Connections)

08 Apr 02:52
Compare
Choose a tag to compare

Fixed argument serialization bug when sending data.

Bug Fix (Hubs)

07 Apr 00:58
Compare
Choose a tag to compare

Fixed argument serialization bug when invoking server methods. Issue #33.