Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
2022-10-01 | Fix `setTimeout(0)`, improve test coverage slightly, reduce memory usage of ↵ | 4 | -87/+181 | ||
timers | |||||
2022-10-01 | [napi] Implement `napi_remove_wrap` | 1 | -0/+30 | ||
2022-10-01 | Add missing type check to `napi_wrap` | 1 | -3/+21 | ||
Fixes https://github.com/oven-sh/bun/issues/1286 | |||||
2022-10-01 | Fix release mode value semantics bug | 1 | -20/+20 | ||
2022-10-01 | Increase test coverage for request body streaming | 8 | -57/+59 | ||
There is still one memory issue to address | |||||
2022-09-30 | Make setTimeout/setInterval more reliable | 1 | -56/+87 | ||
2022-09-30 | Fix body mixin | 2 | -9/+9 | ||
2022-09-30 | Fix failing tests from backpressure | 1 | -132/+91 | ||
2022-09-30 | Eagerly receive incoming request bodies | 1 | -77/+71 | ||
2022-09-30 | Fix outdated type | 1 | -1/+1 | ||
2022-09-30 | Simplify some of this | 1 | -127/+23 | ||
2022-09-30 | Delete some code | 1 | -105/+56 | ||
2022-09-30 | Add a couple assertions | 1 | -1/+5 | ||
2022-09-30 | Fix incorrect first number in byte stream | 1 | -8/+6 | ||
2022-09-30 | Attempt to address .write() bug | 1 | -8/+23 | ||