Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-31 | cli: replace timer map with red-black tree (#3218) | Kevin (Kun) Kassimo Qian | |
This avoids a crash when the Deno process has been running for 2**32 ms (about 50 days). Additionaly, time complexity of finding which timer is due to fire next is reduced from from O(n) to O(log n). | |||
2019-10-31 | Adds custom inspect method for URL (#3241) | Sven Nicolai Viig | |
2019-10-31 | Make EOF unique symbol (#3244) | Yoshiya Hinosawa | |
2019-10-29 | Remove TTY tests - dead code (#3229) | Ry Dahl | |
2019-10-29 | Use top-level await in jsdoc examples (#3239) | Andy Hayden | |
2019-10-29 | fix race condition in test http server (#3237) | Andy Hayden | |
2019-10-28 | refactor: use core ResourceTable in cli (#3206) | Bartek Iwańczuk | |
2019-10-28 | Prevent customInspect error from crashing console (#3226) | Kevin (Kun) "Kassimo" Qian | |
2019-10-28 | v0.22.0 | Ryan Dahl | |
2019-10-28 | Re-enable basic stream support for fetch bodies (#3192) | Nick Stott | |
* Add sd-streams from https://github.com/stardazed/sd-streams/blob/master/packages/streams/src/ * change the interfaces in dom_types to match what sd-streams expects | |||
2019-10-28 | Add CustomInspect for Headers (#3130) | Rory Malcolm | |
Worth noting due to implementation of the Headers class the contents of headersMap have lowercase keys, although this matches the specification as header keys are case agnostic it does seem to not match behaviour of other implementations in other languages I have seen, would require some rewriting of Headers.ts | |||
2019-10-27 | Use web standard Permissions API (#3200) | Yoshiya Hinosawa | |
2019-10-27 | feat: top-level-for-await (#3212) | Andy Hayden | |
2019-10-26 | Support named imports/exports for subset of properties in JSON modules (#3210) | Kevin (Kun) "Kassimo" Qian | |
2019-10-26 | Use a more performant utf8 decoder algorithm. (#3204) | Kitson Kelly | |
Fixes #3163 Co-authored-by: Kitson Kelly <me@kitsonkelly.com> Co-authored-by: Qwerasd <qwerasd205@users.noreply.github.com> | |||
2019-10-25 | fix: handle malformed control buffers (#3202) | Bartek Iwańczuk | |
2019-10-24 | Add error handling for minimal dispatch (#3176) | Bartek Iwańczuk | |
2019-10-24 | Remove old website (#3194) | Ry Dahl | |
Move manual.md and style_guide.md into //std so they can be accessed from https://deno.land/std/manual.md Code for new website is https://github.com/denoland/deno_website2 Co-authored-by: Christian Moritz <chrmoritz@gmail.com> | |||
2019-10-23 | refactor DenoPermissions.check_net & resolve_addr (#3182) | EnokMan | |
2019-10-22 | remove --no-prompt flag, fail on missing permissions (#3183) | Yoshiya Hinosawa | |
2019-10-22 | Add TextDecoder benchmark (#3180) | Ry Dahl | |
2019-10-22 | test: improve http_proxy test (#3185) | Yoshiya Hinosawa | |
2019-10-21 | feat: Deno.listenTLS (#3152) | Bartek Iwańczuk | |
2019-10-21 | Fix build warning (#3146) | Ry Dahl | |
2019-10-21 | update: use v0.21.0 for subcommands (#3168) | Yusuke Sakurai | |
2019-10-19 | v0.21.0 | Ryan Dahl | |
2019-10-19 | feat: Allow "deno eval" to run code as module (#3148) | Kevin (Kun) "Kassimo" Qian | |
2019-10-19 | Fix clearTimer bug (#3143) | Ry Dahl | |
2019-10-19 | chore: remove xevalDelim from Start interface (#3147) | Kevin (Kun) "Kassimo" Qian | |
2019-10-17 | feat: --reload flag to take arg for partial reload (#3109) | Michał Sabiniarz | |
Example: To reload only std modules --reload=https://deno.land/std/ | |||
2019-10-16 | fix: remote jsx/tsx files were compiled as js/ts (#3125) | Yusuke Sakurai | |
2019-10-15 | Add debug build to github actions | Ryan Dahl | |
This disabled the tty_tests which seem to be very flaky with the debug build. | |||
2019-10-14 | perf: eager poll async ops in Isolate (#3046) | Bartek Iwańczuk | |
2019-10-13 | fix: [tls] op_dial_tls is not registerd and broken (#3121) | Yusuke Sakurai | |
2019-10-12 | support --allow-net=:4500 (#3115) | Bartek Iwańczuk | |
2019-10-12 | Update various links to deno_std (#3096) | Ryan Dahl | |
2019-10-11 | Add init methods for each op module (#3087) | Ryan Dahl | |
2019-10-11 | Ensure DENO_DIR when saving the REPL history (#3106) | Nayeem Rahman | |
2019-10-09 | Run deno_std tests in github actions | Ryan Dahl | |
2019-10-07 | v0.20.0 | Ryan Dahl | |
2019-10-07 | use single thread runime in tokio_util::block_on (#3080) | Bartek Iwańczuk | |
2019-10-06 | remove more calls to tokio_util::block_on (#3059) | Bartek Iwańczuk | |
towards #2960 | |||
2019-10-04 | Merge deno_cli_snapshots into deno_cli (#3064) | Ryan Dahl | |
2019-10-04 | Move deno_std to a more convenient location. (#3057) | Ryan Dahl | |
js/deps/https/deno.land/std -> js/std | |||
2019-10-04 | Use xeval from deno_std (#3058) | Nayeem Rahman | |
2019-10-03 | Update rust to 1.38.0 (#3030) | Andy Hayden | |
2019-10-03 | Async compiler processing (#3043) | Kitson Kelly | |
Basically this does pre-processing of TypeScript files and gathers all the dependencies asynchronously. Only then after all the dependencies are gathered, does it do a compile, which at that point all the dependencies are cached in memory in the compiler, so with the exception of the hard coded assets, there are no ops during the compilation. Because op_fetch_source_files is now handled asynchronously in the runtime, we can eliminate the tokio_util::block_on() which was causing the increase in threads. Benchmarking on my machine has shown about a 5% improvement in speed when dealing with compiling TypeScript. Still a long way to go, but an improvement. In theory the module name resolution and the fetching of the source files could be broken out as two different ops. This would prevent situations of sending the full source file all the time when actually the module is the same module referenced by multiple modules, but that could be done subsequently to this. | |||
2019-10-02 | feat: Add support for passing a key to Deno.env() (#2952) | Jed Fox | |
This adds a new op to get a single env var. | |||
2019-10-02 | feat: window.onunload (#3023) | Bartek Iwańczuk | |
2019-10-02 | feat: JSX Support (#3038) | Yusuke Sakurai | |