Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-03 | simdutf ascii validation is about 20% faster on arm64 than our zig simd ↵ | 1 | -0/+3 | ||
@Vector version | |||||
2022-11-29 | import everything from "bun" where possible | 1 | -2/+2 | ||
2022-11-27 | Cleanup some of the encoding code | 1 | -7/+20 | ||
2022-11-27 | [console.log] Fix printing latin1 supplement characters at runtime | 1 | -19/+50 | ||
Fixes https://github.com/oven-sh/bun/issues/1031#issuecomment-1236092120 | |||||
2022-11-26 | Fix build issue | 1 | -2/+2 | ||
2022-11-26 | Update string_immutable.zig | 1 | -1/+1 | ||
2022-11-26 | Faster UTF16 -> UTF8 and UTF8 -> UTF16 (#1552) | 1 | -1/+71 | ||
* Fix freezing test * Add SIMDUTF * More micro bench snippets * Update .gitattributes * Update .gitattributes Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-23 | possibly more reliable Bun.spawn (#1547) | 1 | -4/+6 | ||
* wip * wip * Fix bug with stdin * zig fmt * seems to work! * Update streams.test.js Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-22 | [FileSystemRouter] Fix failing tests | 1 | -0/+29 | ||
2022-11-21 | Wildcard imports map (#1483) | 1 | -0/+42 | ||
* 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-20 | Make it yellow | 1 | -0/+4 | ||
2022-11-08 | 20% faster TextDecoder on small inputs | 1 | -21/+16 | ||
2022-10-16 | Fail earlier when there are encoding errors | 1 | -25/+37 | ||
2022-10-08 | Fix https://github.com/oven-sh/bun/issues/1263 | 1 | -0/+11 | ||
What happened: when moving to uSockets for the http client, I forgot to call `SSL_set_tlsext_host_name` and uSockets apparently doesn't do that | |||||
2022-09-05 | Support async `onLoad` callbacks in `Bun.plugin` | 1 | -0/+37 | ||
2022-08-29 | Fixed JSBuffer write issues (#1175) | 1 | -1/+1 | ||
2022-08-25 | Fix incorrect `indexOfNotChar` causing sourcemaps bugs | 1 | -7/+9 | ||
2022-08-10 | Fix console.log with typed arrays | 1 | -3/+8 | ||
2022-08-07 | [bun install] Implement `bun link` | 1 | -0/+38 | ||
2022-08-04 | Implement `bun init` subcommand | 1 | -1/+1 | ||
2022-08-03 | Don't use SIMD in non-SIMD builds | 1 | -11/+11 | ||
2022-07-22 | [bun upgrade] Implement `--canary` and `BUN_CANARY=1` | 1 | -1/+1 | ||
2022-07-15 | [bun.js] Fix non-ascii latin1 string handling in console.log | 1 | -24/+39 | ||
Closes https://github.com/oven-sh/bun/issues/738 Closes https://github.com/oven-sh/bun/issues/737 | |||||
2022-07-09 | fix: update build files to latest Zig version | 1 | -6/+14 | ||
2022-07-07 | [strings] Fix typo in string_immutable.zig | 1 | -1/+1 | ||
occurences -> occurrences | |||||
2022-07-04 | [strings] Minor performance optimizations to SourceMaps | 1 | -19/+26 | ||
2022-07-02 | [strings] Optimize TextEncoder a little more | 1 | -143/+110 | ||
2022-06-29 | [strings] Faster latin1 -> UTF8 length count | 1 | -14/+29 | ||
2022-06-29 | Make HTTP web streams faster | 1 | -235/+277 | ||
2022-06-29 | [encoder] Fix non-ascii latin1 characters | 1 | -76/+343 | ||
2022-06-27 | Use less undefined | 1 | -1/+9 | ||
2022-06-22 | Explicitly tag memory ownership for escapeHTML | 1 | -30/+45 | ||
2022-06-09 | small perf improvements to encoding | 1 | -43/+37 | ||
2022-06-07 | Web Streams API (#176) | 1 | -25/+721 | ||
* [bun.js] `WritableStream`, `ReadableStream`, `TransformStream`, `WritableStreamDefaultController`, `ReadableStreamDefaultController` & more * Implement `Blob.stream()` * Update streams.test.js * Fix sourcemaps crash * [TextEncoder] 3x faster in hot loops * reading almost works * start to implement native streams * Implement `Blob.stream()` * Implement `Bun.file(pathOrFd).stream()` * Add an extra function * [fs.readFile] Improve performance * make jsc bindings a little easier to work with * fix segfault * faster async/await + readablestream optimizations * WebKit updates * More WebKit updates * Add releaseWEakrefs binding * `bun:jsc` * More streams * Update streams.test.js * Update Makefile * Update mimalloc * Update WebKit * Create bun-jsc.test.js * Faster ReadableStream * Fix off by one & exceptions * Handle empty files/blobs * Update streams.test.js * Move streams to it's own file * temp * impl #1 * take two * good enough for now * Implement `readableStreamToArray`, `readableStreamToArrayBuffer`, `concatArrayBuffers` * jsxOptimizationInlining * Fix crash * Add `jsxOptimizationInline` to Bun.Transpiler * Update Transpiler types * Update js_ast.zig * Automatically choose production mode when NODE_ENV="production" * Update cli.zig * [jsx] Handle defaultProps when inlining * Update transpiler.test.js * uncomment some tests Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-05-20 | [solid] more progress, no fragments, but still not right | 1 | -0/+4 | ||
2022-05-19 | [wip] Solid.js support for Bun! | 1 | -0/+24 | ||
2022-05-10 | [napi] Fix string bug | 1 | -1/+1 | ||
2022-05-10 | [bun.js] Implement `Buffer.byteLength` | 1 | -14/+104 | ||
2022-05-05 | E.String gets a Rope | 1 | -0/+1 | ||
2022-04-26 | Most of Buffer.toString | 1 | -2/+32 | ||
2022-04-25 | 2x - 10x faster `TextEncoder` & `TextDecoder` | 1 | -111/+59 | ||
2022-04-25 | some of buffer | 1 | -27/+133 | ||
2022-04-16 | [JS Parser] Support explicit removing | 1 | -1/+1 | ||
2022-04-06 | [bun.js] Add stdout, stderr, stdin to Bun and support sendfile() + splice() | 1 | -0/+2 | ||
2022-03-31 | Delete unused | 1 | -5/+0 | ||
2022-03-26 | Add a function for moving slices from a type | 1 | -0/+85 | ||
2022-03-14 | handle min ascii 16 | 1 | -7/+5 | ||
2022-03-14 | Reference-counting for `Blob` and `Headers` | 1 | -0/+25 | ||
2022-03-11 | Source Maps for client-side errors & columns | 1 | -0/+13 | ||
2022-03-10 | [bun.js] Support sourcemaps! | 1 | -3/+8 | ||