Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-02-13 | Add dynamic port assigning to Bun.serve (#2062) | 1 | -5/+2 | ||
2023-02-13 | Implement `FormData` (#2051) | 1 | -0/+1 | ||
* Backport std::forward change * Implement `FormData` * Fix io_darwin headers issue * Implement `Blob` support in FormData * Add test for file upload * Fix bug with Blob not reading Content-Type * Finish implementing FormData * Add FormData to types --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-02-06 | Mark some things as not configurable | 5 | -1/+5 | ||
2023-02-03 | Add test for propagating exception | 1 | -1/+1 | ||
2023-02-03 | Introduce `await Bun.sleep(ms)` | 1 | -13/+19 | ||
2023-01-31 | Re-run prettier after changes | 1 | -11/+2 | ||
2023-01-31 | Handle invalid input in clear* timer | 1 | -2/+6 | ||
2023-01-29 | [breaking] Add `binaryType` option to Bun.connect & Bun.listen | 1 | -4/+18 | ||
This is a breaking change because the default is `Buffer`, but previously the default was `Uint8Array`. While `Buffer` is a subclass of `Uint8Array`, it still technically is a breaking change because `slice` in `Uint8Array` is not semantically identical to `slice` in `Buffer` cc @colinhacks, the .d.ts changes I made here aren't great. | |||||
2023-01-27 | fix sentinel mismatches | 1 | -1/+1 | ||
2023-01-27 | ensure name is allocated with `toSliceClone` (#1917) | 1 | -37/+34 | ||
* ensure name is allocated with `toSliceClone` * shorten toSliceClone | |||||
2023-01-27 | fix(Express.js) Express.js try to use function as hostname (#1914) | 1 | -0/+4 | ||
2023-01-26 | Implement all pending resolve methods in DNS (#1903) | 1 | -204/+555 | ||
* initial steps to create generic resolve * add soa * add naptr * add naptr * add mx and fix naptr * add resolve caa * fix Caa test * fix toJS from caa * add resolveNs * add resolvePtr * fix resolvePtr test * add resolveCname * add resolve rrtype options (still missing ANY) * fix Naptr * fix drainPendingCares | |||||
2023-01-23 | Update transpiler.zig | 1 | -1/+1 | ||
2023-01-23 | Add a comment | 2 | -9/+6 | ||
2023-01-23 | Upgrade Bun.Transpiler to use new bindings | 3 | -201/+243 | ||
2023-01-22 | fix unrefOnNextTick | 3 | -15/+4 | ||
2023-01-22 | Add tests for async failure | 1 | -3/+3 | ||
2023-01-22 | [EventEmitter] Preserve `this` in event emitter callbacks | 1 | -2/+2 | ||
2023-01-22 | feat(dns) resolveSrv (#1870) | 1 | -4/+362 | ||
* initial steps * in-progress resolveSrv support * fix memory leak and ZigGlobalObject * promise.resolve + fix priority and weight mistake * fix node dns export * little better test * add poll_ref to keep alive loop in callback for resolveSrv and lookup * add test for error case in resolveSrc * fix Bun.dns.resolveSrv type | |||||
2023-01-21 | Zig stdlib change | 1 | -4/+4 | ||
2023-01-21 | Support query string parameters in module resolution | 1 | -1/+20 | ||
2023-01-20 | one less hash table | 1 | -2/+13 | ||
2023-01-20 | Fix assertion failure with boringssl messages | 1 | -1/+1 | ||
2023-01-17 | Fix lifetime issue in require.resolve | 1 | -0/+14 | ||
2023-01-17 | cleanup error message | 1 | -2/+2 | ||
2023-01-17 | set available | 1 | -14/+15 | ||
2023-01-16 | Fixes https://github.com/oven-sh/bun/issues/1654 | 1 | -1/+1 | ||
2023-01-15 | fix handler reset in `Server.reload()` (#1801) | 1 | -2/+2 | ||
2023-01-13 | move more things | 4 | -13/+13 | ||
2023-01-13 | Split some things into more files and use bun namespace instead of import more | 6 | -19/+19 | ||
2023-01-12 | [Bun.listen] Add flag to close all connections | 1 | -4/+13 | ||
2023-01-12 | [Bun.serve] Add flag to close all connections | 1 | -12/+41 | ||
2023-01-12 | fix missing error page | 1 | -3/+3 | ||
2023-01-12 | woops | 1 | -0/+4 | ||
2023-01-12 | missing | 1 | -22/+45 | ||
2023-01-11 | [Bun.serve] Introduce publishToSelf boolean on websocket: {} config object | 1 | -45/+81 | ||
2023-01-11 | `require.resolve` in the runtime should use CommonJS export conditions | 1 | -3/+18 | ||
2023-01-10 | [TCPSocket] Add a log for write() | 1 | -1/+3 | ||
2023-01-10 | don't call add_server-name if len is not >0 | 1 | -1/+2 | ||
2023-01-10 | Allow `tls: true` in Bun.connect | 2 | -18/+45 | ||
2023-01-09 | [dns] Fix UAF | 1 | -15/+27 | ||
2023-01-09 | Cleanup error handling in Bun.listen | 1 | -90/+121 | ||
2023-01-08 | Add welcome page when viewed from a browser | 2 | -30/+46 | ||
2023-01-08 | [internal] Fix checking for Error object | 3 | -19/+19 | ||
2023-01-07 | Workaround macOS issue | 1 | -1/+12 | ||
2023-01-07 | [Bun.connect] Fix bug where connect() Promise wouldn't reject on a ↵ | 1 | -10/+23 | ||
connection error | |||||
2023-01-07 | Fix segfault on Linux when getaddrinfo returns an error\nSee ↵ | 1 | -1/+4 | ||
https://github.com/ziglang/zig/pull/14242 | |||||
2023-01-07 | Mark more things as only mac | 1 | -0/+8 | ||
2023-01-07 | Don't include this symbol on linux | 1 | -0/+3 | ||
2023-01-07 | Implement DNS module (#1691) | 1 | -0/+1371 | ||
* Boilerplate for DNS stuff * Add c-ares * lookup * make * Implement dns.lookup * Create c-ares * wip * normalize * repro * Revert "repro" This reverts commit 8b93e0c295b335b8882a9601da47720348549beb. * Implement macOS `getaddrinfo_async_start` * embiggen * Update string_immutable.zig * Update Makefile * alright * Update .gitignore * Add types * more ccache * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update bun.d.ts Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> |