Releases: drashland/wocket
v1.0.0
Initial release
Documentation link: https://drash.land/wocket/v1.x/getting-started/introduction
v1.0.0-internal-2
Compatibility
- Requires Deno v1.17.0 or higher
- Uses Deno [email protected]
Documentation
Documentation is forthcoming. Sorry for the inconvenience. This release is mainly for internal testing before making release candidates.
Importing
- Import this latest release by using the following in your project(s):
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- v1
v1.0.0-internal-1
Compatibility
- Requires Deno v1.17.0 or higher
- Uses Deno [email protected]
Documentation
Documentation is forthcoming. Sorry for the inconvenience. This release is mainly for internal testing before making release candidates.
Importing
- Import this latest release by using the following in your project(s):
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- v1
v0.6.3
Compatibility
- Requires Deno v1.8.3
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- chore: Support latest Deno version
v0.6.2
Compatibility
- Requires Deno v1.4 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v0.6.1
Compatibility
- Requires Deno v1.4 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- fix: Re-export type error when importing (#103)
v0.6.0
Compatibility
- Requires Deno v1.4.0 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { Wocket } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v0.5.0
Compatibility
- Requires Deno v1.x
- Uses Deno [email protected]
Importing
-
Import this latest release by using the following in your project(s):
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- feat: documentation and tutorials: https://drash.land/sockets
- feat: handle string packets
- modify: packets cannot be sent to channels that aren't opened; channels must be opened first
- modify:
server.close()
now waits for all messages to be sent before closing - modify: change
connection
event toconnect
- modify: term "message" to be "packet"
- modify:
createChannel()
toopenChannel()
- remove: binary packet support (will be re-implemented at a later time)
- remove:
onMessage()
- remove: chained
.on()
- tests: remove Drash from integration tests; use raw Deno server
- tests: use Rhum in tests
- chore: fix linting issues
- chore: add types
- chore: improve doc blocks for compatibility with doc.deno.land
- chore: Update dependencies to 0.71.0, added more tests
v0.4.0
Requires Deno v1.x
Uses Deno Standard Modules v0.58.0
chore: remove SocketClient code and move to https://github.com/drashland/sockets (addresses https://github.com/drashland/sockets/issues/43)