-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Releases | ||
|
||
- [0.1.1](#011-2022-09-14) (2022-09-14) | ||
- [0.1.0](#010-2022-09-12) (2022-09-12) | ||
|
||
|
||
|
||
# [0.1.1](https://github.com/socketio/socket.io-deno/compare/0.1.0...0.1.1) (2022-09-14) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* disallow duplicate WebSocket connections with same sid ([193a9b5](https://github.com/socketio/socket.io-deno/commit/193a9b5db50e396025d32ac5166be7b5c39c6ddc)) | ||
* disallow mismatching transport ([6b2cc16](https://github.com/socketio/socket.io-deno/commit/6b2cc16a269405f8087b95ea563c0f9b746312bd)) | ||
* prevent crash when using custom headers ([dfe3122](https://github.com/socketio/socket.io-deno/commit/dfe3122865e768ae75e1d4d8c92a47961d708ee9)) | ||
* send a "noop" packet when transport is already closed ([3b1eb82](https://github.com/socketio/socket.io-deno/commit/3b1eb82d1e9e44660b43651dceb05b88bd1b5350)) | ||
|
||
|
||
|
||
# 0.1.0 (2022-09-12) | ||
|
||
This is the first release of this library! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ Table of content: | |
|
||
```ts | ||
import { serve } from "https://deno.land/[email protected]/http/server.ts"; | ||
import { Server } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { Server } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
|
||
const io = new Server(); | ||
|
||
|