Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | 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 | 1 | -1/+1 | ||
2022-10-09 | `Bun.write` - truncate empty files | 1 | -9/+3 | ||
2022-10-09 | Missing code | 1 | -0/+1 | ||
2022-10-09 | More careful code for FileBlobLoader and FIleSink | 2 | -12/+101 | ||
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 | 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-06 | Fix unused arg | 1 | -1/+1 | ||
2022-10-06 | Add `protocol` getter to Bun.serve() | 1 | -0/+11 | ||
2022-10-06 | Automatically support hot reloading with `export default { fetch() }` | 1 | -1/+1 | ||
2022-10-06 | Fix Buffer.toJSON() | 1 | -15/+16 | ||
2022-10-06 | Fix failing linux build | 1 | -1/+3 | ||
2022-10-06 | Add simple Hot Module Reloading to bun's runtime | 10 | -12/+306 | ||
2022-10-06 | Implement Server.reload() | 1 | -6/+42 | ||
2022-10-05 | Implement `console.count` and `console.countReset` | 1 | -19/+35 | ||
Fixes https://github.com/oven-sh/bun/issues/1296 | |||||
2022-10-05 | move Bun.spawn into separate file | 4 | -1045/+1082 | ||
2022-10-05 | Add abstraction for ticking async event loop | 3 | -2/+4 | ||
2022-10-05 | Support buffered input in Bun.spawn | 1 | -7/+15 | ||
2022-10-05 | Fix interopRequireDefault issue with `path` :( | 2 | -3/+11 | ||
2022-10-05 | Expose private `@require` symbol | 1 | -0/+5 | ||
2022-10-05 | Mark these strings as not needing to be GC'd | 1 | -9/+11 | ||
2022-10-05 | [breaking] `process.version` lies and reports Node 18 | 1 | -2/+2 | ||
See https://twitter.com/jarredsumner/status/1577189928294789122 | |||||
2022-10-05 | Improve stack traces in fs functions | 1 | -62/+57 | ||
This is a hack | |||||
2022-10-05 | Export `rm` in fs/promises | 1 | -0/+10 | ||
2022-10-05 | Temporary hack so `res.socket` in node:http doesn't throw | 1 | -1/+7 | ||
2022-10-05 | Fix missing path/posix and path/win32 | 1 | -9/+27 | ||
2022-10-05 | Handle more edgecases in fs.rm on macOS | 1 | -11/+52 | ||
2022-10-05 | handle values from native in streams | 1 | -7/+6 | ||
2022-10-05 | Fix bug with next dev showing raw html instead of the rendered page | 1 | -4/+21 | ||
2022-10-05 | fix: console.log handle circular correctly (#1293) | 1 | -0/+6 | ||
2022-10-03 | `node:fs` implement `rm` on macOS | 4 | -6/+78 | ||
no linux yet | |||||
2022-10-03 | `Bun.spawn` start to implement support for buffered input (ArrayBuffer, ↵ | 7 | -118/+384 | ||
Response, Request body) | |||||
2022-10-03 | Fix undefined is not a function error in WritableStream | 5 | -9/+16 | ||
2022-10-02 | Fix test expectation counter | 2 | -12/+17 | ||
2022-10-02 | Fix test failures | 8 | -142/+220 | ||
2022-10-01 | Fix unref'ing websocket | 1 | -0/+2 | ||