Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-02 | [fetch] Implement `Headers#getAll` and `Headers#getSetCookie()` | 9 | -73/+450 | ||
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 | incorrect name for matcher | 1 | -1/+1 | ||
2022-12-02 | make the test run faster | 2 | -87/+91 | ||
2022-12-02 | delete these fixtures which are no longer relevant | 7 | -441/+0 | ||
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 | Add generic way to block on a promise | 3 | -18/+19 | ||
2022-12-02 | Faster test | 1 | -5/+7 | ||
2022-12-02 | Close stdin earlier | 1 | -0/+9 | ||
2022-12-02 | Add file descriptor leak test | 1 | -0/+7 | ||
2022-12-02 | Add file descriptor leak test | 1 | -4/+10 | ||
2022-12-02 | Fix incorrect panic in spawnSync | 1 | -1/+1 | ||
2022-12-01 | Fix crash when macros return a Promise | 4 | -116/+153 | ||
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 | Faster test | 1 | -6/+8 | ||
2022-12-01 | [streams] Handle empty state | 1 | -0/+12 | ||
2022-12-01 | [fetch] Add test that invalid json rejects promise | 1 | -0/+22 | ||
2022-12-01 | [bun bun] Fix incorrect package.hash | 3 | -14/+38 | ||
2022-12-01 | [bun bun] Fix crash in canary | 2 | -3/+10 | ||
2022-12-01 | [fetch] Treat 302 like 303 | 1 | -2/+17 | ||
2022-12-01 | [fetch] Implement `redirect: "manual"` | 3 | -1/+64 | ||
2022-12-01 | ComptimeStringMap is faster than ExactSizeMatcher | 1 | -37/+22 | ||
2022-12-01 | Fix timers keeping process alive unnecessarily | 2 | -6/+12 | ||
2022-12-01 | bun test `toStrictEqual` (#1568) | 8 | -46/+277 | ||
* 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() | 2 | -79/+175 | ||
2022-12-01 | 3x faster `TextEncoder.prototype.encodeInto` | 4 | -23/+32 | ||
thanks to @Constellation for the tip | |||||
2022-12-01 | Add test for DOMJIT call version of encodeInto | 1 | -2/+7 | ||
2022-12-01 | Fix crash in test runner with gc mode | 2 | -1/+4 | ||
2022-12-01 | Include size of ArrayBuffer and others in GC timer scheduling | 1 | -1/+1 | ||
2022-12-01 | Incorrect readme | 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) | 16 | -37/+216 | ||
* 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 | 2 | -13/+10 | ||
2022-11-30 | fix slow regex tests | 1 | -20/+26 | ||
2022-11-30 | Fix console.log regression with emoji | 2 | -2/+6 | ||
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 | 7 | -1401/+69 | ||
2022-11-29 | import everything from "bun" where possible | 161 | -739/+621 | ||
2022-11-28 | Make .toInt64 faster | 1 | -0/+8 | ||
2022-11-28 | Handle when the process already exited immediately | 3 | -38/+47 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 8 | -118/+532 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Fix failing spawn() and spawnSync() tests | 7 | -143/+317 | ||
cc @ThatOneBro | |||||
2022-11-28 | Update README.md | 1 | -1/+26 | ||
2022-11-28 | Update README.md | 1 | -5/+5 | ||
2022-11-28 | Add small section about profiling bun | 1 | -0/+171 | ||
2022-11-28 | Fix hanging in FIFO streams | 1 | -1/+2 | ||