Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-06 | dlsym pow | 1 | -6/+7 | ||
2022-12-06 | add server scheduleDeinit, ignore logs in test | 1 | -2/+12 | ||
2022-12-06 | Add check | 2 | -4/+6 | ||
2022-12-06 | fix event emitter cast | 2 | -17/+19 | ||
2022-12-06 | Ban statx | 1 | -0/+16 | ||
2022-12-06 | Fix glibc symbol version issues preventing `bun install` from being used in ↵ | 12 | -68/+296 | ||
older glibc versions (#1580) * Prevent integer overflow in connectError * Add missing deepEquals() type to Bun * fix missing glibc symbols * Fix missing symbol issues * Try this * Update glibc-versions-hack.cpp * Update glibc-versions-hack.cpp * Update glibc-versions-hack.cpp Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-06 | cleanup/fix(stdio,child_process): bug fixes, refactoring, etc. (#1574) | 2 | -906/+218 | ||
* fix(stream): add back call to Error.captureStackTrace, remove stray garbage * cleanup(streams): remove unnecessary checks on Promise.then * fix(child_process): WrappedFileSink -> NativeWritable for ChildProcess stdio * cleanup(child_process): remove debug id * fix(child_process): fix process.nextTick not working in onExit, fail to flush stdio * refactor(streams): revert stream impls to functions from classes * fix(child_process): revert runOnNextTick to process.nextTick | |||||
2022-12-05 | 9 characters | 1 | -1/+1 | ||
2022-12-05 | Use more simdutf | 1 | -0/+9 | ||
2022-12-05 | fix for double free and undefined this | 2 | -2/+3 | ||
2022-12-05 | linx build issue | 1 | -80/+80 | ||
2022-12-05 | Missing commit | 1 | -0/+2 | ||
2022-12-05 | More null checking for simdutf | 1 | -27/+38 | ||
2022-12-05 | Fix regression | 1 | -6/+11 | ||
2022-12-05 | Fix crash when passing unexpected type to .writer() | 1 | -1/+6 | ||
2022-12-05 | Introduce `Bun.indexOfLine` | 1 | -0/+61 | ||
2022-12-05 | Fix alignment edgecase | 2 | -3/+3 | ||
2022-12-05 | Make `console` an `AsyncIterable` | 14 | -116/+531 | ||
2022-12-05 | Update Process.h | 1 | -0/+7 | ||
2022-12-05 | `process.stdin` exists but doesn't totally work yet | 3 | -31/+150 | ||
2022-12-05 | [Bun.stdin] Fix handling tty | 2 | -4/+18 | ||
2022-12-05 | [internal] Add some logs for string encoding | 1 | -1/+11 | ||
2022-12-05 | Fix "is not event emitter" errror | 1 | -4/+5 | ||
2022-12-05 | "Fix" monkey-patching EventEmitter prototype | 4 | -35/+73 | ||
2022-12-04 | [bun:test] Fix crash when `test("foo")` is called without passing a function | 1 | -6/+13 | ||
2022-12-04 | Clean up more cases | 1 | -6/+6 | ||
2022-12-04 | Fix race condition in child_process | 1 | -9/+17 | ||
2022-12-04 | Update ZigGeneratedClasses.cpp | 1 | -0/+16 | ||
2022-12-04 | Handle exception when creating stdout/stderr | 1 | -3/+10 | ||
2022-12-04 | Update ffi.zig | 1 | -6/+6 | ||
2022-12-04 | Update child_process | 3 | -17/+15 | ||
2022-12-04 | [breaking] `onExit` callback in Bun.spawn sets the first property to be the ↵ | 1 | -3/+9 | ||
Subprocess object Sometimes Bun.spawn calls the onExit callback before the Bun.spawn() callback is called. Instead of delaying a tick, we set the `Subprocess` to be the first argument to the `onExit` callback now. | |||||
2022-12-04 | [Bun.spawn] Introduce `Subprocess.prototype.signalCode` | 2 | -39/+118 | ||
2022-12-04 | Fix console.log sometimes incorrectly reporting undefined | 1 | -4/+4 | ||
cc @Electroid | |||||
2022-12-04 | [internal] Make string comparisons faster | 25 | -256/+150 | ||
2022-12-04 | Mildly faster startup time | 11 | -52/+63 | ||
2022-12-04 | :scissors: | 3 | -3/+3 | ||
2022-12-04 | Add some basic tests for process.stdout | 6 | -58/+23 | ||
2022-12-04 | Re-add missing global | 1 | -0/+1 | ||
2022-12-04 | content-range is inclusive | 1 | -1/+1 | ||
2022-12-04 | [Bun.serve] Implement `Content-Range` support with `Bun.file()` | 3 | -15/+111 | ||
2022-12-04 | [may revert later] Coerce Infinity to max int 64, -Infinity & NaN to min int64 | 1 | -2/+22 | ||
2022-12-03 | [fetch] Fix bug where .arrayBuffer() on an empty Response body returned a ↵ | 1 | -1/+1 | ||
`Uint8Array` instead of an `ArrayBuffer` | |||||
2022-12-03 | Don't invalidate previous file descriptro to avoid tripping assertion | 1 | -5/+0 | ||
2022-12-03 | `process.stdout` and `process.stderr` | 15 | -564/+1537 | ||
2022-12-03 | simdutf ascii validation is about 20% faster on arm64 than our zig simd ↵ | 1 | -0/+3 | ||
@Vector version | |||||
2022-12-03 | make sure to not use incomplete characters (#1575) | 1 | -1/+4 | ||
2022-12-02 | Run promise before callback | 1 | -13/+13 | ||
2022-12-02 | Add `AbortSignal.timeout` | 6 | -13/+48 | ||
2022-12-02 | matchers for less than and greater than (#1573) | 5 | -6/+317 | ||
* toBeGreaterThan with tests * toBeGreaterThanOrEqual and tests * toBeLessThan and toBeLessThanOrEqual with tests * expect types * switch expressions |