Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
2022-03-10 | woops | 1 | -1/+1 | ||
2022-03-10 | console.log(<JSX>) support | 1 | -23/+54 | ||
2022-03-09 | 69% perf improvement for long string literals | 1 | -19/+77 | ||
2022-03-07 | source maps optimizations | 1 | -20/+91 | ||
2022-03-06 | source maps work for app code in `bun dev`! | 1 | -20/+312 | ||
2022-03-04 | upgrade zigjarred/upgrade-zig-2 | 1 | -1/+1 | ||
2022-02-24 | Expose TextEncoder & TextDecoder globally | 1 | -16/+724 | ||
2022-02-18 | Use an `enum` for `Ref` instead of a buggy packed struct | 1 | -0/+1 | ||
Fixes a printing bug with `Symbol` | |||||
2022-02-18 | Simple dead code elimination | 1 | -0/+13 | ||
2022-02-14 | [bun.js] formatter | 1 | -10/+39 | ||
2022-02-02 | `path.relative` passes Node's tests (which also fixed bugs) | 1 | -2/+0 | ||
2022-01-19 | `fs.*Sync()`, `bun wiptest`, and More ™ (#106) | 1 | -0/+43 | ||
* very very wip * almost ready to fix the errors * Update identity_context.zig * Update base.zig * [bun test] It runs successfully * Remove unnecessary call * [Bun.js] Improve JS <> Zig unicode string interop This fixes longstanding unicode bugs with `console.log` & `fetch`. I believe @evanwashere reported this first awhile ago * [Bun.js] Implement `Object.is()` binding and a way to set a timeout for script execution * Update PLCrashReport.zig * [Bun.js] Make `console.log` more closely match Node.js and Deno * [Bun.js] Implement formatting specifier for console.* * Implement `console.clear()` * bug fix * Support console.clear() * Buffer stderr * [bun test] Begin implementing Node.js `fs` * Update darwin_c.zig * Implement more of `fs` * `mkdir`, `mkdir` recursive, `mkdtemp` * `open`, `read` (and pread) * Move some things into more files * Implement readdir * `readFile`, `readLink`, and `realpath` * `writeFile`, `symlink`, `chown`, `rename`, `stat`, `unlink`, `truncate` * `lutimes` * Implement `SystemError` and begin wiring up the `fs` module * `"fs"` - Most of the arguments / validation * `fs` - Rest of the arguments / validations * Begin wiring up the `fs` module * Fix all the build errors * support printing typed arrays in console.log * It...works? * Support `require("fs")`, `import fs from 'fs';`, `import * as fs from 'fs'` * Fix a couple bugs * get rid of the crash reporter for now * Update fs.exports.js * [bun.js] slight improvement to startup time * [bun.js] Improve error message printing * [Bun.js] Add `Bun.gc()` to run the garbage collector manually and report heap size * [Bun.js] Add Bun.generateHeapSnapshot to return what JS types are using memory * [Bun.js] Add `Bun.shrink()` to tell JSC to shrink the VM size * Improve encoding reader * [bun.js] Improve callback & microtask performance * Update node_fs.zig * Implement `console.assert` * simple test * [Bun.js] Prepare for multiple globals/realms to support testing * Create callbacks-overhead.mjs * Update http.zig * [Bun.js] Implement `queueMicrotask` * Add test for queueMicrotask * :sleepy: * [Bun.js] Implement `process.versions`, `process.pid`, `process.ppid`, `process.nextTick`, `process.versions`, * Implement `process.env.toJSON()` * [Bun.js] Improve performance of `fs.existsSync` * :nail_care: * [Bun.js] Implement `process.chdir(str)` and `process.cwd()`, support up to 4 args in `process.nextTick` * Make creating Zig::Process lazy * Split processi nto separte file * [Bun.js] Node.js Streams - Part 1/? * [Bun.js] Node.js streams 2/? * WIP streams * fix crash * Reduce allocations in many places * swap * Make `bun` start 2ms faster * Always use an apiLock() * libBacktrace doesn't really work yet * Fix crash in the upgrade checker * Clean up code for importing the runtime when not bundling * :camera: * Update linker.zig * 68! * backtrace * no, really backtrace * Fix * Linux fixes * Fixes on Linux * Update mimalloc * [bun test] Automatically scan for {.test,_test,.spec,_spec}.{jsx,tsx,js,cts,mts,ts,cjs} | |||||
2021-12-31 | little testbun-v0.0.64 | 1 | -0/+8 | ||
2021-12-31 | Add unrolled case insensitive string comparison | 1 | -0/+21 | ||
2021-12-30 | Upgrade to latest Zig, remove dependency on patched version of Zig (#96) | 1 | -13/+12 | ||
* Prepare to upgrade zig * zig fmt * AllocGate * Update data_url.zig * wip * few files * just headers now? * I think everything works? * Update mimalloc * Update hash_map.zig * Perf improvements to compensate for Allocgate * Bump * :camera: * Update bun.lockb * Less branching * [js parser] Slightly reduce memory usage * Update js_parser.zig * WIP remove unused * [JS parser] WIP support for `with` keyword * Remove more dead code * Fix all the build errors! * cleanup * Move `network_thread` up * Bump peechy * Update README.md | |||||
2021-12-16 | `bun add` and `bun remove` sorta works now. but not fast enough! | 1 | -0/+1 | ||
2021-12-16 | [bun install] Lockfile saves. Starting to implement diffing | 1 | -0/+51 | ||
2021-12-16 | Mimalloc cleanup | 1 | -1/+9 | ||
2021-12-16 | [bun install] some things install | 1 | -2/+2 | ||
2021-12-16 | Update string_immutable.zig | 1 | -0/+4 | ||
2021-11-04 | Update string_immutable.zig | 1 | -0/+7 | ||
2021-11-04 | [JS Parser] Decode JavaScript-like input as WTF-8 instead of UTF-8 | 1 | -40/+78 | ||
2021-11-03 | [JSX] Fix regression with JSX entities | 1 | -0/+2 | ||
2021-11-01 | [internal] Tiny changes that will eventually make it easier to update zig | 1 | -1/+1 | ||
2021-10-28 | - Fix consistentcy issue with runtime hash | 1 | -122/+65 | ||
- Fix edgecases in strings.eqlComptime by simplifying the implementation | |||||
2021-10-25 | Fix JSX unicode handling, slightly improve perf | 1 | -2/+56 | ||
2021-10-25 | Fix all known string encoding bugs | 1 | -25/+28 | ||
2021-10-24 | [internal] Handle allocation failure | 1 | -1/+1 | ||
2021-10-23 | Rewrite the CodepointIterator to fix some bugs | 1 | -81/+89 | ||
2021-10-20 | rewrote most of the router | 1 | -28/+11 | ||
2021-10-18 | Starting to rewrite the router to fix some bugs and support catch-all + ↵ | 1 | -10/+47 | ||
optional routes | |||||
2021-10-16 | more strings | 1 | -2/+27 | ||
2021-10-14 | Support local templates | 1 | -0/+8 | ||
2021-09-27 | Fix bug in string eql check that was never used before | 1 | -1/+1 | ||
2021-09-26 | Basic macro impl | 1 | -4/+4 | ||
2021-09-21 | Fix the compiler errors | 1 | -2/+2 | ||
2021-09-21 | Most of the ESM resolution algorithm (still untested) | 1 | -0/+17 | ||
2021-09-21 | `endsWithAny` -> `endsWithAnyComptime` | 1 | -1/+1 | ||
2021-09-21 | Parse "exports" field from package.json (WIP) | 1 | -0/+13 | ||
2021-09-20 | Fix parsing/printing unicode identifiers, switch to UTF-8 for prefilled ↵ | 1 | -80/+86 | ||
strings, remove eagerly loading identifier_name | |||||
2021-09-20 | Fix how error lines with strings are highlighted | 1 | -0/+21 | ||
2021-09-12 | Fix "browser" map resolution, _almost_ fix symbol collisions, cache absolute ↵ | 1 | -0/+4 | ||
paths for file entries | |||||
2021-09-09 | currentjarred/fetch-experiment | 1 | -0/+15 | ||
2021-09-09 | fetc h!!! | 1 | -2/+2 | ||
2021-09-07 | WIP error css | 1 | -0/+17 | ||
Former-commit-id: 36f03bf491cf274f68361e334a706538464ee271 |