Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-21 | Add test for wildcard import without an extension | 1 | -10/+19 | ||
2022-11-21 | Wildcard imports map (#1483) | 3 | -93/+228 | ||
* Log extra info on missing file extension * Improve error messages for missing /index.js on import * Remove unnecessary function parameter path * Add loadPackageImports function to match esbuild * Add support for pattern trailer import syntax * Fix review comments | |||||
2022-11-21 | [bun:test] Add test for returning MAX_SAFE_INTEGER | 2 | -0/+11 | ||
2022-11-21 | fix oniguruma regex character properties (#1528) | 2 | -7/+108 | ||
* fix for character properties * cleanup tests * cleanup comments * i - 2 >= 0 | |||||
2022-11-21 | specific error for invalid flag, correct position' (#1537) | 1 | -2/+9 | ||
' | |||||
2022-11-21 | [bun:sqlite] fix truncating to int32 in results (now truncates to int52) | 1 | -3/+13 | ||
TODO: bigint | |||||
2022-11-20 | Make it yellow | 2 | -1/+5 | ||
2022-11-20 | Update jest.zig | 1 | -1/+1 | ||
2022-11-20 | Print a count | 2 | -24/+50 | ||
2022-11-20 | Bump! | 5 | -7/+7 | ||
2022-11-20 | [bun:test] Fix bug with returning a non-promise object in a `test` or `it` ↵ | 1 | -25/+27 | ||
function | |||||
2022-11-20 | Fix spurious rejected promise handler calls | 5 | -7/+25 | ||
2022-11-20 | Assert count | 1 | -7/+8 | ||
2022-11-20 | fix protocol relative urls again | 2 | -14/+46 | ||
2022-11-20 | Enable previously failing GC tests | 1 | -68/+82 | ||
2022-11-20 | mild clean up | 4 | -22/+22 | ||
2022-11-20 | [internal] Implement `visitAdditionalChildren` | 3 | -65/+326 | ||
2022-11-20 | [streams] Fix memory leak affecting React SSR and more | 3 | -1037/+900 | ||
2022-11-20 | run clang-format on JSSink | 1 | -0/+1 | ||
2022-11-20 | [jsx] Disable `jsxs` | 3 | -32/+53 | ||
2022-11-20 | Typo | 1 | -1/+1 | ||
2022-11-20 | Add another test | 1 | -0/+41 | ||
2022-11-20 | Fix flaky test | 1 | -1/+5 | ||
2022-11-20 | [fetch] Add optimization for chunked encoding | 6 | -21/+107 | ||
2022-11-20 | [TCP] Make `Socket` more careful about GC | 5 | -8/+81 | ||
2022-11-19 | [streams] Fix exception in `WritableStream` | 3 | -43/+39 | ||
cc @Electroid | |||||
2022-11-19 | [streams] Fix exception in streams with 1 item that sometimes occurred | 2 | -5/+31 | ||
2022-11-19 | Set aggression level in tests | 1 | -3/+5 | ||
2022-11-19 | Fix freezing test due to calling GC 36,000 times | 1 | -14/+21 | ||
2022-11-19 | [fetch] Fix sporadic data corruption bug in HTTP client and add fast path | 6 | -133/+167 | ||
- This removes memory pooling from the HTTP client which sometimes caused invalid memory to be written to the response body. - This adds a fast path for small HTTP/HTTPS responses that makes it a single memory allocation for the response body, instead of copying & allocating a temporary buffer cc @Electroid | |||||
2022-11-19 | Add a couple more tests for redirects | 1 | -0/+76 | ||
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 |