Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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` | 14 | -563/+1536 | ||
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 | |||||
2022-12-02 | Propagate reason in AbortSignal and reuse in ReadableStream.pipeTo | 9 | -37/+38 | ||
Similar to https://github.com/WebKit/WebKit/pull/7013 | |||||
2022-12-02 | Update TransformStream options getters to check for undefined | 1 | -4/+8 | ||
This is essentially copied from https://github.com/WebKit/WebKit/pull/7021 | |||||
2022-12-02 | Add some code I forgot to commit | 1 | -0/+4 | ||
2022-12-02 | Make cloning headers object faster | 3 | -38/+42 | ||
2022-12-02 | Add a userland way to hide stack frames | 1 | -2/+6 | ||
2022-12-02 | Make constructing headers from an existing headears faster | 1 | -0/+1 | ||
2022-12-02 | Throw if passing a header not named "set-cookie" to `getAll` | 1 | -1/+1 | ||
2022-12-02 | Remove `getSetCookie` | 1 | -1/+1 | ||
2022-12-02 | [node:event] Add `captureRejectionSymbol` | 1 | -0/+4 | ||
2022-12-02 | feat(process): add process.{stdin, stdout, stderr} support (#1495) | 4 | -304/+1713 | ||
* 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 | [fetch] Implement `Headers#getAll` and `Headers#getSetCookie()` | 7 | -73/+389 | ||
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 | Add generic way to block on a promise | 3 | -18/+19 | ||
2022-12-02 | Close stdin earlier | 1 | -0/+9 | ||
2022-12-02 | Fix incorrect panic in spawnSync | 1 | -1/+1 | ||
2022-12-01 | Fix crash when macros return a Promise | 3 | -108/+145 | ||
2022-12-01 | Fix double free in .json() and optimize UTF16 -> json slightly | 2 | -30/+50 | ||
2022-12-01 | Remove file blob caching | 2 | -21/+1 | ||
2022-12-01 | [streams] Handle empty state | 1 | -0/+12 | ||
2022-12-01 | [bun bun] Fix crash in canary | 1 | -2/+2 | ||
2022-12-01 | [fetch] Implement `redirect: "manual"` | 1 | -0/+14 | ||
2022-12-01 | Fix timers keeping process alive unnecessarily | 1 | -6/+3 | ||
2022-12-01 | bun test `toStrictEqual` (#1568) | 7 | -46/+152 | ||
* 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 | -79/+157 | ||
2022-12-01 | 3x faster `TextEncoder.prototype.encodeInto` | 3 | -23/+22 | ||
thanks to @Constellation for the tip | |||||
2022-12-01 | Include size of ArrayBuffer and others in GC timer scheduling | 1 | -1/+1 | ||
2022-12-01 | Increase sensitivity of GC timers | 1 | -2/+3 | ||
2022-12-01 | Reduce memory usage in Bun.serve() by up to 3x (#1569) | 10 | -8/+174 | ||
* Update WebKit * Use 5x less memory in Bun.serve() * Update Dockerfile.devcontainer * Update async-overhead.mjs Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-30 | formatting and remove comment | 1 | -13/+0 | ||
2022-11-30 | Fix console.log regression with emoji | 1 | -2/+2 | ||
2022-11-30 | Redirect imports to `"readable-stream"` -> `"node:stream"` | 1 | -1/+4 | ||
2022-11-30 | Accidentally deleted `prompt` as a result of the process.env changes | 2 | -7/+1 | ||
2022-11-29 | :scissors: | 5 | -626/+7 | ||
2022-11-29 | Remove some dead bindings code | 6 | -1394/+64 | ||
2022-11-29 | import everything from "bun" where possible | 42 | -288/+288 | ||
2022-11-28 | Make .toInt64 faster | 1 | -0/+8 | ||
2022-11-28 | Handle when the process already exited immediately | 2 | -6/+7 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 7 | -5/+200 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Fix failing spawn() and spawnSync() tests | 4 | -45/+206 | ||
cc @ThatOneBro | |||||
2022-11-28 | Fix hanging in FIFO streams | 1 | -1/+2 | ||
2022-11-28 | [internal] Add debug timer | 1 | -2/+3 | ||