Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-12 | Fix `require("bun")` and `import("bun")` when statically known | 1 | -0/+11 | ||
2022-10-12 | [`bun wiptest`] Ignore `.` folders | 1 | -1/+1 | ||
2022-10-12 | Stop keeping the process alive for too long | 1 | -4/+10 | ||
2022-10-12 | support array as first arg in `Bun.spawn` | 1 | -100/+118 | ||
2022-10-11 | Remove dead code | 1 | -17/+4 | ||
2022-10-11 | remove config struct | 3 | -14/+19 | ||
2022-10-11 | Fix crash when decoding latin1 rope strings and the GC is running | 1 | -1/+1 | ||
2022-10-11 | Implement `Bun.spawnSync` | 2 | -65/+168 | ||
2022-10-11 | Make `Bun.spawn` work on Linux | 3 | -42/+84 | ||
2022-10-11 | Handle eintr in uSockets | 1 | -0/+0 | ||
2022-10-11 | Add test for Bun.file() for stdin and stdout | 1 | -1/+1 | ||
2022-10-11 | Maybe fix linux bug? | 1 | -1/+4 | ||
2022-10-11 | Update server.zig | 1 | -1/+1 | ||
2022-10-11 | Work around Zig C ABI bug on Linux | 3 | -12/+8 | ||
2022-10-11 | Use poll() to check if writable | 1 | -4/+14 | ||
2022-10-11 | Implement `fs.rm` cross-platformly | 1 | -3/+107 | ||
2022-10-10 | Automatically close stdout/stderr on subprocess exit if possible | 2 | -5/+21 | ||
2022-10-10 | Keep the process alive | 7 | -86/+62 | ||
2022-10-10 | Use write() and read() since not every file type supports positional | 1 | -7/+6 | ||
2022-10-10 | Handle EAGAIN in Bun.write() for short input | 1 | -4/+63 | ||
2022-10-10 | Ensure we set globalThis in the FileBlob / FileSink | 1 | -0/+2 | ||
2022-10-10 | Support cache with same name applied to multiple getters | 2 | -11/+26 | ||
2022-10-10 | Fix issue with exit callback in Bun.spawn() never firing | 1 | -0/+14 | ||
2022-10-10 | Process inherits from EventEmitter | 2 | -14/+12 | ||
2022-10-10 | use tweaked CJS transform | 1 | -200/+3 | ||
2022-10-09 | Poll in | 1 | -1/+1 | ||
2022-10-09 | Don't set CLOEXEC | 1 | -3/+3 | ||
2022-10-09 | Bump version | 2 | -6/+8 | ||
2022-10-09 | `Bun.write` - truncate empty files | 1 | -9/+3 | ||
2022-10-09 | maybe workaround C ABI issue on linux amd64 | 3 | -4/+5 | ||
2022-10-09 | Missing code | 1 | -0/+1 | ||
2022-10-09 | More careful code for FileBlobLoader and FIleSink | 2 | -12/+101 | ||
2022-10-09 | Add a console.debug for the server:port when HMR is enabled | 1 | -2/+4 | ||
2022-10-09 | Update WebKit | 1 | -0/+0 | ||
2022-10-09 | Buffer input & output until the user gets the stream | 1 | -41/+320 | ||
2022-10-09 | soem helpers | 1 | -0/+11 | ||
2022-10-09 | Don't forget to load SQLite in Database.deserialize | 1 | -7/+16 | ||
Fixes https://github.com/oven-sh/bun/issues/1304 | |||||
2022-10-09 | Clean up how we reload entry point a little | 2 | -3/+51 | ||
2022-10-09 | Expose `Bun.version` and `Bun.revision` | 1 | -2/+16 | ||
2022-10-09 | Update WebKit | 7 | -8/+15 | ||
2022-10-08 | Fix fetch response redirected (#1303) | 9 | -18/+110 | ||
* fix: sync codegen * fix: generate class script * fix: sync codegen * fix: add response redirected property | |||||
2022-10-08 | fix: install error when node_modules already in npm package (#1301) | 1 | -0/+2 | ||
2022-10-08 | Fix https://github.com/oven-sh/bun/issues/1263 | 7 | -1337/+81 | ||
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-07 | Fix nested modules bin executable issue (#1299) | 1 | -52/+25 | ||
2022-10-06 | Fix linux amd64 crash | 1 | -2/+5 | ||
2022-10-06 | Fix unused arg | 1 | -1/+1 | ||
2022-10-06 | Add --profile to bun upgrade | 1 | -18/+30 | ||
2022-10-06 | Add `protocol` getter to Bun.serve() | 1 | -0/+11 | ||
2022-10-06 | Automatically support hot reloading with `export default { fetch() }` | 2 | -32/+76 | ||
2022-10-06 | Fix Buffer.toJSON() | 1 | -15/+16 | ||