Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-12 | set remaining indexes (#1785) | 2 | -10/+19 | ||
2023-01-12 | 0 initialize remaining indexes in array (#1783) | 1 | -0/+2 | ||
* 0 initialize remaining indexes in array * switch to memset | |||||
2023-01-12 | fix missing error page | 1 | -3/+3 | ||
2023-01-12 | reset string decoder on end (#1782) | 2 | -2/+27 | ||
2023-01-12 | pointer type | 1 | -1/+1 | ||
2023-01-12 | woops | 1 | -0/+4 | ||
2023-01-12 | Reduce amount of cloning | 1 | -5/+11 | ||
2023-01-12 | more careful | 1 | -2/+2 | ||
2023-01-12 | [bindings] Make `isObject` align with `JSC::isObjectType` | 1 | -7/+5 | ||
2023-01-12 | [bun:test] Support `async` in `expect(async () => { await 1; }).toThrow()` | 2 | -6/+67 | ||
2023-01-12 | fix(bun-test): test title in results (#1753) | 1 | -1/+1 | ||
* fix(bun-test): test title in results * missed case * clean up import * respond to reviews | |||||
2023-01-12 | missing | 1 | -22/+45 | ||
2023-01-11 | Update ImportMetaObject.cpp | 1 | -1/+1 | ||
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 | 8 | -53/+103 | ||
2023-01-11 | [node:net] Hopefully fix unix sockets | 1 | -1/+4 | ||
2023-01-10 | Support socketPath | 1 | -7/+22 | ||
2023-01-10 | potentially support tls in some cases | 1 | -7/+34 | ||
2023-01-10 | [node:tls] Stub out just enough to make it load | 2 | -0/+154 | ||
2023-01-10 | make it size_t | 2 | -10/+10 | ||
2023-01-10 | Make `Buffer` mockable | 1 | -83/+83 | ||
2023-01-10 | Fix flipped order | 1 | -3/+5 | ||
2023-01-10 | Implement Buffer swap16, swap32, swap64 (#1659) | 1 | -3/+85 | ||
* Implement Buffer swap16, swap32, swap64 * Initial incorporation of feedback - Use constexpr - Clean up the indexing - Check for detached - Use suggested text for exception text | |||||
2023-01-10 | [TCPSocket] Add a log for write() | 1 | -1/+3 | ||
2023-01-10 | Fix fs:promises | 2 | -280/+209 | ||
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-10 | attempt (unsuccessfully) to improve c++ build time | 17 | -134/+152 | ||
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) | 3 | -7/+5 | ||
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 | Add very simple dns test | 1 | -1/+1 | ||
2023-01-09 | Fix frozen IO stuff | 1 | -1/+1 | ||
2023-01-09 | [bun:test] Implement `test.skip` | 1 | -36/+92 | ||
2023-01-09 | [dns] Fix UAF | 1 | -15/+27 | ||
2023-01-09 | Fixes https://github.com/oven-sh/bun/issues/1533 | 1 | -5/+5 | ||
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 | 1 | -90/+121 | ||
2023-01-09 | check for isEmpty or !isCell | 4 | -51/+50 | ||
2023-01-09 | Handle 0 in isCell | 1 | -1/+4 | ||
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 | 12 | -61/+196 | ||
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) | 6 | -5/+3402 | ||
* 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 |