Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-19 | [internal] Add a function for appending without growing extra data | 1 | -0/+23 | ||
2022-11-19 | Add a log | 1 | -1/+1 | ||
2022-11-19 | Make hidden mimalloc dump report process-wide stats instead of thread | 1 | -1/+1 | ||
2022-11-19 | Introduce `Bun.unsafe.gcAggressionLevel` API | 3 | -0/+47 | ||
2022-11-19 | [internal] Add assertion for freeing global strings | 1 | -4/+5 | ||
2022-11-19 | [napi] Fix missing instance data finalizer | 1 | -0/+5 | ||
2022-11-19 | [fetch] Fix bug with redirecting to a protocol-relative URL | 1 | -5/+21 | ||
2022-11-19 | [fetch] Fix bug with redirects losing the port number | 1 | -7/+15 | ||
2022-11-19 | Update to Mimalloc v2.0.7 | 3 | -111/+203 | ||
2022-11-19 | Fix GC crash when handling rejected promises uncovered via ↵ | 1 | -0/+5 | ||
`BUN_GARBAGE_COLLECTOR_LEVEL` | |||||
2022-11-19 | Fix GC crash in `Bun.file(string).text()`, `Bun.file(string).arrayBuffer()`, ↵ | 1 | -15/+16 | ||
`Bun.file(string).json()` uncovered via `BUN_GARBAGE_COLLECTOR_LEVEL` | |||||
2022-11-19 | Fix GC crash in `Transpiler` found via `BUN_GARBAGE_COLLECTOR_LEVEL` | 1 | -3/+3 | ||
2022-11-19 | [internal] Introduce `JSPromise.Strong` | 1 | -0/+24 | ||
2022-11-19 | Fix GC crash with `WebSocket` uncovered thx to `BUN_GARBAGE_COLLECTOR_LEVEL` | 2 | -25/+63 | ||
2022-11-19 | Introduce `BUN_GARBAGE_COLLECTOR_LEVEL` debug environment variable | 7 | -38/+83 | ||
2022-11-19 | Fix failing test | 1 | -1/+1 | ||
2022-11-19 | Fix a GC issue with `Bun.spawn` | 7 | -1037/+1000 | ||
The `Subprocess` object stays alive until the process exits, even if it's never referenced | |||||
2022-11-19 | Implement a singleton version of `napi_get_instance_data` and ↵ | 3 | -0/+37 | ||
`napi_set_instance_data` Still need to figure out how to do this without adding a layer of indirection to the global object as exposed to NAPI Addons This code is not tested | |||||
2022-11-18 | bun test matchers and tests (#1526) | 16 | -65/+670 | ||
* ignore webkit for cherry-pick * toContain and toBeTruthy * toBe null, undefined, falsy, toHaveProperty, .not * markBindings * remove toHaveProperty, undo ignore webkit, more tests * undo ignore webkit * remove bad tests * check if length property exists for toHaveLength() * fix call signature * handle argument that is not an integer * getLengthOfArray returns u64 * switch to truncate * toHaveLength() edge cases * add toBooleanSlow() * infinity, nan, negative | |||||
2022-11-18 | Fix crash in process.env.FOO = bar that happened sometimes | 12 | -26/+45 | ||
2022-11-16 | `console.timeLog()` but no extra arguments yet | 1 | -3/+21 | ||
2022-11-16 | Mark some more commonjs modules | 2 | -7/+34 | ||
2022-11-16 | Remove incorrect assertion | 1 | -3/+1 | ||
2022-11-16 | Another test | 1 | -0/+9 | ||
2022-11-16 | Make `node:http`.createServer work better | 6 | -39/+178 | ||
2022-11-15 | Fix another assertion failure | 1 | -1/+1 | ||
2022-11-15 | Fix assertion failure | 1 | -0/+4 | ||
2022-11-15 | Handle trailing slash | 1 | -1/+17 | ||
2022-11-15 | Fixes #1390 | 2 | -24/+54 | ||
2022-11-15 | Fixes #1403 | 1 | -11/+16 | ||
cc @Electroid this should fix the fly.io api issue too | |||||
2022-11-15 | Never resize on close | 1 | -2/+6 | ||
2022-11-15 | Handle blocking initial read | 1 | -0/+18 | ||
2022-11-15 | Prevent blocking write() | 1 | -75/+89 | ||
2022-11-15 | Add non-standard headers API types | 3 | -2/+57 | ||
cc @colinhacks @Electroid | |||||
2022-11-15 | Add test for non-standard Headers API additions | 1 | -0/+24 | ||
2022-11-15 | add generated getter/setter type with thisValue (#1513) | 6 | -38/+107 | ||
2022-11-15 | Update ZigGlobalObject.cpp | 1 | -3/+1 | ||
2022-11-15 | Add a test with decently large headers | 1 | -0/+61 | ||
2022-11-15 | Update test types a little | 1 | -2/+2 | ||
cc @colinhacks `test` is an alias of `it` `done` accepts an `error` object | |||||
2022-11-15 | Add missing type | 1 | -0/+5 | ||
2022-11-14 | switch default encoding order (#1510) | 1 | -1/+1 | ||
2022-11-14 | Fix spawn macOS issue | 1 | -7/+11 | ||
2022-11-14 | Fix crash in web crypto. caused by refptr | 3 | -2/+15 | ||
2022-11-14 | Fix crashiness with `process.env` | 2 | -27/+66 | ||
This also makes it a lot slower | |||||
2022-11-14 | Fix string encoding issue in JSC C API usages | 3 | -139/+74 | ||
2022-11-14 | Prevent double-frees in log msgs | 1 | -4/+15 | ||
2022-11-14 | Fix build error | 2 | -6/+1 | ||
2022-11-14 | Bugfixes and perf improvements to child_process | 15 | -192/+416 | ||
2022-11-13 | use `write$NOCANCEL`, more logging | 3 | -12/+42 | ||
2022-11-13 | Add an e2e test | 3 | -0/+52 | ||