Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-10 | [transpiler] Improve constant propagation | 1 | -0/+84 | ||
2022-12-10 | Implement simple version of inlining single-use expressions and statements | 1 | -0/+429 | ||
2022-12-09 | Deprecate very incomplete Solid.js JSX transform | 31 | -3057/+0 | ||
We don't have time to do a good job of this and Bun.plugin makes it possible to use Solid with Bun | |||||
2022-12-07 | [node:events] EventEmitter#on and EventEmitter#off should return the ↵ | 1 | -0/+10 | ||
EventEmitter instance | |||||
2022-12-07 | fix(stream): Fix Transform class constructor fn (#1583) | 1 | -0/+47 | ||
* fix(stream): fix ReadableFromWeb class, fix Transform * test(stream): add tests for .call on stream constructors | |||||
2022-12-06 | Update types (#1581) | 1 | -3/+3 | ||
* Fix TS types, improve child_process types * Add prettier * Add ArrayBuffer types * Add namespace Bun, improve types for SharedArrayBuffer, add toStrictEqual * Improve types, add test files for types * Update type tests * Fix typo * Add stdio * Stdio types * Use latest setup-bun * Update action * Update action * Update action Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> | |||||
2022-12-06 | fix child process test | 1 | -1/+1 | ||
2022-12-06 | add server scheduleDeinit, ignore logs in test | 1 | -6/+4 | ||
2022-12-06 | fix event emitter cast | 1 | -6/+0 | ||
2022-12-05 | Add some more text decoder tests | 1 | -0/+33 | ||
2022-12-05 | Make `console` an `AsyncIterable` | 3 | -0/+104 | ||
2022-12-05 | more tests for event emitter weirdness | 1 | -0/+59 | ||
2022-12-04 | Update test-test.test.ts | 1 | -0/+8 | ||
2022-12-04 | Update child_process | 1 | -4/+3 | ||
2022-12-04 | [test] Ensure console.log(globalThis) doesn't crash | 1 | -0/+1 | ||
2022-12-04 | Rename file | 1 | -0/+0 | ||
2022-12-04 | Add some basic tests for process.stdout | 3 | -0/+101 | ||
2022-12-04 | Silence incorrect test failure | 1 | -0/+1 | ||
2022-12-04 | [Bun.serve] Implement `Content-Range` support with `Bun.file()` | 1 | -1/+159 | ||
2022-12-03 | [test] Add a couple tests for subarray toEqual | 1 | -0/+3 | ||
2022-12-02 | Push failing tests | 1 | -14/+126 | ||
2022-12-02 | add deps for make test command | 1 | -1/+3 | ||
2022-12-02 | Add `AbortSignal.timeout` | 1 | -0/+12 | ||
2022-12-02 | matchers for less than and greater than (#1573) | 1 | -0/+449 | ||
* toBeGreaterThan with tests * toBeGreaterThanOrEqual and tests * toBeLessThan and toBeLessThanOrEqual with tests * expect types * switch expressions | |||||
2022-12-02 | Update test | 2 | -27/+35 | ||
2022-12-02 | [node:event] Add `captureRejectionSymbol` | 1 | -2/+9 | ||
2022-12-02 | feat(process): add process.{stdin, stdout, stderr} support (#1495) | 5 | -59/+205 | ||
* fix(stream): get Duplex working * feat(process): add stdin,stdout,stderr in a semi-broken state (pipes??) * test(NodeTestHelpers): fix test names * test(NodeTestHelpers): add test for createDoneDotAll done called w error * test(NodeTestHelpers): remove stray console.log * fix(stream): fix bug in Duplex, Readable * test(process.stdio): rename test * fix(process.stdio): change onData listener to onReadable * refactor(streams): add file-wide debug fn, destructure opts * fix(child_process): check isCallable on promise * fix: get stdio streams mostly working (mostly) * fix(child_process): wait until stream is drained before calling end? * fix(child_process): change to result?.then * debug(child_process,streams): add EE id tracking, add shim for stdio after handle is dead * test(child_process): fix double pipe test, temp fix for ChildProcess.kill() return val * fix(child_process): remove immediate emit of exit on kill * debug(streams): add more debug log * debug(streams): add more debug logs part 2 * feat(streams,fs): add NativeWritable, adapt fs.WriteStream and fs.ReadStream to native | |||||
2022-12-02 | Tests for set-Cookie | 1 | -2/+76 | ||
2022-12-02 | [fetch] Implement `Headers#getAll` and `Headers#getSetCookie()` | 1 | -0/+25 | ||
This matches Deno's behavior (get() combines, iterator preserves the order, set and append combine), but implements both the Cloudflare Workers `getAll()` and the potential standard `getSetCookie` function. The rationale for choosing both is to better support libraries which check for `getAll` and also because `getSetCookie` seems a little confusing (names are hard) This also makes `.toJSON` and JSON.stringify return an array for `Set-Cookie` | |||||
2022-12-02 | make the test run faster | 2 | -87/+91 | ||
2022-12-02 | Fix incorrect StringDecoder export test | 1 | -2/+2 | ||
2022-12-02 | Fix running tests in older versions of bun | 1 | -0/+2 | ||
2022-12-02 | Skip flaky test | 1 | -16/+25 | ||
2022-12-02 | Faster test | 1 | -5/+7 | ||
2022-12-02 | Add file descriptor leak test | 1 | -0/+7 | ||
2022-12-02 | Add file descriptor leak test | 1 | -4/+10 | ||
2022-12-01 | Fix crash when macros return a Promise | 1 | -8/+8 | ||
2022-12-01 | Faster test | 1 | -6/+8 | ||
2022-12-01 | [fetch] Add test that invalid json rejects promise | 1 | -0/+22 | ||
2022-12-01 | [fetch] Implement `redirect: "manual"` | 1 | -0/+42 | ||
2022-12-01 | bun test `toStrictEqual` (#1568) | 1 | -0/+125 | ||
* toStrictEqual and bug fix in deepEqual * rebase Remove some dead bindings code * remove debugging test * canGetIndexQuickly for array holes * isStrict template Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-01 | [`bun:sqlite`] ~15% perf improvement to all() and get() | 1 | -0/+18 | ||
2022-12-01 | Add test for DOMJIT call version of encodeInto | 1 | -2/+7 | ||
2022-11-30 | fix slow regex tests | 1 | -20/+26 | ||
2022-11-30 | Fix console.log regression with emoji | 1 | -0/+4 | ||
2022-11-28 | Handle when the process already exited immediately | 1 | -32/+40 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 1 | -113/+332 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Fix failing spawn() and spawnSync() tests | 2 | -96/+109 | ||
cc @ThatOneBro | |||||
2022-11-28 | Add test for process | 1 | -3/+14 | ||
2022-11-27 | Add google fixture | 1 | -0/+16 | ||