Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-27 | Fix typo in homebrew action | 1 | -1/+1 | ||
2022-10-26 | Prefer `BUN_PORT` over `PORT`bun-v0.2.2 | 1 | -1/+1 | ||
2022-10-26 | Update server.zig | 1 | -1/+1 | ||
2022-10-26 | Make `"tls"` an explicit object we pass instead of implicit top-level options | 2 | -9/+25 | ||
cc @Electroid @colinhacks | |||||
2022-10-26 | againn | 3 | -6/+6 | ||
2022-10-26 | try againn | 2 | -3/+2 | ||
2022-10-26 | Limit concurrency for MacOS Object actions | 3 | -0/+3 | ||
2022-10-26 | temporary fix | 4 | -4/+0 | ||
2022-10-26 | Fixup | 4 | -5/+5 | ||
2022-10-26 | Move this to dependencies so the .a files upload | 3 | -6/+4 | ||
2022-10-26 | Make these tests better | 1 | -2/+2 | ||
2022-10-26 | Limit concurrency for GitHub Actions due to issues with cache poisoning | 4 | -0/+4 | ||
If multiple actions are running, sometimes the cache is poisoned from another action. We need to fix this, but this is an interim measure to make actions less flaky | |||||
2022-10-26 | Fix issue with `CryptoKey` and `SubtleCrypto` constructors | 2 | -27/+10 | ||
2022-10-26 | Minor fixes to README.md (#1395) | 1 | -3/+3 | ||
2022-10-26 | Update Dev Containers extension name (#1393) | 1 | -2/+2 | ||
2022-10-25 | Fix failing macOS build | 4 | -4/+7 | ||
2022-10-25 | Update Makefile | 1 | -2/+1 | ||
2022-10-25 | Update Makefile | 1 | -2/+1 | ||
2022-10-25 | Update Makefile | 1 | -17/+12 | ||
2022-10-25 | Add action to deploy to Homebrew | 1 | -0/+29 | ||
2022-10-25 | Update Makefile | 1 | -0/+1 | ||
2022-10-25 | Fix crash in TCP server | 2 | -20/+27 | ||
2022-10-25 | Update Makefile | 1 | -0/+2 | ||
2022-10-25 | Update README.md | 1 | -1/+1 | ||
2022-10-25 | Fix lexer expected token error (#1387) | 1 | -0/+4 | ||
* fix: lexer expected token error * fix: handle parse error through logs | |||||
2022-10-25 | TCP & TLS Socket API (#1374) | 29 | -40/+4337 | ||
* TCP Socket API * Wip * Add snippet for StringDecoder * Rename `close` to `stop`, replace `close` with `end` * Add a tcp echo server test * Some docs * Update README.md * Fix build * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-24 | oniguruma regex lookbehind and multibyte hex fix (#1363) | 3 | -27/+341 | ||
* handle multibyte hex characters * non extended strings used for toString() and source * add hasIndices flags * more tests for lookbehinds, unicode, and hex characters * handled case when hex doesnt have enough digit, more tests * fix adding characters out of bounds * backslash in character class * compile() returns object * escape special characters in oniguruma character class | |||||
2022-10-24 | Hopefully fix failing build | 1 | -3/+10 | ||
2022-10-24 | Maybe fix a crash | 1 | -1/+1 | ||
2022-10-24 | Update README.md | 1 | -0/+2 | ||
2022-10-24 | Update README.md | 1 | -0/+3 | ||
2022-10-24 | Update README.md | 1 | -1/+1 | ||
2022-10-24 | Update README.md | 1 | -4/+4 | ||
2022-10-24 | `Bun.peek` | 3 | -0/+228 | ||
2022-10-23 | Add `fd` to `SystemError` and fix 2 cases with invalid tagged union | 7 | -9/+42 | ||
cc @sno2 | |||||
2022-10-23 | fix(web): stop segfault on invalid fd error (#1386) | 2 | -1/+15 | ||
2022-10-23 | Preserve trailing newline when updating package.json | 2 | -0/+14 | ||
Fixes https://github.com/oven-sh/bun/issues/1375 | |||||
2022-10-23 | Fix `ReadableStream.prototype.tee` | 3 | -2/+61 | ||
2022-10-23 | Add Web Crypto API (#1384) | 240 | -49/+18727 | ||
* Add Web Crypto API * Duplicate symbols * Update c_cpp_properties.json Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-23 | fix(fetch): stop `new Response(null)` from segfaulting (#1383) | 1 | -8/+1 | ||
* fix(fetch): resolve segfaults with 'Response' * nit: use shorter check | |||||
2022-10-22 | Fix spawn exitcode (#1371) | 2 | -1/+30 | ||
2022-10-21 | Add sqlite to include list | 1 | -1/+4 | ||
2022-10-21 | Codegen | 2 | -16/+25 | ||
2022-10-21 | Treat invalid buffer value as utf8 string | 1 | -2/+3 | ||
2022-10-21 | Add test for `fs.createReadStream` | 1 | -0/+43 | ||
2022-10-21 | Implement `fs.createReadStream`, begin `fs.createWriteStream` | 1 | -3/+621 | ||
2022-10-21 | Make Node Streams work better in Bun | 1 | -140/+214 | ||
2022-10-21 | Fix error handling logic in read() | 1 | -51/+79 | ||
2022-10-21 | Fix bugs in mask boolean values | 2 | -15/+21 | ||
2022-10-21 | Emit errors | 2 | -2/+37 | ||