Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-30 | [wip internal] Introduce `bun.String` which wraps `WTF::String` and allows ↵jarred/make-strings-better | 12 | -64/+284 | ||
us to reuse them | |||||
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 | 9 | -14/+14 | ||
2022-11-28 | Make .toInt64 faster | 1 | -0/+8 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 5 | -3/+128 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Update JSEnvironmentVariableMap.cpp | 1 | -1/+1 | ||
2022-11-28 | Fix process.env and Bun.env object spread | 6 | -24/+107 | ||
Fixes https://github.com/oven-sh/bun/issues/1512 | |||||
2022-11-27 | Fix `console.log(process.env)` | 1 | -0/+6 | ||
2022-11-27 | Add missing v | 1 | -1/+1 | ||
Fixes https://github.com/oven-sh/bun/issues/1554 | |||||
2022-11-27 | Cleanup some of the encoding code | 1 | -22/+26 | ||
2022-11-27 | Fix Buffer.toString("latin1") and make Buffer.toString("utf16le") faster | 1 | -3/+17 | ||
Fixes #455 Fixes #1016 | |||||
2022-11-27 | Fix failing buffer tests | 1 | -6/+12 | ||
2022-11-27 | Fix crash in console.log | 1 | -10/+13 | ||
2022-11-27 | Increase the max prototype count | 1 | -19/+30 | ||
2022-11-27 | Update bindings.cpp | 1 | -0/+2 | ||
2022-11-27 | [console.log] Remove extra indent | 1 | -1/+0 | ||
2022-11-27 | Handle more cases with printing objects | 2 | -32/+27 | ||
2022-11-27 | remove leak | 1 | -5/+8 | ||
2022-11-27 | [console.log] Fix printing latin1 supplement characters at runtime | 4 | -15/+22 | ||
Fixes https://github.com/oven-sh/bun/issues/1031#issuecomment-1236092120 | |||||
2022-11-27 | [console.log] Improve Object formatting and error handling | 3 | -182/+399 | ||
2022-11-27 | `[console.log]` log Proxy objects | 1 | -0/+7 | ||
2022-11-27 | [console.log] Treat `GlobalObject` like `Object` | 1 | -1/+1 | ||
2022-11-27 | [console.log] Treat `ArrayBuffer` like `Uint8Array` | 1 | -0/+1 | ||
2022-11-27 | [console.log] Fix logging `Symbol` values | 1 | -3/+2 | ||
2022-11-27 | Fix crash in Headers.prototype.count | 1 | -2/+5 | ||
2022-11-27 | Fix crash in OnigurumaRegExp getters | 1 | -0/+6 | ||
2022-11-26 | Fix build issue | 1 | -13/+15 | ||
2022-11-26 | [bun:sqlite] Fix bug with latin1 supplemental characters | 1 | -2/+5 | ||
Fixes https://github.com/oven-sh/bun/issues/1553 | |||||
2022-11-26 | Faster UTF16 -> UTF8 and UTF8 -> UTF16 (#1552) | 4 | -0/+31063 | ||
* 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 | Fix 0 | 1 | -2/+4 | ||
2022-11-26 | Slightly improve when printing lots of numbers | 1 | -1/+16 | ||
2022-11-26 | Make console.log prettier | 2 | -75/+286 | ||
2022-11-25 | Fix macros that return a Promise | 1 | -0/+42 | ||
2022-11-25 | Enable Resizable ArrayBuffer proposal | 1 | -0/+1 | ||
https://github.com/tc39/proposal-resizablearraybuffer | |||||
2022-11-25 | Upgrade WebKit | 8 | -58/+82 | ||
2022-11-25 | Introduce `FileSink.ref()` and `FileSink.unref()` | 4 | -30/+230 | ||
2022-11-24 | Use is_in_heap_region instead of _check_owned | 1 | -1/+1 | ||
2022-11-24 | Fix crash when console.log() / console.error() fails to write to stdout/stdin | 1 | -7/+28 | ||
2022-11-23 | Bun.deepEquals and expect().toEqual() (#1548) | 8 | -66/+645 | ||
* all of deepEquals * remove comment, tests, move inline function | |||||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 6 | -6/+13 | ||
* 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 | Remove some dead code | 6 | -480/+16 | ||
2022-11-22 | [FileSystemRouter] Fix failing tests | 1 | -2/+2 | ||
2022-11-22 | [FileSystemRouter] base_dir, Request, Response | 3 | -1/+103 | ||
2022-11-22 | Introduce `Bun.FileSystemRouter` API | 9 | -166/+1501 | ||
2022-11-22 | clone in putRecord | 1 | -3/+3 | ||
2022-11-21 | [bun:test] Add test for returning MAX_SAFE_INTEGER | 1 | -0/+2 | ||
2022-11-21 | fix oniguruma regex character properties (#1528) | 1 | -7/+62 | ||
* fix for character properties * cleanup tests * cleanup comments * i - 2 >= 0 | |||||
2022-11-21 | [bun:sqlite] fix truncating to int32 in results (now truncates to int52) | 1 | -3/+13 | ||
TODO: bigint | |||||
2022-11-20 | Fix spurious rejected promise handler calls | 5 | -7/+25 | ||