Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-25 | Introduce `FileSink.ref()` and `FileSink.unref()` | 5 | -34/+288 | ||
2022-11-25 | [streams] Always call start | 2 | -14/+10 | ||
2022-11-25 | Fix reading FIFO files | 2 | -19/+59 | ||
2022-11-25 | [safety] Add a generation_number to FilePoll on macOS to check for ↵ | 1 | -3/+20 | ||
use-after-free | |||||
2022-11-24 | Improve SIGPIPE handling | 3 | -81/+110 | ||
2022-11-24 | Use is_in_heap_region instead of _check_owned | 2 | -2/+2 | ||
2022-11-24 | Fix crash when console.log() / console.error() fails to write to stdout/stdin | 1 | -7/+28 | ||
2022-11-24 | Update streams.zig | 1 | -1/+1 | ||
2022-11-24 | Add extra check | 2 | -4/+4 | ||
2022-11-24 | Don't pre-maturely close the input buffer | 1 | -0/+4 | ||
2022-11-24 | Update streams.zig | 1 | -5/+7 | ||
2022-11-24 | Update streams.zig | 1 | -2/+2 | ||
2022-11-24 | Update streams.zig | 1 | -1/+1 | ||
2022-11-23 | Bun.deepEquals and expect().toEqual() (#1548) | 9 | -67/+685 | ||
* all of deepEquals * remove comment, tests, move inline function | |||||
2022-11-23 | Fix build error | 1 | -1/+1 | ||
2022-11-23 | nohang flag | 1 | -1/+1 | ||
2022-11-23 | Close the streams more | 2 | -29/+36 | ||
2022-11-23 | Linux build issue | 1 | -0/+1 | ||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 23 | -1129/+1587 | ||
* wip * wip * Fix bug with stdin * zig fmt * seems to work! * Update streams.test.js Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-22 | [FileSystemRouter] Fix reload() | 1 | -1/+2 | ||
2022-11-22 | Remove some dead code | 9 | -480/+20 | ||
2022-11-22 | [FileSystemRouter] Fix failing tests | 2 | -3/+6 | ||
2022-11-22 | [FileSystemRouter] base_dir, Request, Response | 6 | -11/+158 | ||
2022-11-22 | Support no constructor in class generator script | 1 | -49/+65 | ||
2022-11-22 | Introduce `Bun.FileSystemRouter` API | 21 | -683/+2299 | ||
2022-11-22 | clone in putRecord | 1 | -3/+3 | ||
2022-11-21 | [bun:test] Add test for returning MAX_SAFE_INTEGER | 1 | -0/+2 | ||
2022-11-21 | fix oniguruma regex character properties (#1528) | 1 | -7/+62 | ||
* fix for character properties * cleanup tests * cleanup comments * i - 2 >= 0 | |||||
2022-11-21 | [bun:sqlite] fix truncating to int32 in results (now truncates to int52) | 1 | -3/+13 | ||
TODO: bigint | |||||
2022-11-20 | Update jest.zig | 1 | -1/+1 | ||
2022-11-20 | [bun:test] Fix bug with returning a non-promise object in a `test` or `it` ↵ | 1 | -25/+27 | ||
function | |||||
2022-11-20 | Fix spurious rejected promise handler calls | 5 | -7/+25 | ||
2022-11-20 | mild clean up | 4 | -22/+22 | ||
2022-11-20 | [internal] Implement `visitAdditionalChildren` | 3 | -65/+326 | ||
2022-11-20 | [streams] Fix memory leak affecting React SSR and more | 3 | -1037/+900 | ||
2022-11-20 | [fetch] Add optimization for chunked encoding | 1 | -0/+4 | ||
2022-11-20 | [TCP] Make `Socket` more careful about GC | 5 | -8/+81 | ||
2022-11-19 | [streams] Fix exception in `WritableStream` | 2 | -9/+3 | ||
cc @Electroid | |||||
2022-11-19 | [streams] Fix exception in streams with 1 item that sometimes occurred | 2 | -5/+31 | ||
2022-11-19 | [fetch] Fix sporadic data corruption bug in HTTP client and add fast path | 2 | -4/+5 | ||
- This removes memory pooling from the HTTP client which sometimes caused invalid memory to be written to the response body. - This adds a fast path for small HTTP/HTTPS responses that makes it a single memory allocation for the response body, instead of copying & allocating a temporary buffer cc @Electroid | |||||
2022-11-19 | Add a log | 1 | -1/+1 | ||
2022-11-19 | Make hidden mimalloc dump report process-wide stats instead of thread | 1 | -1/+1 | ||
2022-11-19 | Introduce `Bun.unsafe.gcAggressionLevel` API | 1 | -0/+20 | ||
2022-11-19 | [internal] Add assertion for freeing global strings | 1 | -4/+5 | ||
2022-11-19 | [napi] Fix missing instance data finalizer | 1 | -0/+5 | ||
2022-11-19 | Fix GC crash when handling rejected promises uncovered via ↵ | 1 | -0/+5 | ||
`BUN_GARBAGE_COLLECTOR_LEVEL` | |||||
2022-11-19 | Fix GC crash in `Bun.file(string).text()`, `Bun.file(string).arrayBuffer()`, ↵ | 1 | -15/+16 | ||
`Bun.file(string).json()` uncovered via `BUN_GARBAGE_COLLECTOR_LEVEL` | |||||
2022-11-19 | Fix GC crash in `Transpiler` found via `BUN_GARBAGE_COLLECTOR_LEVEL` | 1 | -3/+3 | ||
2022-11-19 | [internal] Introduce `JSPromise.Strong` | 1 | -0/+24 | ||
2022-11-19 | Fix GC crash with `WebSocket` uncovered thx to `BUN_GARBAGE_COLLECTOR_LEVEL` | 2 | -25/+63 | ||