Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-29 | Correct tokio_util::block_on() and op_fetch_module_meta_data | Ryan Dahl | |
op_fetch_module_meta_data is an op that is used by the TypeScript compiler. TypeScript requires this op to be sync. However the implementation of the op does things on the event loop (like fetching HTTP resources). In certain situations this can lead to deadlocks. The runtime's thread pool can be filled with ops waiting on the result of op_fetch_module_meta_data. The runtime has a maximum number of threads it can use (the number of logical CPUs on the system). This patch changes tokio_util::block_on to launch a new Tokio runtime for evaluating the future, thus bipassing the max-thread problem. This is only an issue in op_fetch_module_meta_data. Other synchronous ops are truly synchornous, not interacting with the event loop. TODO comments are added to direct future development. | |||
2019-05-27 | add "run" to file server alias (denoland/deno_std#460) | Bardia Rastin | |
Original: https://github.com/denoland/deno_std/commit/4078e9b24da35764403b930da6b0dac6a950d324 | |||
2019-05-27 | Add 'brew install deno' to homepage (#2412) | Ryan Dahl | |
2019-05-27 | chore: Port Python tests to unittest (#2408) | Bartek Iwańczuk | |
2019-05-27 | add EventTarget implementation (#2377) | Adam Conrad | |
2019-05-27 | rename strings/strings.ts to strings/mod.ts (denoland/deno_std#449) | Axetroy | |
Original: https://github.com/denoland/deno_std/commit/2f003fa35cb354b1b1cc43af196a0d356b334ed3 | |||
2019-05-25 | add module and line no for Rust logger (#2409) | Bartek Iwańczuk | |
2019-05-25 | http: add ParseHTTPVersion (denoland/deno_std#452) | Vincent LE GOFF | |
Original: https://github.com/denoland/deno_std/commit/438178541e4d713c441daec7c783c745244d4d14 | |||
2019-05-25 | Prettier: support for specified files and glob mode (denoland/deno_std#438) | Axetroy | |
Original: https://github.com/denoland/deno_std/commit/1083db10ed64647db70e23aff8cebc1022582f00 | |||
2019-05-24 | Add brew install deno to manual (#2407) | Andy Hayden | |
2019-05-24 | Add encoding/csv (denoland/deno_std#432) | Vincent LE GOFF | |
Original: https://github.com/denoland/deno_std/commit/c8a7dcdcd0987d74858b23bab83af480f35c26a8 | |||
2019-05-24 | rename bytes/bytes.ts to bytes/mod.ts | axetroy | |
Original: https://github.com/denoland/deno_std/commit/015cf3e02d5809bf5ba473201183a26e08837c56 | |||
2019-05-24 | remove function prefix of bytes module | axetroy | |
Original: https://github.com/denoland/deno_std/commit/a4579426783f36cd5e46c4ebfb75ef702b2a15ba | |||
2019-05-24 | Enable bytes tests and add bytesRepeat (denoland/deno_std#446) | Axetroy | |
Original: https://github.com/denoland/deno_std/commit/bd46d60ded3197d93a52ede92eba7302df9b4713 | |||
2019-05-24 | typo (#2366) | ztplz | |
2019-05-24 | Remove prefix $ and > from manual (#2404) | Steven | |
2019-05-23 | re-fix permissions for dial and listen (#2400) | Bartek Iwańczuk | |
Closes #2397 | |||
2019-05-23 | Improve CLI help (#2388) | Ryan Dahl | |
2019-05-23 | TOML: Move to encoding dir (denoland/deno_std#435) | Vincent LE GOFF | |
Original: https://github.com/denoland/deno_std/commit/7a722ceffc0b60305863c1417ef22b835db0d58d | |||
2019-05-23 | Fix concurrent accepts (#2403) | Ryan Dahl | |
2019-05-23 | Rename --allow-high-precision to --allow-hrtime (#2398) | Ryan Dahl | |
2019-05-23 | Fix http README examples (denoland/deno_std#440) | Stoyan Dimkov | |
Some cosmetic fixes to the provided examples in the http README: - Ensure they're all actually runnable - Use clear variable names - Add usage of Cookie interface Original: https://github.com/denoland/deno_std/commit/b9b25b8b17f8ca952392315f6b4f0dcfa5c5a00a | |||
2019-05-23 | http: fix content-length checking (denoland/deno_std#437) | Vincent LE GOFF | |
Original: https://github.com/denoland/deno_std/commit/ce4e3ccdc3f9838d2f286007fa55cf5064a93f44 | |||
2019-05-23 | Fix examples in manual (#2396) | champ | |
2019-05-23 | Added isGlob function (denoland/deno_std#433) | Shubhadeep Das | |
Original: https://github.com/denoland/deno_std/commit/94dcb2779be16530bb6ec9ce7218c89fbbf50c59 | |||
2019-05-22 | Revert "Fix permissions for dial and listen (#2373)" | Bert Belder | |
This reverts commit 7219787894f13b1920b3b6b49203cdcb8f672c00. | |||
2019-05-22 | http: send an empty response body if none is provided (denoland/deno_std#429) | Aurélien Bertron | |
Fixes: denoland/deno_std#402 Original: https://github.com/denoland/deno_std/commit/e00e3fe33a4e57e8bebcf2b7cdd4f501674450d2 | |||
2019-05-22 | http: make server handle bad client requests properly (denoland/deno_std#419) | Vincent LE GOFF | |
Original: https://github.com/denoland/deno_std/commit/7620fe1a82ba5694e17d51133d94230b06d1517a | |||
2019-05-22 | fix(fileserver): wrong url href of displayed files (denoland/deno_std#426) | Yuqing Chen | |
Original: https://github.com/denoland/deno_std/commit/be6cd35cbf65ef49b15bf0faf1e582d79f5a0f87 | |||
2019-05-22 | http: delete conn parameter in readRequest (denoland/deno_std#430) | Vincent LE GOFF | |
To bring it inline with Go API Original: https://github.com/denoland/deno_std/commit/209183e24812095a40e48e60484f80a5a254b1c3 | |||
2019-05-21 | Use tagged version of prettier in CLI (#2387) | Bartek Iwańczuk | |
2019-05-21 | Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420) | Vincent LE GOFF | |
Original: https://github.com/denoland/deno_std/commit/aad0896346805513dc87eb01cd867a1513f574b1 | |||
2019-05-21 | feat(prettier): output to stdout instead of write file by default unless ↵ | Axetroy | |
specified --write flag (denoland/deno_std#332) Original: https://github.com/denoland/deno_std/commit/434007b8ab421cb24a75d2937d275c5048b9c111 | |||
2019-05-21 | Bump v0.6.0 (denoland/deno_std#423) | Ryan Dahl | |
Original: https://github.com/denoland/deno_std/commit/47134db9f24de802bee560941584bbc32e75a9c3 | |||
2019-05-21 | website: update http example (#2367) | Ryan Dahl | |
2019-05-20 | Move collectUint8Arrays() to util/async.ts, clean up, fix bugs, add tests | Bert Belder | |
Original: https://github.com/denoland/deno_std/commit/dcad420b92f79311b386ef524bd1487c04400cc0 | |||
2019-05-20 | http: remove unnecessary await in listenAndServe() | Bert Belder | |
Original: https://github.com/denoland/deno_std/commit/d1971241d90bdb7fcb612e2d922ed99a0419e2f4 | |||
2019-05-20 | v0.6.0 | Ryan Dahl | |
2019-05-20 | Adjust core/README.md text | Ryan Dahl | |
2019-05-20 | Upgrade deno_std (#2378) | Ryan Dahl | |
2019-05-20 | chore(readme): add README.md for ws (denoland/deno_std#417) | Yoshitaka Terazawa | |
Original: https://github.com/denoland/deno_std/commit/301c12d9d20d94d0ed36a394353835a90b5e9249 | |||
2019-05-20 | Clean up HTTP async iterator code (denoland/deno_std#411) | Ryan Dahl | |
Original: https://github.com/denoland/deno_std/commit/68faf32f721d2a95c7b1c75661713c8118c077c7 | |||
2019-05-18 | fix: add exnext lib to tsconfig.json (denoland/deno_std#416) | Yusuke Sakurai | |
Original: https://github.com/denoland/deno_std/commit/0daa693d680652ae9447cf43d6e8e8355d52d8d4 | |||
2019-05-18 | Fix denoland/deno_std#409 handle multipart header in mime reader ↵ | Vincent LE GOFF | |
(denoland/deno_std#415) Original: https://github.com/denoland/deno_std/commit/92c26cc33183284737fd41685b26a15cab07405d | |||
2019-05-17 | Fix permissions for dial and listen (#2373) | Bartek Iwańczuk | |
2019-05-17 | Add crypto.getRandomValues() (#2327) | chiefbiiko | |
2019-05-17 | Don't print new line if progress bar was not used (#2374) | Bartek Iwańczuk | |
2019-05-17 | website: fix workers benchmark links (#2370) | Stephan Renatus | |
Signed-off-by: Stephan Renatus <srenatus@chef.io> | |||
2019-05-17 | Delete unnecessary console.log in test code (#2368) | JaePil Jung | |
2019-05-16 | third_party: add rust crate 'serde_derive' | Bert Belder | |