Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-14 | Make `crypto.getRandomValues()` faster + fix > 1 byte/element typed arrays | 1 | -0/+82 | ||
Fix crypto.getRandomValues() with > 1 byte element typed arrays Fixes https://github.com/oven-sh/bun/issues/1237 | |||||
2022-09-09 | [bun:ffi] Add `f32`, `f64`, `i64`, u64` to `read` | 1 | -2/+174 | ||
2022-09-08 | [bun:ffi] Implement `read.{u8,i8,i16,i32,u16,u32,ptr,intptr}` | 1 | -1/+345 | ||
`read` in `bun:ffi` lets you read data from a pointer without creating a new DataView/ArrayBufferView ``` import {read} from 'bun:ffi'; expect(read.i8(ptr_, i)).toBe(view.getInt8(i, true)); expect(read.i16(ptr_, i)).toBe(view.getInt16(i, true)); expect(read.i32(ptr_, i)).toBe(view.getInt32(i, true)); expect(read.u8(ptr_, i)).toBe(view.getUint8(i, true)); expect(read.u16(ptr_, i)).toBe(view.getUint16(i, true)); expect(read.u32(ptr_, i)).toBe(view.getUint32(i, true)); } ``` | |||||
2022-08-18 | Faster TextDecoder | 1 | -49/+53 | ||
2022-08-17 | Move the crypto hashers to the new bindings | 1 | -53/+49 | ||
2022-08-17 | New Zig <> C++ bindings generator. +20% faster HTTP server | 1 | -52/+53 | ||
2022-08-17 | [bun:ffi] Improve `ptr()` performance and implement code generation for DOMJIT | 1 | -0/+60 | ||