Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-15 | Wipu/vjpr/zig-0.10 | 7 | -67/+69 | ||
2022-11-14 | Fix: IterableDir stuff | 2 | -1/+2 | ||
2022-11-14 | revert some string format changes | 1 | -3/+3 | ||
2022-11-14 | Fix: posix_spawnattr_destroy | 1 | -12/+2 | ||
2022-11-14 | Fix: IterableDir stuff | 1 | -1/+1 | ||
2022-11-14 | Fix: unable to evaluate constant expression | 1 | -2/+36 | ||
2022-11-12 | Fix: IterableDir | 3 | -4/+4 | ||
2022-11-12 | Fix: makeOpenPath -> makeOpenPathIterable | 1 | -2/+2 | ||
2022-11-12 | Fix: fmt fixing | 1 | -2/+2 | ||
2022-11-12 | Fix: fmt {s} -> {any} | 15 | -111/+111 | ||
2022-11-12 | Fix: optional string fmt | 1 | -1/+1 | ||
2022-11-12 | Fix: builtin.TypeInfo -> builtin.Type | 6 | -31/+31 | ||
2022-11-12 | Fix: ambiguous errors | 4 | -78/+89 | ||
2022-11-12 | Fix: Ambiguous references | 2 | -3/+15 | ||
2022-11-12 | Fix: openDirIterable | 1 | -6/+0 | ||
2022-11-12 | Fix: unused stuff | 1 | -9/+17 | ||
2022-11-12 | Fix: unused | 6 | -118/+33 | ||
2022-11-12 | Fix: shadowing | 2 | -5/+0 | ||
2022-11-12 | Fix: shadowing | 1 | -19/+19 | ||
2022-11-12 | Fix: shadowing | 2 | -4/+4 | ||
2022-11-12 | Fix: octal has leading zeros | 1 | -4/+4 | ||
2022-11-12 | Fix: invalid builtin function: '@maximum' | 12 | -51/+51 | ||
2022-11-11 | Rename `@maximum` and `@minimum` to `@max` and `@min` | 17 | -84/+84 | ||
2022-11-11 | 2 frames | 1 | -1/+1 | ||
2022-11-11 | Improve error message | 1 | -2/+14 | ||
2022-11-11 | Replace `libbacktrace` with `WTFGetBacktrace` | 3 | -1/+36 | ||
2022-11-10 | Implement `napi_create_external` and `napi_get_value_external` | 5 | -86/+116 | ||
2022-11-10 | Increase stackframe count | 1 | -4/+2 | ||
2022-11-09 | Implement Server.publish() | 1 | -0/+61 | ||
Fixes https://github.com/oven-sh/bun/issues/1417 | |||||
2022-11-09 | Update server.zig | 1 | -0/+3 | ||
2022-11-09 | Fix crash when an exception occurs in open() | 1 | -6/+15 | ||
2022-11-09 | Clone all the strings | 1 | -7/+7 | ||
2022-11-09 | Clone the text | 1 | -1/+1 | ||
2022-11-09 | Remove bun:wrap from stack traces | 1 | -0/+32 | ||
2022-11-09 | Add another log | 1 | -1/+3 | ||
2022-11-09 | Fix broken stacktraces | 2 | -9/+10 | ||
2022-11-09 | fix(child_process): fix execFileSync options.input (#1479) | 1 | -37/+30 | ||
* fix(child_process): fix execFileSync options.input * fix(child_process): debug err, check for Uint8Array too * fix(child_process): fix ArrayBufferIsView call * test(child_process): fix missing toString() call on test result * refactor(child_process): change options.input to input to getter calls | |||||
2022-11-09 | Add bun-types, add typechecking, add `child_process` types (#1475) | 15 | -361/+813 | ||
* Add bun-types to packages * Improve typing * Fix types in tests * Fix dts tests * Run formatter * Fix all type errors * Add strict mode, fix type errors * Add ffi changes * Move workflows to root * Add workflows * Remove labeler * Add child_process types * Fix synthetic defaults issue * Remove docs * Move scripts * Run prettier * Include examples in typechecking * captureStackTrace types * moved captureStackTrace types to globals * Address reviews Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> Co-authored-by: Dylan Conway <dylan.conway567@gmail.com> | |||||
2022-11-09 | Fix #1354 | 2 | -13/+40 | ||
2022-11-09 | Update response.zig | 1 | -3/+2 | ||
2022-11-09 | Error.captureStackTrace implementation (#1476) | 11 | -0/+1276 | ||
* capture stack trace formatting, tests * fix callsite methods, stack formatting or undefined * isNative, tests for callsite methods * Update src/bun.js/bindings/ZigGlobalObject.cpp * Update src/bun.js/bindings/ZigGlobalObject.cpp * template and macros for visitchildren * static strings, handle infinity and clamp stacktracelimit Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> | |||||
2022-11-08 | Update bindings.cpp | 1 | -0/+1 | ||
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")` | 1 | -20/+3 | ||
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 |