Skip to content

Releases: drashland/wocket

v1.0.0

18 Feb 21:02
4e7a01d
Compare
Choose a tag to compare

v1.0.0-internal-2

18 Dec 18:16
Compare
Choose a tag to compare
v1.0.0-internal-2 Pre-release
Pre-release

Compatibility

  • Requires Deno v1.17.0 or higher
  • Uses Deno std@0.118.0

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/wocket@v1.0.0-internal-2/mod.ts";

Updates

  • v1

v1.0.0-internal-1

18 Dec 18:10
Compare
Choose a tag to compare
v1.0.0-internal-1 Pre-release
Pre-release

Compatibility

  • Requires Deno v1.17.0 or higher
  • Uses Deno std@0.118.0

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/wocket@v1.0.0-internal-1/mod.ts";

Updates

  • v1

v0.6.3

04 Apr 11:35
2698a35
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.8.3
  • Uses Deno std@0.92.0

Importing

  • Import this latest release by using the following in your project(s):
    import { Server } from "https://deno.land/x/wocket@v0.6.3/mod.ts";

Updates

  • chore: Support latest Deno version

v0.6.2

09 Dec 01:54
fc4a8e7
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.4 or higher
  • Uses Deno std@0.78.0

Importing

  • Import this latest release by using the following in your project(s):
    import { Server } from "https://deno.land/x/wocket@v0.6.2/mod.ts";

Updates

  • fix: Send disconnect event when a client disconnects (#106)
  • chore: Refactor wss tests (#89)

v0.6.1

24 Nov 15:50
336f2f3
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.4 or higher
  • Uses Deno std@0.78.0

Importing

  • Import this latest release by using the following in your project(s):
    import { Server } from "https://deno.land/x/wocket@v0.6.1/mod.ts";

Updates

  • fix: Re-export type error when importing (#103)

v0.6.0

24 Nov 14:03
0047c4b
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.4.0 or higher
  • Uses Deno std@0.78.0

Importing

  • Import this latest release by using the following in your project(s):
    import { Wocket } from "https://deno.land/x/wocket@v0.6.0/mod.ts";

Updates

  • chore: Reduce bloat (#100)
  • chore: Rename instances of Sockets to Wocket where applicable (#97)
  • BREAKING: Remove openChannel method, open channels inside on() instead (#91)
  • chore: Add to workflows (#95)
  • feat: Add ability to send to a single client in a channel (#94)

v0.5.0

30 Sep 09:14
935ceaa
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.x
  • Uses Deno std@0.68.0

Importing

  • Import this latest release by using the following in your project(s):

    import { Server } from "https://deno.land/x/sockets@v0.5.0/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 to connect
  • modify: term "message" to be "packet"
  • modify: createChannel() to openChannel()
  • 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

03 Jul 22:06
c777c33
Compare
Choose a tag to compare

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)

v0.3.0

24 Jun 03:17
Compare
Choose a tag to compare

Requires Deno v1.x
Uses Deno Standard Modules v0.58.0

feat: heartbeat and reconnect (addresses #8)