Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-12 | some bugs make you feel like a 🤡 | 1 | -1/+1 | ||
2022-12-12 | [crypto] Implement crypto.timingSafeEqual | 6 | -1/+104 | ||
This uses BoringSSL's memcmp function Fixes https://github.com/oven-sh/bun/issues/1308 | |||||
2022-12-12 | fix(stream): Fix Readable.pipe() (#1606) | 1 | -10/+14 | ||
* fix(stream): fix some debug logs that were breaking .pipe * fix(stream): another debug fix * test(stream): add test for .pipe | |||||
2022-12-12 | markbinding for utf8 length from utf16le | 1 | -0/+3 | ||
2022-12-11 | [Transpiler] Implement `minifyWhitespace` option | 1 | -0/+8 | ||
2022-12-11 | [internal] Change HashMap implementation for storing symbols | 7 | -6/+2 | ||
2022-12-11 | Update WebKit | 6 | -4/+25 | ||
cc @cirospaciari you will need to re-download the precompiled WebKit build from the releases page https://github.com/oven-sh/WebKit/releases/tag/dec11 because there is one small WebKit API change. LMK if you have any trouble with that | |||||
2022-12-11 | Add _read | 2 | -5/+35 | ||
2022-12-10 | Regenerate builtins | 1 | -2/+2 | ||
2022-12-10 | override `process.stdin.on()` correctly (#1603) | 1 | -1/+1 | ||
* override `process.stdin.on()` correctly fixes #1601 * add tests | |||||
2022-12-10 | Implement simple version of inlining single-use expressions and statements | 1 | -0/+6 | ||
2022-12-08 | EventEmitter - return original this value for better chainability | 1 | -2/+4 | ||
2022-12-07 | fix `dirname` on an empty string | 1 | -1/+1 | ||
2022-12-07 | [node:events] EventEmitter#on and EventEmitter#off should return the ↵ | 1 | -4/+3 | ||
EventEmitter instance | |||||
2022-12-07 | Update html_rewriter.zigbun-v0.3.0 | 1 | -22/+19 | ||
2022-12-07 | fix(stream): Fix Transform class constructor fn (#1583) | 1 | -4/+29 | ||
* fix(stream): fix ReadableFromWeb class, fix Transform * test(stream): add tests for .call on stream constructors | |||||
2022-12-06 | Don't call getters in console.log | 1 | -4/+5 | ||
2022-12-06 | Fix `node:stream/consumers` | 2 | -8/+17 | ||
2022-12-06 | Update glibc-versions-hack.cpp | 1 | -0/+4 | ||
2022-12-06 | add base64url switch case | 1 | -3/+6 | ||
2022-12-06 | dlsym pow | 1 | -6/+7 | ||
2022-12-06 | add server scheduleDeinit, ignore logs in test | 1 | -2/+12 | ||
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 ↵ | 5 | -6/+151 | ||
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 | 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 | 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 | 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 | 1 | -4/+17 | ||
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 | 2 | -3/+4 | ||