Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |||||
2021-12-29 | zig fmt | 1 | -1/+0 | ||
2021-12-27 | Prepare to run unit tests & remove some dead code (#92) | 1 | -0/+1 | ||
* Remove some dead code * :skull: code * Fix the zig tests * [JS Printer] Print integers faster & less scientific notation on decimals * :skull: dead code * skip * Run all the unit tests | |||||
2021-12-23 | Prevent crash due to SIGPIPE | 1 | -0/+2 | ||
2021-12-22 | Keep it at 1024, but should be okay since we now reduce it | 1 | -1/+1 | ||
2021-12-22 | Fix error from requesting too much from io_uring | 1 | -1/+13 | ||
2021-12-17 | packaging | 2 | -2157/+3 | ||
2021-12-16 | [bun install] Fix case when lockfile exists | 1 | -19/+34 | ||
2021-12-16 | [bun install] Load lockfile. Generate diffs | 1 | -13/+13 | ||
2021-12-16 | save and load manifest | 1 | -149/+179 | ||
2021-12-16 | [npm install] starting to look good! | 2 | -64/+262 | ||
2021-12-16 | WIP | 1 | -1/+1 | ||
2021-12-16 | :radio: | 2 | -5/+4 | ||
2021-12-16 | Fix redirects | 1 | -64/+80 | ||
2021-12-16 | [npm install] Use BoringSSL for https:// requests | 1 | -68/+747 | ||
2021-12-16 | Replace S2N with BoringSSL (wip) | 1 | -38/+2 | ||
2021-12-16 | [bun install] Linux async http | 1 | -1/+1 | ||
2021-12-16 | [bun install] async http request works I think? | 2 | -0/+1335 | ||
2021-10-13 | Add TLS 1.3 support, improve fetch() HTTPS performance | 1 | -0/+49 | ||