Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-07 | refactor: move Child resource to ops/process.rs (#3291) | Bartek Iwańczuk | |
2019-11-07 | refactor: remove cli::resources::Resource (#3285) | Bartek Iwańczuk | |
2019-11-07 | refactor: rewrite accept resources (#3271) | Bartek Iwańczuk | |
2019-11-06 | Remove CoreResource::inspect_repr method (#3274) | Ry Dahl | |
Towards simplifying (or better removing entirely) the CoreResource trait. Resources should be any bit of privileged heap allocated memory that needs to be referenced from JS, not very specific trait implementations. Therefore CoreResource should be pushed towards being as general as possible. | |||
2019-11-04 | Refactor Worker and ThreadSafeState (#3242) | Bartek Iwańczuk | |
* Split ThreadSafeState into State and GlobalState. State is a "local" state belonging to "Worker" while "GlobalState" is state shared by whole program. * Update "Worker" and ops to use "GlobalState" where applicable * Move and refactor "WorkerChannels" resource | |||
2019-10-28 | refactor: use core ResourceTable in cli (#3206) | Bartek Iwańczuk | |
2019-10-21 | feat: Deno.listenTLS (#3152) | Bartek Iwańczuk | |
2019-10-03 | Update rust to 1.38.0 (#3030) | Andy Hayden | |
2019-09-23 | feat: Add Deno.dialTLS() | Jonathon Orsi | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2019-09-10 | fix: replace bad rid panics with errors (#2870) | Bartek Iwańczuk | |
2019-08-30 | Use 'reqwest' to implement HTTP client (#2822) | Bartek Iwańczuk | |
Closes #2720 | |||
2019-08-04 | use BTreeMap for ResourceTable (#2721) | Bartek Iwańczuk | |
2019-07-31 | Use system rustfmt instead of fixed binary (#2701) | Ryan Dahl | |
2019-07-11 | Refactor error to use dynamic dispatch and traits | Bert Belder | |
This is in preperation for dynamic import (#1789), which is more easily implemented when errors are dynamic. | |||
2019-06-21 | feat: redirect process stdio to file (#2554) | Bartek Iwańczuk | |
2019-06-19 | Combine CLI Errors (#2487) | Kitson Kelly | |
2019-05-23 | Fix concurrent accepts (#2403) | Ryan Dahl | |
2019-05-11 | Add progress bar (#2309) | Ryan Dahl | |
2019-04-28 | Revert "recover: #1517 Kill all pending accepts when TCP listener is closed ↵ | Ryan Dahl | |
(#2224)" (#2239) Crashes while running wrk against js/deps/https/deno.land/std/http/http_bench.ts This reverts commit 972ac03858cc11e8b6bb759ee69640d17235580d. | |||
2019-04-27 | recover: #1517 Kill all pending accepts when TCP listener is closed (#2224) | Yusuke Sakurai | |
2019-04-09 | core: Rename Behavior to Dispatch (#2082) | Ryan Dahl | |
And rename IsolateState to ThreadSafeState. Also make ThreadSafeState directly implement Dispatch. This is simpler. | |||
2019-04-08 | Merge Worker and Isolate types (#2078) | Ryan Dahl | |
Reduces generics. | |||
2019-04-04 | Non-fatal compile_sync failures (#2039) | andy finch | |
And model worker resources as Stream | |||
2019-04-01 | Add web worker JS API (#1993) | andy finch | |
* Refactored the way worker polling is scheduled and errors are handled. * Share the worker future as a Shared | |||
2019-03-30 | Rename crate deno_core to deno (#2022) | Ryan Dahl | |
2019-03-26 | Do not close file on invalid seek mode (#2004) | Kevin (Kun) "Kassimo" Qian | |
2019-03-20 | Fix clippy errors and upgrade Rust to 1.33.0 in CI (#1945) | Ryan Dahl | |
2019-03-19 | Remove old Buf definition in cli.rs (#1971) | andy finch | |
2019-03-19 | Rename //src/ to //cli/ (#1962) | Ryan Dahl | |
To better distinguish the deno_core crate from the executable deno, which will now be called "the cli" internally. |