Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-25 | Make Linux implementation work | 3 | -31/+86 | ||
2022-09-25 | Linux implementation | 6 | -23/+180 | ||
2022-09-24 | wip | 24 | -20/+1939 | ||
2022-09-23 | Update package.json | 1 | -1/+1 | ||
2022-09-23 | :camera: | 47 | -242/+150 | ||
2022-09-23 | Update bindings.zig | 1 | -0/+9 | ||
2022-09-23 | Implement `Bun.which` | 2 | -0/+131 | ||
2022-09-23 | Fix issue with react-is in bun-framework-next | 1 | -2/+2 | ||
2022-09-23 | Use JSC heap for .arrayBuffer() | 1 | -4/+1 | ||
2022-09-22 | Update streams.zig | 1 | -7/+2 | ||
2022-09-22 | Faster `Blob` + begin to implement `FileSink` | 32 | -280/+2197 | ||
2022-09-22 | Fix linux build | 2 | -1/+3 | ||
2022-09-22 | Add epoll to list of syscalls that can fail | 2 | -28/+58 | ||
2022-09-22 | Remove a mutex when enqueuing concurrent tasks | 1 | -3/+3 | ||
2022-09-22 | 1 event loop per thread. Instead of 3. | 12 | -188/+230 | ||
uWebSockets and uSockets will need to be upgraded to match the changes. Previously: - Bun had a separate kqueue/eventfd just for async wakeups. - Bun had a separate kqueue/epoll just for reading files non-blocking in the same thread This commit unifies it into one event loop per thread | |||||
2022-09-22 | [breaking] Bun.serve().hostname should return the hostname instead of the ↵ | 1 | -1/+1 | ||
baseURI Previously Bun.serve().hostname was returning the baseURI, effectively the `origin` That was incorrect. Instead, it should be returning the hostname | |||||
2022-09-22 | Fix `bun run foo --` by ignoring `--` | 2 | -2/+29 | ||
2022-09-21 | Fix `preact` & other "classic" jsx transforms, most likely | 3 | -20/+162 | ||
2022-09-21 | Fix crash with `jsxFragment` and `jsxFactory` in tsconfig.json | 1 | -21/+51 | ||
Fixes https://github.com/oven-sh/bun/issues/1269 | |||||
2022-09-21 | Fix crash when creating an empty array | 1 | -1/+1 | ||
2022-09-21 | Increase macro stack size | 1 | -1/+1 | ||
2022-09-20 | Update types.zig | 1 | -1/+3 | ||
2022-09-20 | fixup | 1 | -3/+4 | ||
2022-09-20 | Update WebKit | 1 | -0/+0 | ||
2022-09-20 | Be more careful with process.argv | 1 | -8/+12 | ||
2022-09-20 | fix: add destination to ADD command in Dockerfile (#1268) | 1 | -1/+1 | ||
Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com> Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com> | |||||
2022-09-20 | Allow .env files to define the same key multiple times | 1 | -32/+55 | ||
Fixes https://github.com/oven-sh/bun/issues/1262 | |||||
2022-09-20 | meant to include this in the previous commit | 2 | -1/+5 | ||
2022-09-20 | Add `navigator.userAgent` , `navigator.hardwareConcurrency` | 4 | -0/+66 | ||
2022-09-20 | Fix incorrect `hostname` logic | 2 | -13/+28 | ||
Fixes https://github.com/oven-sh/bun/issues/1261 | |||||
2022-09-19 | Update `process.argv` to more closely match node | 1 | -17/+12 | ||
2022-09-19 | Pass through arguments unmodified after `bun run <script>` or `bun <script>` | 6 | -49/+42 | ||
Fixes https://github.com/oven-sh/bun/issues/231 | |||||
2022-09-19 | Handle nested files more correctly with "imports" in package.json | 1 | -5/+3 | ||
2022-09-19 | Implement `imports` in package.json (`#foo` imports) | 4 | -105/+307 | ||
Fixes https://github.com/oven-sh/bun/issues/478 Fixes https://github.com/oven-sh/bun/issues/234 Fixes https://github.com/oven-sh/bun/issues/822 | |||||
2022-09-19 | Fix broken destructors | 1 | -5/+2 | ||
2022-09-19 | Fix larger bodies | 1 | -0/+6 | ||
2022-09-18 | Improve the perf of reading HTTP request body | 1 | -28/+15 | ||
2022-09-18 | Fix occasional crash with .json() | 1 | -1/+7 | ||
2022-09-18 | Update build-idbun-v0.1.13 | 1 | -1/+1 | ||
2022-09-18 | Fix broken sending http body | 1 | -1/+3 | ||
2022-09-18 | Update http_client_async.zig | 1 | -6/+12 | ||
2022-09-18 | Add a way to disable timeout and keepalive | 2 | -37/+69 | ||
2022-09-17 | extremely minor perf nitbun-v0.1.12 | 1 | -1/+1 | ||
2022-09-17 | feat: env loader nested values with curly braces (#1246) | 1 | -1/+46 | ||
* [env loader] Add support for nested value with curly braces does not support default values for nested values, e.g., ${undefined:default}, ${undefined:-default}, or ${undefined-default} * fix: minor fix and add more test * [env loader] Improve nested value parsing performance remove unnecessary branching Co-authored-by: Like <like@ekil.sh> | |||||
2022-09-17 | Fix napi module registration | 3 | -6/+17 | ||
Fixes https://github.com/oven-sh/bun/issues/1240 | |||||
2022-09-17 | Handle missing 0\r\n chunk in HTTP client | 1 | -1/+17 | ||
2022-09-17 | Update & configure SSL a little | 6 | -39/+67 | ||
2022-09-17 | Update WebKit | 6 | -28/+28 | ||
2022-09-17 | Explicitly enable ShadowRealm | 1 | -0/+1 | ||
2022-09-17 | Update macOS contributing instructions (#1247) | 3 | -4/+6 | ||