summaryrefslogtreecommitdiff
path: root/ext/http/lib.rs
AgeCommit message (Expand)Author
2023-09-14refactor: rewrite more ops to op2 macro (#20478)Bartek Iwańczuk
2023-09-12fix(ext/http): create a graceful shutdown API (#20387)Matt Mastracci
2023-08-23fix(ext/web): add stream tests to detect v8slice split bug (#20253)Matt Mastracci
2023-08-17feat(ext/web): resourceForReadableStream (#20180)Matt Mastracci
2023-08-04fix(ext/http): serveHttp brotli compression level should be fastest (#20058)Matt Mastracci
2023-08-04fix(ext/http): unify default gzip compression level (#20050)Luca Bruno
2023-07-31feat(ext/http): Upgrade to hyper1.0-rc4 (#19987)Matt Mastracci
2023-07-18fix(ext/node): check if resource can be used with write_vectored (#19868)Divy Srivastava
2023-07-07perf(ext/node): native vectored write for server streams (#19752)Divy Srivastava
2023-06-22refactor(serde_v8): split ZeroCopyBuf into JsBuffer and ToJsBuffer (#19566)Bartek Iwańczuk
2023-05-30perf(ext/http): Add a sync phase to http serving (#19321)Matt Mastracci
2023-05-18feat(ext/http): Add support for trailers w/internal API (HTTP/2 only) (#19182)Matt Mastracci
2023-05-16fix(ext/http): Ensure cancelled requests don't crash Deno.serve (#19154)Matt Mastracci
2023-05-16refactor(ext/http): simpler ws server in http_next (#19133)Luca Casonato
2023-05-14refactor(core): bake single-thread assumptions into spawn/spawn_blocking (#19...Matt Mastracci
2023-05-10refactor(ext/http): HTTP trait structs need to be public (#19075)Matt Mastracci
2023-05-10refactor(core): http_next generic over request extractor (#19071)Matt Mastracci
2023-05-08refactor: prefix ops w/ crate they are defined in (#19044)Luca Casonato
2023-04-27fix(ext/http): internal upgradeHttpRaw works with "Deno.serve()" API (#18859)Matt Mastracci
2023-04-24feat(ext/http): h2c for http/2 (#18817)Matt Mastracci
2023-04-22feat(ext/http): Rework Deno.serve using hyper 1.0-rc3 (#18619)Matt Mastracci
2023-04-20refactor(ext/websocket): use fastwebsockets client (#18725)Divy Srivastava
2023-04-02feat(ext/http): add an op to perform raw HTTP upgrade (#18511)Matt Mastracci
2023-03-17feat(core) deno_core::extension! macro to simplify extension registration (#1...Matt Mastracci
2023-03-15refactor: remove usages of `map_or` / `map_or_else` (#18212)David Sherret
2023-03-10refactor: use `pin!` macro from std (#18110)Yusuke Tanaka
2023-03-09refactor: Split extension registration for runtime and snapshotting (#18095)Bartek Iwańczuk
2023-03-09refactor(core): Extension::builder_with_deps (#18093)Bartek Iwańczuk
2023-02-07 refactor: remove prefix from include_js_files & use extension name (#17683)Leo Kettmeir
2023-02-07refactor: Use ES modules for internal runtime code (#17648)Leo Kettmeir
2023-02-05 refactor: rename `deno` specifiers to `internal` (#17655)Leo Kettmeir
2023-01-27chore: upgrade to Rust 1.67 (#17548)David Sherret
2023-01-08feat(core): allow specifying name and dependencies of an Extension (#17301)Leo Kettmeir
2023-01-02chore: update copyright year to 2023 (#17247)David Sherret
2022-12-20fix(ext/http): close stream on resp body error (#17126)Luca Casonato
2022-11-04fix(ext/http): flush chunk when streaming resource (#16536)Luca Casonato
2022-10-09feat(core): improve resource read & write traits (#16115)Luca Casonato
2022-10-04perf(ext/fetch): consume body using ops (#16038)Marcos Casagrande
2022-09-30refactor(ext/http): remove op_http_read (#16096)Luca Casonato
2022-08-18feat(ext/flash): An optimized http/1.1 server (#15405)Divy Srivastava
2022-07-12fix(ext/http): reading headers with ongoing body reader (#15161)Divy Srivastava
2022-07-04perf(ext/http): remove accept_encoding interior mutability (#15070)Divy Srivastava
2022-07-04perf(ext/http): simplify op_http_accept (#15067)Divy Srivastava
2022-07-04perf(ext/http): lazy load headers (#15055)Divy Srivastava
2022-05-18perf(ext/http): faster accept-encoding parsing (#14654)Aaron O'Mullan
2022-05-17fix(ext/http): error on invalid headers (#14642)Aaron O'Mullan
2022-05-17fix(ext/http): skip auto-compression if content-encoding present (#14641)Aaron O'Mullan
2022-05-13fix(ext/http): make serveHttp compress for Accept-Encoding: deflate, gzip (#1...Andy Kurnia
2022-05-13feat(serde_v8): bytes::Bytes support (#14412)Aaron O'Mullan
2022-05-10cleanup(ext/http): simpler http write ops (#14552)Aaron O'Mullan