Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-18 | Fix occasional crash with .json() | 1 | -1/+7 | ||
2022-09-18 | Fix broken sending http body | 1 | -1/+3 | ||
2022-09-18 | Update http_client_async.zig | 1 | -6/+12 | ||
2022-09-18 | Add a way to disable timeout and keepalive | 2 | -37/+69 | ||
2022-09-17 | extremely minor perf nitbun-v0.1.12 | 1 | -1/+1 | ||
2022-09-17 | feat: env loader nested values with curly braces (#1246) | 1 | -1/+46 | ||
* [env loader] Add support for nested value with curly braces does not support default values for nested values, e.g., ${undefined:default}, ${undefined:-default}, or ${undefined-default} * fix: minor fix and add more test * [env loader] Improve nested value parsing performance remove unnecessary branching Co-authored-by: Like <like@ekil.sh> | |||||
2022-09-17 | Fix napi module registration | 3 | -6/+17 | ||
Fixes https://github.com/oven-sh/bun/issues/1240 | |||||
2022-09-17 | Handle missing 0\r\n chunk in HTTP client | 1 | -1/+17 | ||
2022-09-17 | Update & configure SSL a little | 5 | -39/+62 | ||
2022-09-17 | Update WebKit | 1 | -0/+0 | ||
2022-09-17 | Explicitly enable ShadowRealm | 1 | -0/+1 | ||
2022-09-17 | Avoid undefined memory | 1 | -1/+1 | ||
2022-09-17 | Smaller stack | 1 | -1/+1 | ||
2022-09-17 | Prevent returning resolved promises | 1 | -1/+3 | ||
2022-09-17 | Fix default hostname | 1 | -1/+1 | ||
2022-09-17 | Partially implement `server.fetch()` on Bun.serve | 2 | -5/+127 | ||
2022-09-17 | [bun install] Add a package index via symlinks to ~/.bun/install/cache | 1 | -0/+14 | ||
2022-09-17 | Fix missing `reason` and `code` in `CloseEvent` | 5 | -41/+45 | ||
cc @paperdave hardcoded right now but at least tells you why it closed | |||||
2022-09-17 | Fix crash when specifying same package name twice in `bun add` | 1 | -2/+7 | ||
Fixes https://github.com/oven-sh/bun/issues/1202 | |||||
2022-09-16 | Make `fetch` throw a `SystemError` on reject | 2 | -9/+8 | ||
2022-09-16 | Fix issue with chunked transfer encoding | 1 | -32/+8 | ||
2022-09-16 | Fix issue with server not starting before exiting | 3 | -2/+10 | ||
2022-09-16 | [bun install] Remove spinloop | 1 | -26/+11 | ||
2022-09-16 | Fix `origin` missing `protocol` in `URL` | 1 | -1/+15 | ||
Fixes https://github.com/oven-sh/bun/issues/1244 | |||||
2022-09-16 | Fix process not exiting | 2 | -11/+7 | ||
2022-09-16 | Fix crash when parsing empty JSON file | 1 | -5/+11 | ||
2022-09-16 | Make new HTTP client more stable | 24 | -620/+915 | ||
2022-09-14 | Use entropy cache for websocket mask | 2 | -60/+17 | ||
2022-09-14 | Fix issue with websockets callback not registering in canary | 1 | -15/+15 | ||
2022-09-14 | woops that was wrong | 1 | -2/+1 | ||
2022-09-14 | Add missing `getRandomValues` to crypto polyfill | 1 | -2/+8 | ||
2022-09-14 | 5x faster crypto.randomValues() | 6 | -24/+136 | ||
2022-09-14 | Make `crypto.getRandomValues()` faster + fix > 1 byte/element typed arrays | 9 | -51/+188 | ||
Fix crypto.getRandomValues() with > 1 byte element typed arrays Fixes https://github.com/oven-sh/bun/issues/1237 | |||||
2022-09-13 | Fix Linux 200ms http client delay | 1 | -1/+1 | ||
https://man7.org/linux/man-pages/man2/send.2.html See the section on MSG_MORE | |||||
2022-09-11 | Fix bug with `Buffer.from([123], "utf8")` | 2 | -3/+9 | ||
cc @worm-emoji | |||||
2022-09-11 | Resolve rope strings in dynamic import paths | 2 | -2/+2 | ||
Fixes https://github.com/oven-sh/bun/issues/1230 | |||||
2022-09-11 | Fix build issue on Linux? | 1 | -1/+1 | ||
2022-09-11 | Hardcode localhost on macOS | 2 | -1/+13 | ||
2022-09-11 | New HTTP client (#1231) | 14 | -742/+1556 | ||
* wip * It mostly works! * Support `bun install` * Support `bun create` * Support chunked transfer encoding * Handle Keep Alive when redirecting to a different domain Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-09 | Fix segfault due to GC and some more helper functions (#1221) | 8 | -193/+292 | ||
* Fix segfault due to GC and some more helper functions * fix upon reviews * add visitChildren | |||||
2022-09-09 | [node:fs] Fix readFileSync on non-regular files | 1 | -0/+42 | ||
Fixes https://github.com/oven-sh/bun/issues/1220 | |||||
2022-09-09 | Fix potential crash when returning an empty string | 2 | -0/+22 | ||
2022-09-09 | [bun:ffi] Add `f32`, `f64`, `i64`, u64` to `read` | 7 | -10/+311 | ||
2022-09-09 | Fix failing tests after ptr change | 2 | -3/+11 | ||
2022-09-09 | [breaking][bun:ffi] Change the pointer representation to be a 52-bit integer | 5 | -33/+46 | ||
Storing the pointer this way enables DOMJIT to be used with a new API in `bun:ffi` that lets you efficiently read values from a pointer without creating a new `DataView` ```js import {read} from 'bun:ffi'; const myPtr = myFunctionThatReturnsAPtr(); // new: const value = read.u32(myPtr, 0); // old: const view = new DataView(toArrayBuffer(myPtr)); const otherValue = view.getUint32(0, true); ``` cc @bwasti this might be a breaking change for that call to `napi_add_finalizer` | |||||
2022-09-08 | Last commit was missing some code | 1 | -13/+211 | ||
2022-09-08 | [bun:ffi] Implement `read.{u8,i8,i16,i32,u16,u32,ptr,intptr}` | 9 | -18/+449 | ||
`read` in `bun:ffi` lets you read data from a pointer without creating a new DataView/ArrayBufferView ``` import {read} from 'bun:ffi'; expect(read.i8(ptr_, i)).toBe(view.getInt8(i, true)); expect(read.i16(ptr_, i)).toBe(view.getInt16(i, true)); expect(read.i32(ptr_, i)).toBe(view.getInt32(i, true)); expect(read.u8(ptr_, i)).toBe(view.getUint8(i, true)); expect(read.u16(ptr_, i)).toBe(view.getUint16(i, true)); expect(read.u32(ptr_, i)).toBe(view.getUint32(i, true)); } ``` | |||||
2022-09-08 | Add native helper functions for Readable and convert ReadableState ↵ | 6 | -138/+405 | ||
properties to getter/setter (#1218) | |||||
2022-09-08 | Make some more globals modifiable | 2 | -89/+65 | ||
2022-09-07 | Fix crash with file descriptor | 1 | -10/+6 | ||