Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-16 | Make new HTTP client more stable | 1 | -4/+6 | ||
2022-09-14 | Use entropy cache for websocket mask | 1 | -50/+8 | ||
2022-09-14 | Fix issue with websockets callback not registering in canary | 1 | -15/+15 | ||
2022-09-14 | 5x faster crypto.randomValues() | 1 | -2/+1 | ||
2022-09-11 | New HTTP client (#1231) | 2 | -8/+24 | ||
* wip * It mostly works! * Support `bun install` * Support `bun create` * Support chunked transfer encoding * Handle Keep Alive when redirecting to a different domain Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-08-22 | Update mime_type.zig | 1 | -0/+6 | ||
2022-08-18 | Fix `bun:wrap` not loading | 1 | -0/+12 | ||
2022-08-13 | wip SyntheticModule | 1 | -0/+2 | ||
2022-08-10 | improve reliability of `WebSocket` | 1 | -11/+31 | ||
- Fix GC not keeping WebSocket alive - Fix ignoring messages sent immediately after upgrade Fixes https://github.com/oven-sh/bun/issues/521 | |||||
2022-08-05 | Fix for bearer tokens missing from request headers on bun install step (#991) | 1 | -1/+1 | ||
2022-08-03 | Don't use SIMD in non-SIMD builds | 1 | -1/+1 | ||
2022-07-12 | [http] Fix assertion | 1 | -1/+1 | ||
2022-06-27 | [fetch] Fix data corruption bug | 1 | -1/+14 | ||
2022-06-22 | Fix `WebSocket` when HTTP server is not running | 1 | -2/+24 | ||
2022-06-22 | cleanup | 1 | -1/+1 | ||
2022-06-22 | Fix close | 1 | -3/+12 | ||
2022-06-22 | [websockets] Support receiving data of length 128 - 65354, bigger not ↵ | 1 | -154/+43 | ||
supported yet | |||||
2022-06-22 | Sending works | 2 | -255/+349 | ||
2022-06-22 | implement a custom websocket client | 2 | -26/+1084 | ||
2022-06-22 | It connects! but the frames are corrupt | 1 | -21/+21 | ||
2022-06-22 | WebSocket is a global | 1 | -40/+44 | ||
2022-06-22 | WIP WebSocket | 1 | -0/+451 | ||
2022-04-11 | work around fetch("localhost") bug | 1 | -2/+15 | ||
2022-04-07 | Fix some mime types to match expectations | 1 | -2/+3 | ||
2022-04-01 | Fix mimetype value | 1 | -4/+37 | ||
2022-03-25 | [bun.js] configuration and error handling for HTTP server | 2 | -1230/+1227 | ||
2022-03-24 | Auto-detect MimeType based on file extension | 1 | -47/+3529 | ||
2022-03-18 | Set charset=utf-8 for better consistentcy | 1 | -1/+1 | ||
2022-03-17 | query_string_map -> url | 1 | -1/+1 | ||
2022-03-08 | rename _global -> bun | 5 | -44/+44 | ||
2022-03-06 | source maps work for app code in `bun dev`! | 3 | -25/+42 | ||
2022-03-04 | upgrade zigjarred/upgrade-zig-2 | 1 | -66/+45 | ||
2022-03-02 | Make http requests a little faster | 1 | -1/+6 | ||
2022-03-02 | `DELETE` header | 1 | -0/+4 | ||
2022-03-01 | cleanup code that checks if it should send an HTTP body | 1 | -0/+12 | ||
2022-02-27 | WASM | 1 | -2/+2 | ||
2022-02-21 | Wrap some usages of `assert` in a conditional | 2 | -4/+4 | ||
See https://github.com/ziglang/zig/issues/10942 | |||||
2022-02-20 | Update mime_type.zig | 1 | -0/+4 | ||
2022-02-18 | [bun dev] Errors with file names can be opened in editor now | 1 | -0/+20 | ||
2022-02-14 | MimeType from string | 1 | -35/+102 | ||
2022-02-11 | [bun install] Implement bunfig.toml config | 1 | -0/+18 | ||
2022-02-05 | Further reliability improvements to http client | 2 | -14/+62 | ||
2022-02-04 | Several reliability improvements to HTTP | 2 | -43/+62 | ||
2022-02-04 | [http] fix segfault | 1 | -17/+25 | ||
2022-02-03 | Fix bug with http client | 2 | -103/+88 | ||
2022-02-02 | [http] Fixes to chunked transfer encoding readerjarred/async_bio | 3 | -15/+42 | ||
2022-02-01 | Limit the number of pooled objects | 3 | -7/+17 | ||
2022-02-01 | Fix biggest issue with HTTPS client! | 1 | -61/+70 | ||
2022-02-01 | partial read | 1 | -11/+18 | ||
2022-02-01 | new boringSSL integration almost works with TLS 1.3 | 2 | -170/+522 | ||