Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-08 | Stack allocate arguments to make it actually threadsafe | 1 | -2/+0 | ||
2022-11-02 | [bun:ffi] Implement `JSCallback` so C can call into JS | 1 | -12/+19 | ||
2022-09-09 | Fix failing tests after ptr change | 1 | -1/+9 | ||
2022-09-09 | [breaking][bun:ffi] Change the pointer representation to be a 52-bit integer | 1 | -9/+18 | ||
Storing the pointer this way enables DOMJIT to be used with a new API in `bun:ffi` that lets you efficiently read values from a pointer without creating a new `DataView` ```js import {read} from 'bun:ffi'; const myPtr = myFunctionThatReturnsAPtr(); // new: const value = read.u32(myPtr, 0); // old: const view = new DataView(toArrayBuffer(myPtr)); const otherValue = view.getUint32(0, true); ``` cc @bwasti this might be a breaking change for that call to `napi_add_finalizer` | |||||
2022-09-06 | workaround test failure | 1 | -8/+2 | ||
2022-08-28 | support pass null as NULL ptr (#1160) | 1 | -0/+6 | ||
2022-08-28 | [bun:ffi] Fix crash with uint64_t | 1 | -4/+4 | ||
2022-07-31 | Fix: move bun, Webkit and zig urls from Jarred-Sumner to oven-sh. (#944) | 1 | -1/+1 | ||
* Fix: move bun, Webkit and zig urls from Jarred-Sumner to oven-sh. * Fix: changed urls from types.d.ts to base bun-types repo. | |||||
2022-07-10 | Update GitHub URL to match new repo URL (#547) | 1 | -1/+1 | ||
* Update repo URLs * GitHub URL update * Revert accidental URL changes | |||||
2022-07-05 | Fix bug in ffi | 1 | -1/+1 | ||
2022-06-26 | wip ReadableStream for HTTP(s) Server | 1 | -1/+5 | ||
2022-06-22 | change the directory structurejarred/rename | 1 | -0/+252 | ||