Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-10-16 | Improve support for Create React Appbun-v0.0.36jarred/add-git | 1 | -11/+130 | ||
2021-10-16 | Update js_ast.zig | 1 | -0/+17 | ||
2021-10-16 | Support GitHub repositories, transform package.json to better fit Bun's usage | 2 | -403/+1179 | ||
2021-10-16 | more strings | 2 | -3/+28 | ||
2021-10-16 | Ensure `self` is always defined | 1 | -0/+1 | ||
2021-10-16 | Fix edgecase in Transfer-Encoding chunked | 1 | -3/+2 | ||
2021-10-15 | Latest | 3 | -10/+1178 | ||
2021-10-15 | Merge branch 'main' of github.com:Jarred-Sumner/bun | 4 | -1177/+12 | ||
2021-10-15 | Bump s2n-tls | 1 | -0/+0 | ||
2021-10-15 | Linux build fixes | 5 | -1177/+12 | ||
2021-10-15 | Cleanup makefile to get libiconv setup for linux | 2 | -2415/+0 | ||
2021-10-15 | Polish | 11 | -198/+2887 | ||
2021-10-14 | :sparkle: | 5 | -221/+286 | ||
2021-10-14 | Support local templates | 4 | -17/+381 | ||
2021-10-14 | Update router.zig | 1 | -0/+212 | ||
2021-10-14 | Support passing an absolute path | 1 | -105/+203 | ||
2021-10-14 | Add doc explaining bun-create | 2 | -2/+2 | ||
2021-10-14 | `bun create react app` is almost done | 11 | -38/+1238 | ||
2021-10-13 | [fetch] Slight perf improvement | 1 | -0/+4 | ||
2021-10-13 | `--turbo` mode for fetch cli, which disables sending TLS shutdown | 1 | -1/+1 | ||
2021-10-13 | [fetch] Support Transfer-Encoding: chunked | 4 | -37/+130 | ||
2021-10-13 | Add TLS 1.3 support, improve fetch() HTTPS performance | 14 | -170/+560 | ||
2021-10-12 | s2n.zig | 1 | -0/+598 | ||
2021-10-12 | Add s2n, remove openssl | 2 | -0/+0 | ||
2021-10-11 | Add OpenSSL :cry: | 1 | -0/+0 | ||
2021-10-11 | Add libarchive bindings | 3 | -0/+1100 | ||
2021-10-10 | Missing fixture | 1 | -0/+46 | ||
2021-10-10 | [fetch] Add support for gzip & deflate to the http client | 13 | -1093/+1449 | ||
Powered by Cloudflare's zlib fork | |||||
2021-10-08 | Fix bug where occasionally unary expressions would simplify incorrectly due ↵ | 2 | -30/+19 | ||
to an undefined memory issue | |||||
2021-10-08 | Yet Another Packed Struct Bug | 1 | -8/+35 | ||
2021-10-07 | Fix edgecase when bundling JavaScript that references ESM exported functions ↵ | 1 | -12/+5 | ||
before they're defined | |||||
2021-10-07 | Schema | 4 | -0/+23 | ||
2021-10-07 | Add `--port` CLI flag for setting a port instead of `--origin`. `--port` has ↵ | 2 | -2/+10 | ||
higher precedence than `--origin` so that proxies can work | |||||
2021-10-07 | Add CSS HMR benchmarkjarred/bench | 1 | -0/+0 | ||
2021-10-06 | unamebun-v0.0.34 | 1 | -3/+3 | ||
2021-10-06 | Missing `@TypeOf` | 1 | -1/+1 | ||
2021-10-06 | oops | 1 | -2/+2 | ||
2021-10-06 | HTTP paths must resolve from ./$PROJECT_ROOT unless explicitly marked absolute. | 1 | -15/+15 | ||
This fixes the issue with deeply nested PNPM workspace packages. Happened when using @emotion/react inside a PNPM workspace when @emotion/react was hoisted to the workspace root but react was in a child node_modules folder. It would fail to resolve `"react/jsx-dev-runtime"` because it didn't exist in any node_modules folder relative to `@emotion/react`'s real path. | |||||
2021-10-06 | Fix JSX transform edgecase with static children | 2 | -29/+21 | ||
2021-10-06 | Add support for reading JSX config from tsconfig.json | 8 | -19/+75 | ||
2021-10-05 | analytics is good enough for now | 10 | -144/+415 | ||
2021-10-05 | Async analytics works now | 4 | -24/+50 | ||
Requests are ~60 bytes and the thread mostly sleeps, so it should be pretty low overhead overall. | |||||
2021-10-05 | [fetch] Fix bug with HTTP request bodies | 1 | -5/+13 | ||
2021-10-05 | Add `BUN_DISABLE_ANALYTICS` flag to disable analytics and automatically ↵ | 6 | -1896/+2048 | ||
disable analytics when running inside `hyperfine` | |||||
2021-10-05 | Simple analytics | 7 | -0/+1066 | ||
2021-10-04 | memfd experiment did not yield perf gains on Linuxjarred/fix-bunbun-on-wsl | 2 | -5/+4 | ||
I suspect the reason why is because we were already using tmpfs. So it was already writing to an in-memory file. O_TMPFILE doesn't seem to do anything for us either here. | |||||
2021-10-04 | Don't pass O_EXCL | 1 | -2/+2 | ||
2021-10-04 | O_TMPFILE | 1 | -4/+2 | ||
2021-10-04 | memfd_create does not actually make it faster | 2 | -31/+8 | ||
2021-10-04 | Attempt to optimize `bun bun` on Linux by using memfd_create and copying the ↵ | 3 | -18/+135 | ||
resulting file via sendfile() |