Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-06-04 | take two | 2 | -22/+145 | ||
2022-06-03 | impl #1 | 1 | -0/+39 | ||
2022-06-03 | temp | 2 | -16/+5 | ||
2022-06-03 | Move streams to it's own file | 6 | -1151/+1504 | ||
2022-06-02 | Handle empty files/blobs | 11 | -396/+54 | ||
2022-06-02 | Fix off by one & exceptions | 1 | -3/+6 | ||
2022-06-02 | Faster ReadableStream | 24 | -641/+711 | ||
2022-06-01 | Update WebKit | 1 | -0/+0 | ||
2022-06-01 | More streams | 10 | -207/+603 | ||
2022-06-01 | `bun:jsc` | 3 | -0/+320 | ||
2022-06-01 | Add releaseWEakrefs binding | 1 | -10/+12 | ||
2022-06-01 | More WebKit updates | 11 | -136/+153 | ||
2022-06-01 | WebKit updates | 18 | -171/+241 | ||
2022-05-30 | faster async/await + readablestream optimizations | 34 | -228/+598 | ||
2022-05-30 | fix segfault | 1 | -2/+1 | ||
2022-05-30 | make jsc bindings a little easier to work with | 2 | -16/+35 | ||
2022-05-30 | [fs.readFile] Improve performance | 1 | -2/+2 | ||
2022-05-30 | Add an extra function | 9 | -32/+205 | ||
2022-05-30 | Implement `Bun.file(pathOrFd).stream()` | 12 | -229/+490 | ||
2022-05-30 | Implement `Blob.stream()` | 19 | -815/+680 | ||
2022-05-30 | start to implement native streams | 21 | -1172/+1673 | ||
2022-05-30 | reading almost works | 19 | -74/+903 | ||
2022-05-30 | [TextEncoder] 3x faster in hot loops | 17 | -126/+737 | ||
2022-05-30 | Implement `Blob.stream()` | 11 | -27/+1834 | ||
2022-05-30 | [bun.js] `WritableStream`, `ReadableStream`, `TransformStream`, ↵ | 154 | -632/+22362 | ||
`WritableStreamDefaultController`, `ReadableStreamDefaultController` & more | |||||
2022-05-30 | Remove generated files from git index (#182) | 2 | -1054/+0 | ||
2022-05-20 | [solid] more progress, no fragments, but still not right | 1 | -0/+5 | ||
2022-05-16 | Still not correct!bun-v0.0.83 | 2 | -3/+3 | ||
2022-05-16 | work around test failure | 2 | -3/+5 | ||
2022-05-16 | Update sqlite3.c | 1 | -1/+1 | ||
2022-05-16 | Fix build error on linux | 1 | -5/+4 | ||
2022-05-16 | prepare for release | 1 | -1/+4 | ||
2022-05-16 | Update JSSQLStatement.cpp | 1 | -14/+19 | ||
2022-05-16 | Copy strings when binding to sqlite | 1 | -3/+3 | ||
2022-05-16 | reset on stmt on error | 2 | -10/+16 | ||
2022-05-16 | `bun:sqlite` (#167) | 21 | -70/+254877 | ||
* :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 | Fix several bugs in napi | 2 | -11/+31 | ||
Closes https://github.com/Jarred-Sumner/bun/issues/163 Closes https://github.com/Jarred-Sumner/bun/issues/162 Closes https://github.com/Jarred-Sumner/bun/issues/161 | |||||
2022-05-11 | [napi] Stub a couple more | 3 | -6/+52 | ||
2022-05-11 | [bun.js] eagerly convert to import.meta.require | 1 | -1/+1 | ||
2022-05-11 | [bun.js] Implement a polyfill for the `detect-libc` npm package | 2 | -0/+53 | ||
2022-05-11 | [bun.js] Implement `import.meta.require` | 8 | -116/+457 | ||
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-11 | [bun.js] Implement `import.meta.resolveSync` | 2 | -1/+77 | ||
2022-05-10 | [napi] Error on import .node | 1 | -29/+1 | ||
2022-05-10 | Update napi.cpp | 1 | -1/+0 | ||
2022-05-10 | [napi] Fix string bug | 2 | -32/+39 | ||
2022-05-10 | [bun.js] Implement `Buffer.byteLength` | 6 | -33/+339 | ||
2022-05-09 | few more napi functions | 1 | -1/+27 | ||
2022-05-09 | [napi] getters & setters work | 1 | -26/+39 | ||
2022-05-09 | Update bindings.cpp | 1 | -4/+6 | ||
2022-05-09 | [napi] Move some code to C++ for perf | 1 | -2/+170 | ||