Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
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 | 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 | Use pollref in FileBlobLoader | 1 | -1/+1 | ||
2022-09-30 | Fixup Body mixin implementation | 1 | -233/+193 | ||
2022-09-30 | Remove extraneous calls to `.ref()` | 12 | -158/+159 | ||
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 | 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() | 2 | -30/+96 | ||
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` | 1 | -67/+79 | ||
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 | 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 | ||
2022-09-28 | make bun:test ~300x faster when using http server, websockets, etc | 2 | -55/+228 | ||
there was an event loop bug | |||||
2022-09-28 | Support a `default` object in CommonJS wrapper | 3 | -3/+29 | ||
Fixes https://github.com/oven-sh/bun/issues/1284 Related to https://github.com/oven-sh/bun/issues/1285 | |||||
2022-09-28 | Implement `reportExtraMemoryVisited` and `reportExtraMemoryAllocated` in ↵ | 4 | -34/+89 | ||
bindings | |||||
2022-09-28 | size estimatoor | 1 | -8/+51 | ||
2022-09-28 | fixup | 1 | -2/+1 | ||