| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-10-11 | fix(http): don't expose body on GET/HEAD requests (#12260) | Luca Casonato | |
| GET/HEAD requests can't have bodies according to `fetch` spec. This commit changes the HTTP server to hide request bodies for requests with GET or HEAD methods. | |||
| 2021-09-29 | fix(ext/http): merge identical if/else branches (#12269) | mynane | |
| 2021-09-27 | perf(fetch): optimize newInnerRequest blob url check (#12245) | Aaron O'Mullan | |
| Avoid "blob:" prefix check on requests built in the http module since those can never be blob objects Reduces cost of `newInnerRequest()` from 20ms to 0.1ms in my profiled run on ~2.5M reqs | |||
| 2021-09-11 | refactor: use Deno.core.tryClose (#11980) | Bartek Iwańczuk | |
| 2021-09-10 | perf(ext/http): optimize auto cleanup of request resource (#11978) | Bert Belder | |
| Fixes #11963. | |||
| 2021-09-08 | fix(ext/http): resource leak if request body is not consumed (#11955) | Bartek Iwańczuk | |
| 2021-08-25 | fix(ext/http): websocket upgrade header check (#11830) | Dayan C. Galiazzi | |
| 2021-08-23 | fix(ext/http): resource leak on HttpConn.close() (#11805) | Bartek Iwańczuk | |
| This commit adds tracking of resources that are related to "HttpConn" so they can be closed automatically when closing the connection. | |||
| 2021-08-11 | Rename extensions/ directory to ext/ (#11643) | Ryan Dahl | |
