Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-10 | Fix fs:promises | 2 | -280/+209 | ||
2023-01-10 | Add some missing types | 1 | -1/+11 | ||
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 | 3 | -19/+51 | ||
2023-01-10 | attempt (unsuccessfully) to improve c++ build time | 17 | -134/+152 | ||
2023-01-10 | [js parser] Do not inline regexp literals | 1 | -1/+1 | ||
2023-01-10 | Fix circular dependency in make headers | 1 | -0/+4 | ||
2023-01-10 | Changes from upgrading webkit | 6 | -51/+48 | ||
2023-01-10 | buffer.toString(undefined) should be UTF-8 | 1 | -0/+5 | ||
2023-01-10 | use `strings.hasPrefixComptime()` (#1755) | 14 | -115/+92 | ||
2023-01-10 | Fix missing c-ares dep in dev build (#1754) | 1 | -1/+1 | ||
2023-01-09 | refactor(readline/promises): re-export readline.promises from readline (#1748) | 2 | -239/+183 | ||
* refactor(readline/promises): re-export readline.promises from readline/promises * fix(readline): don't export Readline from `readline` * perf(readline): return Promise.reject immediately after failed validation | |||||
2023-01-09 | Update child_process-node.test.js | 1 | -6/+1 | ||
2023-01-09 | Update test_command.zig | 1 | -2/+2 | ||
2023-01-09 | Add very simple dns test | 2 | -1/+34 | ||
2023-01-09 | fixup | 1 | -5/+5 | ||
2023-01-09 | Update test_command.zig | 1 | -3/+3 | ||
2023-01-09 | Rename | 1 | -18/+21 | ||
2023-01-09 | Update test_command.zig | 1 | -6/+8 | ||
2023-01-09 | [bun:test] Implement `test.root` configuration option | 3 | -0/+21 | ||
2023-01-09 | Fix frozen IO stuff | 1 | -1/+1 | ||
2023-01-09 | [bun:test] Implement `test.skip` | 3 | -65/+210 | ||
2023-01-09 | [dns] Fix UAF | 1 | -15/+27 | ||
2023-01-09 | Fixes https://github.com/oven-sh/bun/issues/1533 | 2 | -6/+29 | ||
2023-01-09 | Add test for Bun.listen throwing | 1 | -0/+17 | ||
2023-01-09 | Make autotick logic more consistent | 1 | -5/+1 | ||
2023-01-09 | Cleanup code in expectToThrow | 2 | -12/+25 | ||
2023-01-09 | Cleanup error handling in Bun.listen | 3 | -90/+149 | ||
2023-01-09 | check for isEmpty or !isCell | 4 | -51/+50 | ||
2023-01-09 | Handle 0 in isCell | 1 | -1/+4 | ||
2023-01-09 | Add test for expect().toThrow | 1 | -0/+24 | ||
2023-01-08 | Revert "lazily create buffer/string slices (#1735)" | 2 | -120/+33 | ||
This reverts commit e2ed31b7e79d1cb4fca492de3be0324afc9fd3a1. | |||||
2023-01-09 | fix string encoding detection | 1 | -1/+1 | ||
2023-01-08 | Add welcome page when viewed from a browser | 2 | -30/+46 | ||
2023-01-08 | [internal] Fix checking for Error object | 14 | -72/+259 | ||
2023-01-08 | [internal] Regenerate code | 1 | -46/+69 | ||
2023-01-08 | [internal] Fix type casting in Zig bindings | 1 | -3/+4 | ||
2023-01-08 | feat(node:readline): add node:readline and node:readline/promises (#1738) | 10 | -161/+5673 | ||
* feat(readline): WIP: add readline * test(helpers): add deepStrictEqual helper * feat(readline): add readline & readline/promises to loader * fix(node:events): emit newListener on new listener added * feat(readline): finish readline cb interface, add tests * fix(stream): fix Transform.end() * fix(node-test-helpers): correct throws behavior, improve how all asserts work * feat(readline/promises): add readline/promises * feat(assert): add assert.match * test(readline): uncomment more tests * fix(readline): MaxCeil -> MathCeil 🤦 * fix(readline): export promises from node:readline * fix(readline): temp fix for circular dependency * cleanup(readline): remove console.log * fix(readline): change true -> 0 for CommonJS export * perf(readline): micro-optimizations with some getters * perf(readline): lazy load isWritable * cleanup(readline): rename debug flag env var to BUN_JS_DEBUG | |||||
2023-01-08 | Add napi to process.versions | 1 | -1/+2 | ||
2023-01-08 | Update process.versions | 6 | -40/+111 | ||
2023-01-08 | We don't statically link iconv | 1 | -1/+0 | ||
2023-01-08 | cleanup | 2 | -1/+4 | ||
2023-01-07 | Workaround macOS issue | 3 | -20/+37 | ||
2023-01-07 | Document `connectError` | 1 | -0/+15 | ||
2023-01-07 | [Bun.connect] Fix bug where connect() Promise wouldn't reject on a ↵ | 7 | -31/+102 | ||
connection error | |||||
2023-01-07 | Update uws | 1 | -0/+0 | ||
2023-01-07 | Linux build | 1 | -12/+3 | ||
2023-01-07 | Change error | 1 | -1/+1 | ||
2023-01-07 | Return ENOTFOUND instead of ENOTERROR | 1 | -1/+1 | ||
2023-01-07 | Fix segfault on Linux when getaddrinfo returns an error\nSee ↵ | 1 | -1/+4 | ||
https://github.com/ziglang/zig/pull/14242 |