Tags: kamilogorek/deno
Tags
v1.10.3 / 2021.05.31 - feat(lsp): diagnostics for deno types and triple-slash refs (denoland#10699) - feat(lsp): provide X-Deno-Warning as a diagnostic (denoland#10680) - feat(lsp): show hints from `deno_lint` in addition to messages (denoland#10739) - feat(lsp): support formatting json and markdown files (denoland#10180) - fix(cli): always allow documentation modules to be checked (denoland#10581) - fix(cli): canonicalize coverage dir (denoland#10364) - fix(cli): don't statically error on dynamic unmapped bare specifiers (denoland#10618) - fix(cli): empty tsconfig.json file does not cause error (denoland#10734) - fix(cli): support source maps with Deno.emit() and bundle (denoland#10510) - fix(cli/dts): fix missing error class (NotSupported) in types (denoland#10713) - fix(cli/install): support `file:` scheme URLs (denoland#10562) - fix(cli/test): don't use reserved symbol `:` in specifier (denoland#10751) - fix(cli/test): ensure coverage dir exists (denoland#10717) - fix(cli/upgrade): modify download size paddings (denoland#10639) - fix(runtime/http): expose nextRequest() errors in respondWith() (denoland#10384) - fix(runtime/http): fix empty blob response (denoland#10689) - fix(serde_v8): remove intentional deserialization error on non-utf8 strings (denoland#10156) - fix(ext/fetch): fix error message of Request constructor (denoland#10772) - fix(ext/fetch): make prototype properties writable (denoland#10769) - fix(ext/fetch): remove unimplemented Request attributes (denoland#10784) - fix(ext/file): update File constructor following the spec (denoland#10760) - fix(ext/webstorage): use opstate for sqlite connection (denoland#10692) - fix(lsp): deps diagnostics include data property (denoland#10696) - fix(lsp): ignore type definition not found diagnostic (denoland#10610) - fix(lsp): local module import added by code action now includes the file extension (denoland#10778) - fix(lsp): make failed to load config error descriptive (denoland#10685) - fix(lsp): memoize script versions per tsc request (denoland#10601) - fix(lsp): re-enable the per resource configuration without a deadlock (denoland#10625) - docs(cli): update getting started for clarity (denoland#10694) - docs(cli/dts) replace `read()` with `readSync()` (denoland#10732) - docs(cli/dts): fix plugin example (denoland#10647) - docs(cli/dts): fix typo in `TestDefinition.only` description (denoland#10697) - docs(cli/dts): fix unix socket examples (denoland#10705) - docs(cli/dts): make worker example pass (denoland#10703) - docs(cli/dts): tag test permission example as typescript (denoland#10753) - docs(permissions): fix grammatical error in permissions docs (denoland#10755) - docs(runtime): fix fetch API usage of HTTP server (denoland#10777) - docs(testing): fix misspelling (denoland#10683) - docs(typescript): fix typo in faqs (denoland#10682)
deno v1.4.1 / 2020.09.18 - fix(cli/console): escape special characters in strings and property names (denoland#7546, denoland#7533, denoland#7550) - fix(cli/fmt): canonicalize files in current dir (denoland#7508) - fix(cli/fmt): make fmt output more readable (denoland#7534) - fix(cli/install): revert "bundle before installation" (denoland#7522) - fix(cli/js): disable URL.createObjectUrl (denoland#7543) - fix(cli/js): use Buffer.writeSync in MultipartBuilder (denoland#7542) - fix(cli/repl): disable rustyline logs (denoland#7535) - fix(cli/repl): format evaluation results with the object specifier (denoland#7561) - fix(cli/bundle,eval,repl): add missing flags (denoland#7414) - refactor(cli): move fetch() implementation to op_crates/fetch (denoland#7524, denoland#7529) - refactor(cli): move FileReader and URL to op_crates/web (denoland#7554, denoland#7544) - refactor(cli): move op_resources and op_close to deno_core (denoland#7539) - refactor(cli/info,unstable): deno info --json output (denoland#7417) - refactor(cli/js): simplify global properties (denoland#7502) - refactor(cli/js): use Symbol.for instead of Symbol (denoland#7537) - refactor(core): remove JsRuntime::set_js_error_create_fn (denoland#7478) - refactor(core): use the 'anyhow' crate instead of ErrBox (denoland#7476) - upgrade: rust crates (denoland#7454) - benchmark: add no_check_hello benchmark (denoland#7458)
std v0.70.0 / 2020.09.18 - feat(std/node): add AssertionError class (denoland#7210) - fix(std/datetime): timezone bug (denoland#7466) - fix(std/testing): assertion diff color (denoland#7499)
v0.23.0 / 2019.11.04 - feat: Add serveTLS and listenAndServeTLS (denoland#3257) - feat: Lockfile support (denoland#3231) - feat: Adds custom inspect method for URL (denoland#3241) - fix: Support for deep `Map` equality with `asserts#equal` (denoland#3236, denoland#3258) - fix: Make EOF unique symbol (denoland#3244) - fix: Prevent customInspect error from crashing console (denoland#3226)
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/std#563) - feat: add printf implementation (fmt/sprintf.ts) (denoland/std#566) - feat: print out the failed tests after the summary (denoland/std#554) - feat: test runner (denoland/std#516, denoland/std#564, denoland/std#568) - fix: accept absolute root directories in the file server (denoland/std#558) - fix: refactor 'assertEquals' (denoland/std#560) - fix: test all text functions in colors module (denoland/std#553)
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/std#550)
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)
- 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 / 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)
v0.3.10 / 2019.04.25 In deno: - Fix "deno types" (denoland#2209) - CLI flags/subcommand rearrangement (denoland#2210, denoland#2212)
PreviousNext