228 | 229 |
230 |
231 | 232 |

Upgrading from v15 to v16

233 | 234 |

This guide will help you navigate the changes that were introduced in v16.

235 |

Objective-c is no longer supported. You must now use Swift.

236 |

Client supports multiple socket.io versions

237 | 238 |

The client now supports socket.io 3 servers. This is mostly a transparent change, however if your sever 239 | is socket.io 2, you must send .version(.two) as an option to the manager.

240 |
SocketManager(socketURL: URL(string:"http://localhost:8087/")!, config: [.version(.two)])
241 | 
242 | 243 |
244 |
245 | 246 | 247 |