Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-01 | ComptimeStringMap is faster than ExactSizeMatcher | 1 | -37/+22 | ||
2022-11-29 | import everything from "bun" where possible | 7 | -11/+11 | ||
2022-11-19 | [fetch] Fix sporadic data corruption bug in HTTP client and add fast path | 1 | -2/+10 | ||
- This removes memory pooling from the HTTP client which sometimes caused invalid memory to be written to the response body. - This adds a fast path for small HTTP/HTTPS responses that makes it a single memory allocation for the response body, instead of copying & allocating a temporary buffer cc @Electroid | |||||
2022-11-12 | Fix memory leak in gzip pool + add test for gzip'd data | 1 | -50/+11 | ||
2022-11-09 | Fixup | 1 | -12/+16 | ||
2022-11-09 | Re-enable workaround for 127.0.0.01 | 1 | -2/+11 | ||
2022-10-25 | TCP & TLS Socket API (#1374) | 1 | -0/+2 | ||
* TCP Socket API * Wip * Add snippet for StringDecoder * Rename `close` to `stop`, replace `close` with `end` * Add a tcp echo server test * Some docs * Update README.md * Fix build * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-17 | Handle assertion faillure | 1 | -1/+3 | ||
2022-10-16 | Fix #1335 | 1 | -9/+5 | ||
2022-10-15 | Simplify the code that reads HTTP client request bodies | 1 | -113/+0 | ||
2022-10-15 | add more logging | 1 | -9/+9 | ||
2022-10-15 | Fix bug where pong would put it in invalid state | 1 | -1/+1 | ||
2022-10-15 | Add some logging to WebSocket client | 1 | -0/+10 | ||
2022-10-08 | Fix https://github.com/oven-sh/bun/issues/1263 | 3 | -1335/+15 | ||
What happened: when moving to uSockets for the http client, I forgot to call `SSL_set_tlsext_host_name` and uSockets apparently doesn't do that | |||||
2022-10-01 | Fix unref'ing websocket | 1 | -2/+2 | ||
2022-09-28 | Clean up WebSocket never starting | 1 | -10/+8 | ||
2022-09-17 | Update & configure SSL a little | 1 | -4/+4 | ||
2022-09-17 | Fix missing `reason` and `code` in `CloseEvent` | 1 | -0/+3 | ||
cc @paperdave hardcoded right now but at least tells you why it closed | |||||
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 | ||