Releases: ebebbington/dami
Releases · ebebbington/dami
v4.1.1
Compatibility
- Requires Deno v1.9.0< or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- chore: Update dependencies (#55)
v4.1.0
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 { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v4.0.1
Compatibility
- Requires Deno v4.5 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- fix: fix being unable to import from mod.ts (#34)
v4.0.0
Compatibility
- Requires Deno v1.2.3 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- BREAKING: Refactor (#31)
- Renames
connectAndLogin()
toconnect()
- Makes
listen()
method private. This is now handled insideconnect()
- Events can now be retrieved again by doing:
const res = await Dami.to(...)
- Removed callbacks from
to()
to()
still returnsEvent[]
on()
ReturnsEvent
instead ofEvent[]
- 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)
- Renames
v3.0.1
Compatibility
- Requires Deno v1.2.0 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v3.0.0
Compatibility
- Requires Deno v1.2.3 or higher (or 1.4.0. if using
--unstable
) - Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v2.1.0
Compatibility
- Requires Deno v1.2.0
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- feat: Add Support for TLS (#16)
v2.0.0
Compatibility
- Requires Deno v1.2.0
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v1.0.5
Compatibility
- Requires Deno v1.2.0
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
v1.0.4
Compatibility
- Requires Deno v1.2.0 or higher
- Uses Deno [email protected]
Importing
- Import this latest release by using the following in your project(s):
import { DAMI } from "https://deno.land/x/[email protected]/mod.ts";
Updates
- fix: support Output data when pulling AMI responses (#4)