Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-26 | Make `Bun.spawn`, FileSink and FileBlobLoader a little more reliable | 14 | -209/+550 | ||
2022-09-26 | [Web Streams] Add `body` to `Response` and `Request` (#1255) | 12 | -155/+928 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-26 | Make getting the body for `fetch` a little more reusable | 1 | -42/+63 | ||
2022-09-26 | Add missing ignoreUsage call | 1 | -0/+1 | ||
2022-09-26 | Fix crash when insufficient arguments | 1 | -1/+1 | ||
2022-09-25 | Fix `console.log` not printing an empty line | 2 | -2/+5 | ||
Depends on https://github.com/oven-sh/WebKit/actions/runs/3123884691/jobs/5066828848 Fixes https://github.com/oven-sh/bun/issues/1276 | |||||
2022-09-25 | Implement `isatty` in `node:tty` | 5 | -0/+84 | ||
2022-09-25 | :sleepy: | 5 | -15/+157 | ||
2022-09-25 | Make Linux implementation work | 3 | -31/+86 | ||
2022-09-25 | Linux implementation | 6 | -23/+180 | ||
2022-09-25 | wip | 23 | -20/+1810 | ||
2022-09-23 | Update bindings.zig | 1 | -0/+9 | ||
2022-09-23 | Implement `Bun.which` | 1 | -0/+79 | ||
2022-09-23 | Use JSC heap for .arrayBuffer() | 1 | -4/+1 | ||
2022-09-22 | Update streams.zig | 1 | -7/+2 | ||
2022-09-22 | Faster `Blob` + begin to implement `FileSink` | 29 | -279/+2165 | ||
2022-09-22 | Fix linux build | 2 | -1/+3 | ||
2022-09-22 | Add epoll to list of syscalls that can fail | 1 | -0/+1 | ||
2022-09-22 | Remove a mutex when enqueuing concurrent tasks | 1 | -3/+3 | ||
2022-09-22 | 1 event loop per thread. Instead of 3. | 8 | -141/+146 | ||
uWebSockets and uSockets will need to be upgraded to match the changes. Previously: - Bun had a separate kqueue/eventfd just for async wakeups. - Bun had a separate kqueue/epoll just for reading files non-blocking in the same thread This commit unifies it into one event loop per thread | |||||
2022-09-22 | [breaking] Bun.serve().hostname should return the hostname instead of the ↵ | 1 | -1/+1 | ||
baseURI Previously Bun.serve().hostname was returning the baseURI, effectively the `origin` That was incorrect. Instead, it should be returning the hostname | |||||
2022-09-22 | Fix `bun run foo --` by ignoring `--` | 1 | -2/+6 | ||
2022-09-21 | Fix `preact` & other "classic" jsx transforms, most likely | 2 | -20/+113 | ||
2022-09-21 | Fix crash with `jsxFragment` and `jsxFactory` in tsconfig.json | 1 | -21/+51 | ||
Fixes https://github.com/oven-sh/bun/issues/1269 | |||||
2022-09-21 | Fix crash when creating an empty array | 1 | -1/+1 | ||
2022-09-21 | Increase macro stack size | 1 | -1/+1 | ||
2022-09-20 | Update types.zig | 1 | -1/+3 | ||
2022-09-20 | fixup | 1 | -3/+4 | ||
2022-09-20 | Update WebKit | 1 | -0/+0 | ||
2022-09-20 | Be more careful with process.argv | 1 | -8/+12 | ||
2022-09-20 | Allow .env files to define the same key multiple times | 1 | -32/+55 | ||
Fixes https://github.com/oven-sh/bun/issues/1262 | |||||
2022-09-20 | meant to include this in the previous commit | 2 | -1/+5 | ||
2022-09-20 | Add `navigator.userAgent` , `navigator.hardwareConcurrency` | 3 | -0/+58 | ||
2022-09-20 | Fix incorrect `hostname` logic | 2 | -13/+28 | ||
Fixes https://github.com/oven-sh/bun/issues/1261 | |||||
2022-09-19 | Update `process.argv` to more closely match node | 1 | -17/+12 | ||
2022-09-19 | Pass through arguments unmodified after `bun run <script>` or `bun <script>` | 6 | -49/+42 | ||
Fixes https://github.com/oven-sh/bun/issues/231 | |||||
2022-09-19 | Handle nested files more correctly with "imports" in package.json | 1 | -5/+3 | ||
2022-09-19 | Implement `imports` in package.json (`#foo` imports) | 2 | -85/+205 | ||
Fixes https://github.com/oven-sh/bun/issues/478 Fixes https://github.com/oven-sh/bun/issues/234 Fixes https://github.com/oven-sh/bun/issues/822 | |||||
2022-09-19 | Fix broken destructors | 1 | -5/+2 | ||
2022-09-19 | Fix larger bodies | 1 | -0/+6 | ||
2022-09-18 | Improve the perf of reading HTTP request body | 1 | -28/+15 | ||
2022-09-18 | Fix occasional crash with .json() | 1 | -1/+7 | ||
2022-09-18 | Fix broken sending http body | 1 | -1/+3 | ||
2022-09-18 | Update http_client_async.zig | 1 | -6/+12 | ||
2022-09-18 | Add a way to disable timeout and keepalive | 2 | -37/+69 | ||
2022-09-17 | extremely minor perf nitbun-v0.1.12 | 1 | -1/+1 | ||
2022-09-17 | feat: env loader nested values with curly braces (#1246) | 1 | -1/+46 | ||
* [env loader] Add support for nested value with curly braces does not support default values for nested values, e.g., ${undefined:default}, ${undefined:-default}, or ${undefined-default} * fix: minor fix and add more test * [env loader] Improve nested value parsing performance remove unnecessary branching Co-authored-by: Like <like@ekil.sh> | |||||
2022-09-17 | Fix napi module registration | 3 | -6/+17 | ||
Fixes https://github.com/oven-sh/bun/issues/1240 | |||||
2022-09-17 | Handle missing 0\r\n chunk in HTTP client | 1 | -1/+17 | ||
2022-09-17 | Update & configure SSL a little | 5 | -39/+62 | ||