Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-20 | microptimize | 4 | -18/+72 | ||
2022-03-20 | it's `status`, not `statusCode` | 1 | -8/+20 | ||
2022-03-20 | the events, they loop | 11 | -9/+449 | ||
2022-03-19 | Bun.allocUnsafe | 2 | -1/+35 | ||
2022-03-19 | no lazy | 1 | -5/+2 | ||
2022-03-19 | generate separate interop code for bun | 1 | -1/+1 | ||
2022-03-18 | Fix JSON parsing failure | 3 | -1/+18 | ||
2022-03-18 | Set charset=utf-8 for better consistentcy | 1 | -1/+1 | ||
2022-03-18 | Update bindings.zig | 1 | -0/+1 | ||
2022-03-18 | [bun.js] Implement `Response.error` | 1 | -0/+28 | ||
2022-03-18 | [bun.js] Implement `Response.redirect` | 1 | -0/+53 | ||
2022-03-18 | [bun.js] Implement `Response.json` | 1 | -5/+76 | ||
2022-03-18 | [bun.js] Response.prototype.type | 1 | -0/+18 | ||
2022-03-18 | handle ShadowRealm | 1 | -3/+9 | ||
2022-03-18 | var -> const | 1 | -6/+5 | ||
2022-03-18 | Be consistent about reported node version | 1 | -1/+1 | ||
2022-03-18 | [bun.js] Fix missing `.prototype` on builtins | 17 | -284/+457 | ||
2022-03-17 | Fix crash when printing errors that are an unexpected type | 1 | -1/+1 | ||
2022-03-17 | [bun.js] Return empty array instead of null when no router is defined | 1 | -2/+2 | ||
2022-03-17 | [bun.js] Implement `self.reportError` | 2 | -24/+34 | ||
2022-03-17 | Fix missing sentinel in mkdir | 1 | -0/+2 | ||
2022-03-17 | [bun.js] Implement `import.meta.resolve` | 3 | -31/+79 | ||
2022-03-17 | [bun.js] Add some of the fs constants | 1 | -0/+8 | ||
2022-03-17 | Ensure we handle unicode correctly when returning strings for node fs | 1 | -2/+7 | ||
2022-03-17 | Move `Bun` to JSC.API | 6 | -1418/+1663 | ||
2022-03-17 | lil helper method | 1 | -0/+8 | ||
2022-03-17 | only check oncebun-v0.0.73 | 1 | -42/+33 | ||
2022-03-17 | Prevent segfault | 1 | -0/+4 | ||
2022-03-17 | move some code around | 1 | -187/+7 | ||
2022-03-17 | optimize blob.text() | 1 | -83/+185 | ||
2022-03-17 | query_string_map -> url | 10 | -10/+386 | ||
2022-03-16 | Fix crash from checking if something is an object when it is undefinedbun-v0.0.72 | 4 | -12/+12 | ||
2022-03-16 | cleanup error printing | 3 | -29/+17 | ||
2022-03-16 | Revert "Unlimited arguments in process.nextTick" | 1 | -38/+48 | ||
This reverts commit aff9d232b1e7dfbac5fa1b18631aba18ed5f27e7. | |||||
2022-03-16 | Add a way to run serial tasks on a different thread | 1 | -3/+65 | ||
2022-03-16 | fix crash when SyntaxError is thrown and we did not receive an ErrorInstance? | 1 | -18/+25 | ||
2022-03-16 | [bun.js] Fix release-mode test failures in Headers | 1 | -47/+42 | ||
2022-03-15 | Update WebKit | 1 | -0/+0 | ||
2022-03-15 | Fix test failure | 1 | -15/+17 | ||
2022-03-15 | Load .env by default | 1 | -0/+1 | ||
2022-03-15 | zero copy | 1 | -21/+15 | ||
2022-03-15 | Update javascript.zig | 1 | -2/+0 | ||
2022-03-15 | [bun.js] utf8 console.{time, count, timeEnd, profile, profileEnd, count, ↵ | 1 | -16/+16 | ||
countReset} | |||||
2022-03-15 | Fix crash when `Headers.delete` | 1 | -99/+20 | ||
2022-03-14 | Add a fast path to TextDecoder UTF-16 for when you pass a Uint16Array | 1 | -85/+127 | ||
2022-03-14 | FetchEvent's `request` will be disconnected from the real request after the ↵ | 1 | -21/+43 | ||
request is sent | |||||
2022-03-14 | Fix a couple memory leaks in `bun dev` | 10 | -119/+213 | ||
2022-03-14 | Unlimited arguments in process.nextTick | 1 | -48/+38 | ||
2022-03-14 | [bun.js] Fix a memory leak with microtasks | 1 | -1/+3 | ||
2022-03-14 | Handle segfault when console.log'ing stuff that should never make it to ↵ | 1 | -0/+9 | ||
console.log in the first place |