Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-08 | Fixes #1426 | 1 | -1/+4 | ||
2022-11-08 | Fix incorrectly reporting URL sizes to GC in some cases | 1 | -1/+11 | ||
2022-11-08 | Guard against closing the same pid twice | 1 | -3/+10 | ||
2022-11-08 | Only perform this check on macOS | 1 | -8/+14 | ||
2022-11-08 | Fixes #1320 | 1 | -1/+2 | ||
Tests pass now on linux | |||||
2022-11-08 | handle undefined better | 1 | -7/+7 | ||
2022-11-08 | Fix `Buffer.from(text, "base64")` and `Buffer.toString("base64")` | 10 | -1025/+486 | ||
2022-11-08 | Fix child_process tests (#1471) | 1 | -4/+15 | ||
* test(child_process): fix broken tests, add our-assert pkg for testing * test(child_process): replace console.log with debug() * test(child_process): rename our-assert -> node-test-helpers, use Bun.peek for subproc.exited | |||||
2022-11-08 | Fix #1473 | 1 | -1/+1 | ||
2022-11-08 | 20% faster TextDecoder on small inputs | 6 | -4442/+3963 | ||
2022-11-08 | Allow read_only packages to check the cache | 1 | -25/+74 | ||
2022-11-08 | Default enable optional dependencies for remote packages | 1 | -1/+1 | ||
2022-11-08 | Fix error message | 1 | -1/+1 | ||
2022-11-08 | Install optional dependencies for auto-install | 1 | -12/+27 | ||
2022-11-08 | Update crypto.js | 1 | -1/+0 | ||
2022-11-08 | Stack allocate arguments to make it actually threadsafe | 2 | -2/+2 | ||
2022-11-08 | Add missing exports | 1 | -0/+3 | ||
2022-11-08 | Fix Buffer.slice and Buffer.subarray | 3 | -49/+33 | ||
2022-11-07 | cast | 1 | -1/+1 | ||
2022-11-07 | Fix newline normalization | 1 | -5/+6 | ||
credit: @Validark | |||||
2022-11-07 | Credit: @Validark | 1 | -1/+1 | ||
2022-11-07 | Add more tags to be usable with typeof (#1258) | 1 | -2/+2 | ||
2022-11-07 | Remove improper coercion of environment variables (#1256) | 1 | -156/+1 | ||
2022-11-07 | Update ZigGlobalObject.cpp | 1 | -2/+3 | ||
2022-11-07 | Return a rejected promise if there was an error | 1 | -0/+3 | ||
2022-11-07 | Visit all the fields | 2 | -79/+111 | ||
2022-11-07 | clean up some reliability issues with automatic install | 4 | -27/+56 | ||
2022-11-07 | Handle threadsafety issue | 1 | -3/+3 | ||
2022-11-07 | [JS Parser] Do not perform the visit pass if the parse pass had "tolerable" ↵ | 1 | -0/+15 | ||
errors | |||||
2022-11-07 | Maybe fix bug with onExit callback? | 3 | -37/+21 | ||
2022-11-07 | Fix missing error in `process.nextTick` and `queueMicrotask` | 3 | -43/+137 | ||
2022-11-07 | [bun:test] Rejected promises should cause tests to fail | 1 | -0/+9 | ||
2022-11-07 | [bun:test] Implement `done` callback with support for async functions | 6 | -19/+246 | ||
2022-11-07 | [bun:test] Implement `expect` in faster Zig bindings | 12 | -2742/+4175 | ||
2022-11-07 | [bindings generator] Support cached values that do not correspond to ↵ | 2 | -80/+144 | ||
properties and support call() functions | |||||
2022-11-07 | Handle types which do not support getting an object | 1 | -1/+52 | ||
2022-11-07 | Fix UAF in canary | 5 | -81/+100 | ||
2022-11-06 | Automatically install npm packages when running a script in Bun's runtime ↵ | 34 | -1786/+5288 | ||
(#1459) * Update bundler.zig * WIP * Update README.md * Update README.md * wip * Support running scripts without package.json * Add `--no-auto-install` and `--prefer-offline` flags * WIP * wip * Update headers-handwritten.h * WIP * Build fixes * Fix UAF * Update install.zig * Must call .allocate() * Micro-optimization: only call .timestamp() once per tick when installing packages * Support progress bar * Extend the timestamp for package staleness checks to 1 day * Add `--prefer-latest`, `-i` CLI Flags * Fix crash * Support line text manually being set on an Error instance * Add a few more fields for error messages * Fix bug when counting 8 character strings in string builder * Implement error handling for automatic package installs! * Fix crash * Make it say module when there's a slash * Update module_loader.zig * Ban dependency versions in import specifiers when a package.json is present * Remove unused field * Update README.md * Update README.md * Update README.md * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-06 | chore: remove space lookalike (#1465) | 2 | -2/+2 | ||
2022-11-06 | Fixes https://github.com/oven-sh/bun/issues/1451 | 1 | -1/+7 | ||
2022-11-06 | Add way to explicitly coercion object to int32 | 11 | -18/+55 | ||
2022-11-06 | Fix symbol error with `make headers` | 1 | -0/+3 | ||
cc @lawrencecchen | |||||
2022-11-06 | Fix bug when passing ABI Types as integers | 1 | -3/+5 | ||
2022-11-06 | Fixes https://github.com/oven-sh/bun/issues/1462 | 1 | -1/+3 | ||
2022-11-06 | [TypeScript] Fix `export = value` | 1 | -0/+1 | ||
2022-11-06 | feat(child_process): add node:child_process polyfill (#1424) | 2 | -3/+1907 | ||
* feat(child_process): beginning of child_process, add ChildProcess and spawn base case * fix(child_process): remove invalid single arg array syntax (thanks Copilot) * refactor(child_process): unhack Readable.on, move stuff into node:stream * feat(child_process): add more params for spawn, refactor, add fromWeb() to Readable * feat(child_process): finish rest of exports (minus fork), refactor, add tests * cleanup(streams): remove a bunch of unnecessary stuff * cleanup(child_process): remove dead refs * fix(child_process): fix stdio * fix(child_process): change stdio to bunStdio * test(child_process): uncomment timeout test * test(child_process): fix hanging tests * test(child_process): remove stray console.log * test(child_process): fix cwd test for linux * refactor(child_process): divide paths for encoded vs raw execFile stdio * fix(child_process): fix logic for execFile slow path | |||||
2022-11-06 | fix(subprocess): fix typo in spawnSync (#1464) | 1 | -2/+2 | ||
2022-11-05 | Fix fetch api to accept stringifier object (#1460) | 1 | -9/+9 | ||
* fetch accept stringifier object * test: update fetch params tests | |||||
2022-11-03 | Fix crash in setTimeout/setInterval | 1 | -0/+5 | ||
2022-11-03 | Fix incorrect exit code | 1 | -9/+15 | ||