Skip to content

Tags: gcollazo/deno

Tags

v0.16.0

Toggle v0.16.0's commit message

Verified

This tag was signed with the committer’s verified signature.
piscisaureus Bert Belder
v0.16.0 / 2019.08.22

In deno:

- feat: "deno test" subcommand (denoland#2783, denoland#2784, denoland#2800)
- feat: implement console.trace() (denoland#2780)
- feat: support .d.ts files (denoland#2746)
- feat: support custom inspection of objects (denoland#2791)
- fix: dynamic import panic (denoland#2792)
- fix: handle tsconfig.json with comments (denoland#2773)
- fix: import map panics, use import map's location as its base URL
  (denoland#2770)
- fix: set response.url (denoland#2782)

In deno_std:

- feat: add overloaded form of unit test declaration
  (denoland/deno_std#563)
- feat: add printf implementation (fmt/sprintf.ts)
  (denoland/deno_std#566)
- feat: print out the failed tests after the summary
  (denoland/deno_std#554)
- feat: test runner (denoland/deno_std#516, denoland/deno_std#564,
  denoland/deno_std#568)
- fix: accept absolute root directories in the file server
  (denoland/deno_std#558)
- fix: refactor 'assertEquals' (denoland/deno_std#560)
- fix: test all text functions in colors module (denoland/deno_std#553)

v0.14.0

Toggle v0.14.0's commit message

Verified

This tag was signed with the committer’s verified signature.
piscisaureus Bert Belder
v0.14.0 / 2019.08.09

In deno:

- feat: remove `Deno.build.args` (denoland#2728)
- feat: support native line ending conversion in the `Blob` constructor (denoland#2695)
- feat: add option to delete the `Deno` namespace in a worker (denoland#2717)
- feat: support starting workers using a blob: URL (denoland#2729)
- feat: make `Deno.execPath()` a function (denoland#2743, denoland#2744)
- feat: support `await import(...)` syntax for dynamic module imports (denoland#2516)
- fix: enforce permissions on `Deno.kill()`, `Deno.homeDir()` and
  `Deno.execPath()` (denoland#2714, denoland#2723)
- fix: `cargo build` now builds incrementally (denoland#2740)
- fix: avoid REPL crash when DENO_DIR doesn't exist (denoland#2727)
- fix: resolve worker module URLs relative to the host main module URL (denoland#2751)
- doc: improve documentation on using the V8 profiler (denoland#2742)

In deno_std:

- fix: make the 'ws' module (websockets) work again (denoland/deno_std#550)

v0.12.0

Toggle v0.12.0's commit message

Verified

This tag was signed with the committer’s verified signature.
ry Ryan Dahl
v0.12.0

- feat: Support window.onload (denoland#2643)
- feat: generate default file name for bundle when URL ends in a slash (denoland#2625)
- fix: for '-' arg after script name (denoland#2631)
- fix: upgrade v8 to 7.7.200 (denoland#2624)

v0.11.0

Toggle v0.11.0's commit message

Verified

This tag was signed with the committer’s verified signature.
ry Ryan Dahl
- feat: Add Deno.homeDir() (denoland#2578)

- feat: Change Reader interface (denoland#2591)
- feat: add bash completions (denoland#2577)
- feat: parse CLI flags after script name (denoland#2596)
- fix: multiple error messages for a missing file (denoland#2587)
- fix: normalize Deno.execPath (denoland#2598)
- fix: return useful error when import path has no ./ (denoland#2605)
- fix: run blocking function on a different task (denoland#2570)

v0.10.0

Toggle v0.10.0's commit message

Verified

This tag was signed with the committer’s verified signature.
ry Ryan Dahl
v0.10.0 / 2019.06.25

- feat: improve module download progress (denoland#2576)
- feat: improve 'deno install' (denoland#2551)
- feat: log permission access with -L=info (denoland#2518)
- feat: redirect process stdio to file (denoland#2554)
- fix: add encodeInto to TextEncoder (denoland#2558)
- fix: clearTimeout should convert to number (denoland#2539)
- fix: clearTimeout.name / clearInterval.name (denoland#2540)
- fix: event `isTrusted` is enumerable (denoland#2543)
- fix: fetch() body now async iterable (denoland#2563)
- fix: fetch() now handles redirects (denoland#2561)
- fix: prevent multiple downloads of modules (denoland#2477)
- fix: silent failure of WebAssembly.instantiate() (denoland#2548)
- fix: urlSearchParams custom symbol iterator (denoland#2537)