Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
2022-02-01 | WIP | 2 | -142/+167 | ||
2022-01-29 | cleanup | 1 | -0/+6 | ||
2022-01-25 | Split http into files | 6 | -0/+1041 | ||
2022-01-03 | dead code | 1 | -1/+0 | ||
2022-01-01 | [bun dev] Improve filesystem watcher & HMR reliability (Linux + a little macOS) | 1 | -1/+1 | ||
Text editors like Replit save through atomic file updates. In an inotify filesystem watcher (Linux), that appears to be a delete followed by moving the file to the directory. Now when known files are moved into a directory, the watcher sends the file change notification to the browser(s). From there, the browser looks at it's files to determine whether or not Additionally, if an existing HMR connection does not know about a file ID passed to it, it asks the browser to reply with the file path and then starts watching that file. This improves HMR reliabiality if Bun had been restarted but the page hadn't been restarted. | |||||
2021-12-30 | Upgrade to latest Zig, remove dependency on patched version of Zig (#96) | 5 | -133/+43 | ||
* Prepare to upgrade zig * zig fmt * AllocGate * Update data_url.zig * wip * few files * just headers now? * I think everything works? * Update mimalloc * Update hash_map.zig * Perf improvements to compensate for Allocgate * Bump * :camera: * Update bun.lockb * Less branching * [js parser] Slightly reduce memory usage * Update js_parser.zig * WIP remove unused * [JS parser] WIP support for `with` keyword * Remove more dead code * Fix all the build errors! * cleanup * Move `network_thread` up * Bump peechy * Update README.md |