Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-05-16 | add a test | 2 | -0/+35 | ||
2022-05-16 | Still not correct!bun-v0.0.83 | 1 | -3/+0 | ||
2022-05-16 | Update serve.test.ts | 1 | -1/+1 | ||
2022-05-16 | reset on stmt on error | 1 | -0/+47 | ||
2022-05-16 | `bun:sqlite` (#167) | 6 | -1/+510 | ||
* :scissors: * Add the slow version * draw the rest of the owl * Fix crash when allocating lots of memory * [Bun.Transipiler] Support passing objects * [JS Parser] Support passing objects to macros via Bun.Transpiler * Update JSSQLStatement.cpp * Embed SQLite * Add SQLite to Dockerfile * [sqlite] Add quick one-off queries without creating a whole object * [sqlite] Add `columnsCount`, rename raw() to `values()`, remove `rebind` * Implement `bun:sqlite` * return null * Fix updating query * Update bun.d.ts * more tests * Support variadic arguments, write tests and add types * Update sqlite.d.ts * Update sqlite.d.ts * latest * Implement `Database.loadExtension` and `Database.setCustomSQLite` * Support `require.resolve` * [napi] Improve string performance * [bun.js] Support some of `node:module` * another test * [sqlite] Support serialize & deserialize * [`bun:ffi`] Implement `CFunction` and `linkSymbols` * [bun.js] Fix crash in `Buffer.from` * Update sqlite.test.js * Document linkSymbols * docs * Update README.md | |||||
2022-05-11 | Add test for import.meta.require | 2 | -1/+11 | ||
2022-05-11 | [bun.js] Implement `import.meta.require` | 1 | -0/+4 | ||
This allows synchronous dynamic loading of `.node`, `.json`, and `.toml` files. It is not a CommonJS require, but it can be used that way so long as the content is not JavaScript. | |||||
2022-05-10 | Add test for Buffer.byteLength | 1 | -0/+7 | ||
2022-05-09 | Add test for __dirname | 1 | -0/+9 | ||
2022-05-08 | Update serve.test.ts | 1 | -1/+4 | ||
2022-05-08 | [bun.js] Fix bug with headers not being sent in `fetch` | 1 | -0/+22 | ||
2022-05-07 | Update zlib.test.js | 1 | -1/+1 | ||
2022-05-07 | [bun.js] Support `gzipSync`, `gunzipSync`, `inflateSync`, `deflateSync` | 1 | -0/+18 | ||
2022-05-05 | E.String gets a Rope | 1 | -2/+64 | ||
2022-05-04 | specifically check utf8 | 1 | -0/+2 | ||
2022-05-04 | make our http test run more | 1 | -18/+21 | ||
2022-05-04 | Safer i64/u64 | 3 | -20/+27 | ||
2022-05-03 | Add docs for FFI | 1 | -66/+66 | ||
2022-05-02 | [bun:ffi] Improve `uint64_t` and `int64_t` performance | 3 | -126/+300 | ||
2022-05-02 | [bun:ffi] Support `i64` and `u64` | 3 | -101/+80 | ||
2022-05-02 | [bun:ffi] Support `double` and `float` | 3 | -53/+50 | ||
2022-05-02 | [bun:ffi] cleanup | 3 | -5/+428 | ||
2022-05-02 | [bun.js] Add `Bun.nanoseconds()` to report time in nanos | 1 | -0/+18 | ||
2022-05-01 | Buffer.compare & Buffer.equal | 1 | -0/+25 | ||
2022-05-01 | [bun.js] Improve `Buffer` creation perf a little | 1 | -2/+40 | ||
2022-05-01 | [bun.js] Implement `Buffer.concat` | 1 | -0/+19 | ||
2022-04-30 | cleanup | 1 | -0/+36 | ||
2022-04-30 | wip | 2 | -65/+273 | ||
2022-04-30 | Update ffi-test.c | 1 | -24/+35 | ||
2022-04-30 | a | 1 | -0/+27 | ||
2022-04-29 | [bun:ffi] it works | 2 | -16/+23 | ||
2022-04-29 | [bun.js] Implement unsafe.{`arrayBufferToPtr`, `arrayBufferFromPtr`, ↵ | 1 | -2/+7 | ||
`bufferFromPtr`} | |||||
2022-04-29 | [bun ffi] Support pointers | 2 | -0/+28 | ||
2022-04-29 | [bun ffi] support `i32`, `i8`, `u8`, `u16`, `i16`, `u32`, `bool` | 2 | -140/+171 | ||
2022-04-29 | more tests for buffer | 1 | -1/+165 | ||
2022-04-29 | ffi test code | 2 | -26/+247 | ||
2022-04-29 | commit more | 1 | -0/+50 | ||
2022-04-29 | some tests but need more | 1 | -0/+25 | ||
2022-04-26 | Most of Buffer.toString | 1 | -0/+12 | ||
2022-04-23 | :camera: | 2 | -8/+2 | ||
2022-04-16 | [JS Parser] Support explicit removing | 1 | -10/+53 | ||
2022-04-16 | [JS Parser] API for removing & replacing exports | 1 | -0/+73 | ||
2022-04-13 | [bun.js] Fix bug with `readdirSync` on folders with less than 32 files | 1 | -7/+82 | ||
Closes https://github.com/Jarred-Sumner/bun/issues/143 | |||||
2022-04-13 | Support digest("base64" | "hex") in the hashings | 2 | -28/+73 | ||
2022-04-12 | [bun.js] Implement Bun.sha1, Bun.sha256, Bun.sha384, Bun.sha512, Bun.sha512_384 | 1 | -0/+28 | ||
2022-04-11 | Add a very simple http server test | 1 | -0/+54 | ||
2022-04-10 | [TOML] Fix toml parsing with multiple keys in object literal | 2 | -0/+16 | ||
Fixes https://github.com/Jarred-Sumner/bun/issues/140 | |||||
2022-04-10 | [bun-types] Make it bundle the types | 1 | -1/+0 | ||
2022-04-09 | Update transpiler.test.js | 1 | -0/+4 | ||
2022-04-06 | [bun.js][breaking] `import.meta.url` is now a file:// url | 1 | -16/+16 | ||