Skip to content

Releases: ebebbington/dami

v4.1.1

27 Apr 18:30
f9ad770
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.9.0< or higher
  • Uses Deno std@0.93.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v4.1.1/mod.ts";

Updates

  • chore: Update dependencies (#55)

v4.1.0

04 Jan 12:03
5a4db15
Compare
Choose a tag to compare

Compatibility

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

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v4.1.0/mod.ts";

Updates

  • feat: Add removeListener() method and connected property (#40)
  • chore: Update dependencies (#36)

v4.0.1

24 Nov 15:16
6371511
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v4.5 or higher
  • Uses Deno std@0.77.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v4.0.1/mod.ts";

Updates

  • fix: fix being unable to import from mod.ts (#34)

v4.0.0

19 Nov 11:59
54113a6
Compare
Choose a tag to compare

Compatibility

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

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v4.0.0/mod.ts";

Updates

  • BREAKING: Refactor (#31)
    • Renames connectAndLogin() to connect()
    • Makes listen() method private. This is now handled inside connect()
    • Events can now be retrieved again by doing: const res = await Dami.to(...)
    • Removed callbacks from to()
    • to() still returns Event[]
    • on() Returns Event instead of Event[]
    • Authentication response/event can be retrieved by: const authRes = await Dami.connect(...)
    • Added back the ping() method
    • Improved performance
    • Always returns all the data from the event(s)

v3.0.1

04 Oct 19:14
7de2c25
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.2.0 or higher
  • Uses Deno std@0.70.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v3.0.1/mod.ts";

Updates

  • chore: update dependencies (#26)
  • fix: Cannot read property of undefined errors (#25)

v3.0.0

26 Sep 00:11
d408008
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.2.3 or higher (or 1.4.0. if using --unstable)
  • Uses Deno std@0.70.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v3.0.0/mod.ts";

Updates

  • chore: update dependencies (#21)
  • BREAKING: Refactor code base, remove returning values from .to, improve documentation, remove need for 2 connections, returned event data now returns all the data (#20)

v2.1.0

22 Aug 01:28
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.2.0
  • Uses Deno std@0.65.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v2.1.0/mod.ts";

Updates

  • feat: Add Support for TLS (#16)

v2.0.0

21 Aug 08:08
f15f108
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.2.0
  • Uses Deno std@0.65.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v2.0.0/mod.ts";

Updates

  • BREAKING: Remove triggerEvent Method and Refactor to method (#14)
  • feat: Allow a synchronous nature of issuing actions (#13)
  • chore: Cleanup internal code (#12)
  • Updated readme image source (#10)

v1.0.5

17 Aug 00:43
e781f80
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.2.0
  • Uses Deno std@0.63.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v1.0.5/mod.ts";

Updates

  • fix: Send the correct data for on callbacks (#6)
  • chore: Cleanup (#6)

v1.0.4

14 Aug 22:19
1ca2052
Compare
Choose a tag to compare

Compatibility

  • Requires Deno v1.2.0 or higher
  • Uses Deno std@0.63.0

Importing

  • Import this latest release by using the following in your project(s):
    import { DAMI } from "https://deno.land/x/dami@v1.0.4/mod.ts";

Updates

  • fix: support Output data when pulling AMI responses (#4)