Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-01 | Fix `setTimeout(0)`, improve test coverage slightly, reduce memory usage of ↵ | 5 | -87/+221 | ||
timers | |||||
2022-10-01 | [napi] Implement `napi_remove_wrap` | 3 | -0/+32 | ||
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 | [bun:test] When there are lots of tests, print the failures at the bottom so ↵ | 1 | -6/+20 | ||
you can see them easier | |||||
2022-10-01 | Fix release mode value semantics bug | 1 | -20/+20 | ||
2022-10-01 | Increase test coverage for request body streaming | 9 | -133/+251 | ||
There is still one memory issue to address | |||||
2022-09-30 | Make setTimeout/setInterval more reliable | 3 | -60/+103 | ||
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 | ||
2022-09-30 | Fix unnecessary "Buffer is detached" error | 1 | -8/+34 | ||
2022-09-30 | Request->url == string, not ZigString now | 2 | -21/+38 | ||
2022-09-30 | Improve test coverage for Request body streaming! | 1 | -59/+288 | ||
2022-09-30 | Fix OOB when multiple headers have the same name length | 1 | -18/+24 | ||
Fixes https://github.com/oven-sh/bun/issues/1279 | |||||
2022-09-30 | Add a better wrapper function for promises | 1 | -3/+28 | ||
2022-09-30 | Use poll_ref in the io tasks | 1 | -11/+12 | ||
2022-09-30 | Support all `ArrayBufferView` in all hashing functions and node fs functions | 1 | -11/+46 | ||
2022-09-30 | Verbose flag | 1 | -1/+17 | ||
2022-09-30 | Use pollref in FileBlobLoader | 1 | -1/+1 | ||
2022-09-30 | Fixup Body mixin implementation | 1 | -233/+193 | ||
2022-09-30 | Use PollRef in napi | 1 | -0/+5 | ||
2022-09-30 | more gc in fs test | 2 | -2/+13 | ||
2022-09-30 | Remove extraneous calls to `.ref()` | 17 | -169/+172 | ||
2022-09-30 | Add hidden `verbose` flag to `fetch` (the third argument) | 1 | -0/+13 | ||
```js fetch(url, {body: ""}, {verbose: true}) ``` | |||||
2022-09-30 | [internal] Use `PollRef` for `fetch()` | 1 | -1/+6 | ||
2022-09-30 | Create test_scope_debug.ts | 1 | -0/+62 | ||
2022-09-30 | fix potentially truncated encodeInto | 1 | -4/+4 | ||
2022-09-29 | Fixup | 1 | -3/+5 | ||
2022-09-29 | don't need to mark | 1 | -1/+0 | ||
2022-09-29 | Lazy URL, more explicit close() | 6 | -38/+160 | ||
2022-09-29 | Update base.zig | 1 | -0/+4 | ||
2022-09-29 | Fix Bun.serve not keeping process alive | 1 | -13/+13 | ||
2022-09-29 | Fix console.log(ModuleNamespace) | 1 | -1/+5 | ||
2022-09-28 | Update streams.zig | 1 | -1/+1 | ||
2022-09-28 | Use uSockets for `setTimeout` and `setInterval` | 2 | -67/+79 | ||
2022-09-28 | Add some tests for request body streaming | 3 | -7/+150 | ||
Need to fix an off-by-one error with Blob it seems | |||||
2022-09-28 | /s/c_int/i32 | 1 | -189/+196 | ||
2022-09-28 | Fix `unreachable` | 1 | -3/+6 | ||
2022-09-28 | Fix a crash with `fetch(url, {body: arrayBuffer})` introduced with the Blob ↵ | 1 | -8/+27 | ||
changes cc @bwasti | |||||
2022-09-28 | Queue tests rather than run immediately | 1 | -2/+20 | ||
2022-09-28 | Clean up WebSocket never starting | 1 | -10/+8 | ||
2022-09-28 | Outer event loop tweaks | 1 | -28/+21 | ||
2022-09-28 | Fix a crash in HTMLRewriter caused by blob changes | 1 | -9/+9 | ||
2022-09-28 | Clean up some of the event loop code | 12 | -69/+100 | ||