Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-27 | Add missing v | 1 | -0/+4 | ||
Fixes https://github.com/oven-sh/bun/issues/1554 | |||||
2022-11-27 | Fix Buffer.toString("latin1") and make Buffer.toString("utf16le") faster | 1 | -0/+27 | ||
Fixes #455 Fixes #1016 | |||||
2022-11-27 | Fix failing buffer tests | 1 | -2/+2 | ||
2022-11-27 | Fix crash in console.log | 3 | -31/+75 | ||
2022-11-27 | Add tests for latin1 supplemental chars | 1 | -13/+56 | ||
2022-11-27 | fix hanging test | 1 | -8/+13 | ||
2022-11-26 | [bun:sqlite] Fix bug with latin1 supplemental characters | 1 | -0/+26 | ||
Fixes https://github.com/oven-sh/bun/issues/1553 | |||||
2022-11-26 | Faster UTF16 -> UTF8 and UTF8 -> UTF16 (#1552) | 1 | -5/+7 | ||
* Fix freezing test * Add SIMDUTF * More micro bench snippets * Update .gitattributes * Update .gitattributes Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-26 | Make HTTP status text more consistent with other HTTP servers | 1 | -0/+80 | ||
2022-11-25 | Update test | 2 | -29/+21 | ||
2022-11-25 | Another test for macros | 1 | -0/+36 | ||
2022-11-25 | Fix macros that return a Promise | 2 | -20/+81 | ||
2022-11-25 | Report `Infinity` when for non-regular files with a size of 0 | 2 | -94/+14 | ||
2022-11-25 | Update tests for behavior change | 1 | -11/+10 | ||
2022-11-25 | Improve test coverage for `Bun.file` | 1 | -0/+14 | ||
2022-11-25 | Introduce `FileSink.ref()` and `FileSink.unref()` | 3 | -19/+35 | ||
2022-11-23 | Bun.deepEquals and expect().toEqual() (#1548) | 1 | -2/+1023 | ||
* all of deepEquals * remove comment, tests, move inline function | |||||
2022-11-23 | uncomment | 1 | -75/+74 | ||
2022-11-23 | Close the streams more | 2 | -0/+58 | ||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 11 | -247/+410 | ||
* wip * wip * Fix bug with stdin * zig fmt * seems to work! * Update streams.test.js Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-22 | [FileSystemRouter] Fix reload() | 1 | -0/+16 | ||
2022-11-22 | [FileSystemRouter] Fix failing tests | 1 | -5/+90 | ||
2022-11-22 | [FileSystemRouter] Add more tests | 1 | -82/+207 | ||
2022-11-22 | [FileSystemRouter] base_dir, Request, Response | 1 | -0/+68 | ||
2022-11-22 | Update filesystem_router.test.ts | 1 | -0/+26 | ||
2022-11-22 | Introduce `Bun.FileSystemRouter` API | 1 | -0/+85 | ||
2022-11-21 | Add test for wildcard import without an extension | 1 | -10/+19 | ||
2022-11-21 | [bun:test] Add test for returning MAX_SAFE_INTEGER | 1 | -0/+9 | ||
2022-11-21 | fix oniguruma regex character properties (#1528) | 1 | -0/+46 | ||
* fix for character properties * cleanup tests * cleanup comments * i - 2 >= 0 | |||||
2022-11-20 | Assert count | 1 | -7/+8 | ||
2022-11-20 | Enable previously failing GC tests | 1 | -68/+82 | ||
2022-11-20 | Add another test | 1 | -0/+41 | ||
2022-11-20 | Fix flaky test | 1 | -1/+5 | ||
2022-11-19 | [streams] Fix exception in `WritableStream` | 1 | -34/+36 | ||
cc @Electroid | |||||
2022-11-19 | Fix freezing test due to calling GC 36,000 times | 1 | -14/+21 | ||
2022-11-19 | Add a couple more tests for redirects | 1 | -0/+76 | ||
2022-11-19 | Introduce `Bun.unsafe.gcAggressionLevel` API | 1 | -0/+10 | ||
2022-11-19 | Fix failing test | 1 | -1/+1 | ||
2022-11-18 | bun test matchers and tests (#1526) | 1 | -0/+144 | ||
* ignore webkit for cherry-pick * toContain and toBeTruthy * toBe null, undefined, falsy, toHaveProperty, .not * markBindings * remove toHaveProperty, undo ignore webkit, more tests * undo ignore webkit * remove bad tests * check if length property exists for toHaveLength() * fix call signature * handle argument that is not an integer * getLengthOfArray returns u64 * switch to truncate * toHaveLength() edge cases * add toBooleanSlow() * infinity, nan, negative | |||||
2022-11-16 | Make `node:http`.createServer work better | 2 | -1/+77 | ||
2022-11-15 | Add test for non-standard Headers API additions | 1 | -0/+24 | ||
2022-11-15 | Add a test with decently large headers | 1 | -0/+61 | ||
2022-11-14 | Fix crashiness with `process.env` | 1 | -0/+12 | ||
This also makes it a lot slower | |||||
2022-11-14 | Bugfixes and perf improvements to child_process | 4 | -13/+68 | ||
2022-11-13 | Add an e2e test | 3 | -0/+52 | ||
2022-11-13 | Make node streams faster (#1502) | 3 | -113/+112 | ||
* Make node streams faster * Fix for macOS, improve performance, handle ref and unref Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-12 | Fix infinite write loop on Linux | 1 | -0/+10 | ||
2022-11-12 | Fix memory leak in gzip pool + add test for gzip'd data | 5 | -2/+1514 | ||
2022-11-12 | Redo how we poll pipes (#1496) | 4 | -178/+232 | ||
* Fix pipe * Handle unregistered * Fix failing test | |||||
2022-11-11 | Add test that fails on linux | 3 | -0/+35 | ||