Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-02-15 | workaround prisma's usage of `eval("__dirname")` | 1 | -1/+23 | ||
2023-02-15 | some cleanup | 2 | -15/+9 | ||
2023-02-15 | ED25519 WebCrypto (#1971) | 12 | -11/+1167 | ||
* ed25519 * Register the algorithm * try this? * fix(webcrypto): fix ed25519 keypair gen (#1985) * fix: import and export ed25519 (#2004) * fix(webcrypto): allow import and export ed25519 * fix(webcrypto): copy exportkey * fix(webcrypto): fix use after stack free --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Derrick Farris <mr.dcfarris@gmail.com> | |||||
2023-02-14 | Fix up async_hooks polyfill | 1 | -8/+33 | ||
2023-02-14 | Add temporary polyfill for async_hooks | 5 | -108/+324 | ||
2023-02-14 | :mask: async_hooks | 1 | -0/+4 | ||
2023-02-14 | [install] link network-delayed `.bin` scripts correctly (#2076) | 2 | -15/+20 | ||
2023-02-14 | don't break esbuild | 6 | -71/+47 | ||
2023-02-14 | Add workaround for `tls` and `worker_threads` | 2 | -1/+55 | ||
2023-02-14 | [install] improve `package.json` validation (#2074) | 5 | -104/+146 | ||
- report error and exit gracefully instead of crashing | |||||
2023-02-14 | [WIP] fix(node:fs): export `fs.ReadStream` and `fs.WriteStream` (#1798) | 1 | -71/+141 | ||
* fix(node:fs): export fs.WriteStream and fs.ReadStream * test(node:fs): add tests for fs.ReadStream and fs.WriteStream * test(node:fs): prevent opening fd w/o closing * fix(node:fs): hack ESM export for fs streams to keep lazy loading * fix(node:fs): = -> ===, fix hasInstance comparison * test(node:fs): add test that actually checks that re-exported streams work * fix(fs): eagerly load our slow lazy fns (thanks esm) * fix(fs): employ @alexlamsl 's constructor w/o new trick on Read/WriteStream | |||||
2023-02-14 | Reject with error when invalid fetch() body (#2047) | 1 | -11/+18 | ||
* Reject with error when invalid fetch() body Resolves #2014 * Make sure the test actually throws an exception * Update fetch error paths to return TypeErrors | |||||
2023-02-13 | fix(FormData): make String explicit, thanks @dylan-conway (#2065) | 1 | -1/+1 | ||
2023-02-13 | fix(FormData): add string literal operator (#2064) | 1 | -2/+2 | ||
2023-02-13 | Add pretty printer for FormData | 4 | -1/+92 | ||
2023-02-13 | Add dynamic port assigning to Bun.serve (#2062) | 2 | -5/+11 | ||
2023-02-13 | feat(napi): add `napi_get_value_bigint_words` (#2061) | 3 | -0/+44 | ||
* feat(napi): add `napi_get_value_bigint_words` * fix(napi): handle `napi_get_value_bigint_words` arr too small | |||||
2023-02-13 | Fixes https://github.com/oven-sh/bun/issues/1456 | 7 | -1/+132 | ||
2023-02-13 | Implement `FormData` (#2051) | 29 | -46/+2194 | ||
* Backport std::forward change * Implement `FormData` * Fix io_darwin headers issue * Implement `Blob` support in FormData * Add test for file upload * Fix bug with Blob not reading Content-Type * Finish implementing FormData * Add FormData to types --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-02-12 | [install] support `git://github.com/` dependencies (#2059) | 1 | -4/+13 | ||
2023-02-12 | Return server on listen (#2057) | 1 | -0/+2 | ||
2023-02-12 | Set `require("module").globalPaths` to empty array | 1 | -0/+3 | ||
https://github.com/oven-sh/bun/issues/1641#issuecomment-1427017442 | |||||
2023-02-11 | fix string corruption in FS entry cache (#2055) | 5 | -50/+31 | ||
2023-02-11 | fix segfault during non-install script execution (#2045) | 7 | -218/+75 | ||
2023-02-11 | [WIP] feat(napi): add `napi-fatal-exception` (#2054) | 3 | -0/+17 | ||
* feat(napi): add `napi-fatal-exception` * fix(napi): fatal_exception - add symbol to list, don't optimize away | |||||
2023-02-11 | Fixes https://github.com/oven-sh/bun/issues/2052 | 2 | -44/+9 | ||
2023-02-11 | Backport std::forward change | 50 | -292/+292 | ||
2023-02-10 | Fix #631: bun add throwing JSON lexer bug (#2041) | 1 | -1/+1 | ||
* add double-backslash to list of control chars * update test * stderr as string | |||||
2023-02-10 | update to simdutf 3.2.0 | 2 | -341/+859 | ||
thanks @lemire | |||||
2023-02-10 | fix(string_immutable): fix `toUTF16Alloc` for bindgen w/ `use_simdutf = ↵ | 1 | -1/+2 | ||
false` (#2042) | |||||
2023-02-10 | [install] fix duplicate check on `peerDependencies` (#2039) | 1 | -8/+7 | ||
fixes #2037 | |||||
2023-02-10 | drop ASCII double-scan and other minor clean-ups (#2038) | 1 | -137/+86 | ||
2023-02-10 | Enable https://github.com/tc39/proposal-set-methods | 1 | -0/+1 | ||
2023-02-09 | Upgrade WebKit | 2 | -1/+1 | ||
2023-02-09 | fix assertion failure (#2033) | 1 | -5/+2 | ||
2023-02-09 | [simdutf] workaround validation OOB access (#2031) | 1 | -14/+9 | ||
2023-02-09 | Workaround https://github.com/simdutf/simdutf/issues/213 | 1 | -3/+4 | ||
2023-02-09 | [streams] fix byte accounting (#2029) | 1 | -30/+26 | ||
fixes #1939 | |||||
2023-02-09 | [bun:test] Auto-import jest globals in test files | 7 | -0/+99 | ||
2023-02-08 | move some code around | 1 | -64/+91 | ||
2023-02-08 | handle more cases with util.isErrorbun-v0.5.6 | 2 | -2/+7 | ||
2023-02-08 | [install] pick `latest` tagged version by default (#2016) | 2 | -17/+6 | ||
* [install] pick `latest` tagged version by default fixes #1993 * update `package.json` the same way as `npm | |||||
2023-02-08 | utf16 to utf8 conversion validation (#2001) | 1 | -7/+37 | ||
* use replacement character for invalid surrogate pairs * return index of non-ascii * non-allocating case * edge cases * function rename * oops * get length once, index counter | |||||
2023-02-08 | Fix minor version bug for README.md (#2013) | 1 | -1/+1 | ||
Addresses issue #2012 and corrects the minor version to the current minor version | |||||
2023-02-08 | [install] assorted fixes & improvements (#2011) | 6 | -211/+231 | ||
- take `peerDependencies` into account during package placement - do not recursively resolve `workspaces` (matches `npm`) - link binaries to non-root packages correctly - prune empty nodes during dependency tree construction - support non-standard `workspace:` specifier | |||||
2023-02-07 | cleanup | 2 | -5/+13 | ||
2023-02-06 | set the type | 3 | -3/+3 | ||
2023-02-06 | default not configurable | 1 | -1/+1 | ||
2023-02-06 | Mark things as DontDelete | 1 | -153/+153 | ||
2023-02-06 | Throw on process.binding | 2 | -1/+15 | ||