Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-07-01 | Bump | 1 | -1/+15 | ||
2023-07-01 | Make `buffer.toString("base64")` 4x faster (#3486) | 3 | -3/+21 | ||
* Add libbase64 * Add bench * Update licensing.md --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-07-01 | Update WebCoreJSBuiltins.cpp | 1 | -125/+125 | ||
2023-07-01 | Update build-id | 1 | -1/+1 | ||
2023-07-01 | Use `BunString` in `SystemError` (#3485) | 19 | -151/+203 | ||
* Use `BunString` in SystemError * Use Bun::toStringRef when we will de-ref strings * Move `napi_create_error` to C++ to support `code` being a Symbol potentially * Update blob.zig * Make this test less flaky --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-07-01 | Slight fixup | 1 | -2/+8 | ||
2023-07-01 | small cleanup | 2 | -108/+117 | ||
2023-07-01 | [WIP]Fix calling `Buffer.toString` with `(offset, length, encoding)` (#3467) | 2 | -43/+56 | ||
* Allow `toString` to be called with `(offset, length, encoding)`. Close: #3085 * handle undefined value * add tests for buffer.xxxSlice * fix parameters * fix offset and length | |||||
2023-07-01 | Make HTTP Request struct use 8 bytes less memory (#3483) | 1 | -134/+137 | ||
* Make HTTP Request struct use 8 bytes less memory * Update server.zig --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-07-01 | skip private class fields (#3484) | 1 | -6/+6 | ||
2023-07-01 | [jest] fix lifecycle hook execution order (#3461) | 1 | -82/+119 | ||
* [jest] fix lifecycle hook execution order * strip `std.debug.assert()` from release build | |||||
2023-06-30 | implement perf_hooks.constants (#3476) | 1 | -0/+15 | ||
2023-06-30 | fix: export `ClientRequest` and `OutgoingMessage` as part of the `node:http` ↵ | 1 | -0/+2 | ||
package (#3470) | |||||
2023-06-30 | [install] handle `workspace:` specifier correctly (#3474) | 5 | -8/+9 | ||
fixes #3430 | |||||
2023-06-29 | Add missing "prependListener" functionbun-v0.6.12 | 1 | -1/+1 | ||
2023-06-29 | Fixes `node:http` and `node:stream` so `ytdl-core` works. (#3452) | 17 | -256/+405 | ||
* fix crash in readablestate * make node:https request+get actually use https * use a native readablestream in IncomingMessage * tweaks * fix abort crash * emit close by default * remove abort. this isnt a real function * add validate functions, fixup some other requested changes. not done yet * Update WebCoreJSBuiltins.cpp * Update JSReadableState.cpp * Add some missing exports --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-29 | Fixes #3462 (#3465) | 2 | -0/+32 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-29 | handle multiple redirects | 1 | -2/+11 | ||
2023-06-29 | Make `node:os` `tmpdir` more consistent with Node.js | 3 | -30/+35 | ||
2023-06-29 | add setters for `Agent` properties (#3460) | 3 | -202/+111 | ||
* make `Agent` properties public * back to private, added setters * change properties to public | |||||
2023-06-29 | [bundler] avoid printing unnecessary declarations (#3456) | 2 | -79/+41 | ||
* skip declarations without values * tests * deoptimize cjs when decls are needed | |||||
2023-06-29 | cant believe i missed this (#3453) | 1 | -0/+1 | ||
2023-06-29 | Revert "[jest] fix lifecycle hook execution order (#3447)" (#3455) | 1 | -96/+66 | ||
This reverts commit 182e8aa1392af9ba92beccce06f49f8e4593fe5c. | |||||
2023-06-28 | Prevent integer overflow | 1 | -2/+2 | ||
2023-06-28 | Ref the strings | 1 | -2/+9 | ||
2023-06-28 | Add GC test for errors | 3 | -4/+8 | ||
2023-06-28 | Use `bun.String` for `ZigException` (#3451) | 10 | -143/+198 | ||
* Use `bun.String` for `ZigException` * woopsie --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-28 | use main field over module for runtime (#3448) | 2 | -1/+10 | ||
* use main field over module for runtime * move flag to `Resolver` * set `prefer_module_field` in `initWithModuleGraph` | |||||
2023-06-28 | export resolve6 from dns/promises (#3450) | 1 | -0/+2 | ||
2023-06-28 | [jest] fix lifecycle hook execution order (#3447) | 1 | -66/+96 | ||
2023-06-28 | bump! | 1 | -1/+1 | ||
2023-06-28 | Introduce `await Bun.file(path).exists()` (#3446) | 4 | -0/+64 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-28 | [node:http] Stub `_implicitHeader` fn | 2 | -0/+10 | ||
2023-06-28 | Error.prototype.stack gets sourcemapped stacktraces and introduce ↵ | 3 | -38/+200 | ||
Error.appendStackTrace (#3441) * Fix potential crash when reading sourcemapped stack traces * Format & sourcemap Error.prototype.stack * prevent double sourcemapping * Introduce Error.appendStackTrace * Fix source url * hide private stack traces in non-debug builds * fixes #3443 * Bump WebKit * Fix test failure in vm.test * Support new() & add test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-28 | Fix assertion failure in escapeHTML with UTF-16 text (#3436) | 1 | -10/+5 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-28 | Fix .randomInt() export (#3438) | 2 | -2/+2 | ||
2023-06-28 | [install] workaround run-time module loading issue (#3432) | 3 | -27/+46 | ||
2023-06-27 | don't overwrite `__esModule` | 2 | -79/+83 | ||
2023-06-27 | add `__esModule` | 2 | -117/+119 | ||
2023-06-27 | Fix some checks | 1 | -3/+3 | ||
2023-06-27 | add todo comment | 1 | -0/+2 | ||
2023-06-27 | getIfPropertyExists is safer than getDirect (#3391) | 1 | -16/+17 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-06-27 | fix macros | 1 | -1/+1 | ||
2023-06-27 | Regenerate | 1 | -3/+3 | ||
2023-06-27 | Fix `node:util.callbackify` (#3428) | 1 | -2/+3 | ||
* remove the incorrect parameters Close: https://github.com/oven-sh/bun/issues/3424 * fix error code * add callbackify tests * fix function type * ensure `done` is called when error occurred | |||||
2023-06-27 | Update NodeModuleModule.cpp | 1 | -2/+5 | ||
2023-06-27 | Update build-id | 1 | -1/+1 | ||
2023-06-27 | minor build diffs (#3427) | 6 | -48/+48 | ||
2023-06-26 | Fix default export of `"module"` modulebun-v0.6.10 | 1 | -46/+56 | ||
2023-06-26 | fix #3412 (#3422) | 1 | -4/+8 | ||