aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-07-25[bun install] Fix `AccessDenied` error when installing some packagesGravatar Jarred Sumner 1-2/+12
Fixes https://github.com/oven-sh/bun/issues/728 Fixes https://github.com/oven-sh/bun/issues/867 Fixes https://github.com/oven-sh/bun/issues/135 Credit @SheetJSDev
2022-07-25Support for completion in Bash (#403)Gravatar Victory Osikwemhe 1-6/+52
* Add bash completions for optional flags (long and short options) * extend bash completion to support options with specific requirements * fix: remove global variables * fix: rename cur_file to cur_word * add c,rm,i aliases * fix: add --help flag to create alias * fix: --loader options bug * fix --backend and linting * linting * add support for file completion for `bun run` as well as few changes also * chore(): use _ as prefix for function names * fix undefined function * feat(wip): implement installation for bash bun completion in zig * fix(): use separate paths instead of slice of paths * rename _bun.bash to bun.completion.bash for compatability with oh-my-bash * change `bun.completion.bash` to filename
2022-07-25feat(install): use this repository (#582)Gravatar Hyro 1-1/+3
https://github.com/oven-sh/bun instead of https://github.com/Jarred-Sumner/bun-releases-for-updater
2022-07-24Wire up `console.log(new Blob)`Gravatar Jarred Sumner 1-0/+5
2022-07-24Print < 512 bytes as "N bytes" instead of "0.0"Gravatar Jarred Sumner 1-1/+6
2022-07-24Improve `console.log(new Blob([123]))` outputGravatar Jarred Sumner 1-7/+95
2022-07-24Make errors always print `error:` unless the name of the error is `Error`Gravatar Jarred Sumner 1-3/+9
2022-07-23[Bun.js] support for util.TextEncoder (#844)Gravatar Soney Mathew 1-0/+4
* [Bun.js] support for util.TextEncoder * [Bun.js] test for util.TextEncoder
2022-07-23feat: added info, info_bod and success method to wrap type of messages (#845)Gravatar darker 1-12/+23
2022-07-22Merge pull request #800 from alexkuz/fix-install-script-colors--645Gravatar Michell Brito 1-4/+6
2022-07-22[bun install] Fix issue with URL path when sending requestGravatar Jarred Sumner 1-1/+55
2022-07-22Fix missing function bugbun-v0.1.5Gravatar Jarred Sumner 1-0/+1
2022-07-22`bun install` use custom BUN_CONFIG_REGISTRY port (#823)Gravatar SheetJSDev 1-1/+1
2022-07-22[docker] wipGravatar Jarred Sumner 1-4/+6
2022-07-22[bun dev] Add flag to force hmrGravatar Jarred Sumner 1-3/+3
2022-07-22[bun upgrade] Fix version display name for canary buildGravatar Jarred Sumner 1-1/+34
2022-07-22[bun upgrade] Fix name used in temporary dir for canary buildsGravatar Jarred Sumner 2-6/+26
2022-07-22Mention WSL version requirementGravatar Jarred Sumner 1-0/+2
2022-07-22[bun upgrade] Implement `--canary` and `BUN_CANARY=1`Gravatar Jarred Sumner 2-18/+86
2022-07-22Update WebKitGravatar Jarred Sumner 1-0/+0
2022-07-22Canary builds (Linux) (#824)canaryGravatar Jarred Sumner 7-8/+12
* wip * WIP: * WIP * WIP * WIP * WIP * WIP * Update WebKit * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Update WebKit * WIP * WIP * WIP * WIP * Workaround missing system calls * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Fix baseline detection * WIP * strip debug symbol * Auto-generate canary build Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-07-20feat(node/fs): implement more stat methods (#807)Gravatar Carter Snook 1-5/+46
2022-07-20fix install script colorsGravatar Alexander 1-4/+6
2022-07-19fix(api): stop double-free of prop array (#793)Gravatar Carter Snook 2-8/+6
2022-07-19refactor(installer): renovate install script (#745)Gravatar Wallunen 1-122/+162
2022-07-17[js] Set `global` and `self`Gravatar Jarred Sumner 1-0/+3
Fixes https://github.com/oven-sh/bun/issues/768
2022-07-17[js] Fix invalid unicode codepoint in errorGravatar Jarred Sumner 1-1/+1
2022-07-17Fixes https://github.com/oven-sh/bun/issues/769Gravatar Jarred Sumner 1-1/+8
Not tested
2022-07-17url.js use util_isString (#772)Gravatar SheetJSDev 1-3/+3
2022-07-17[bun install] Forgot to commit `isCI` functionGravatar Jarred Sumner 1-0/+7
2022-07-17fix printing message for thrown non-error objects (#764)Gravatar Alexander Kuznetsov 1-56/+41
* fix printing message for thrown non-error objects * fine tuning error formatting * more fine tuning error formatting
2022-07-17[bun install] Implement `--no-verify` flag to skip verifying integrity of ↵Gravatar Jarred Sumner 1-2/+16
downloaded packages
2022-07-17[bun install] Rename `skip_verify` -> `skip_verify_installed_version_number`Gravatar Jarred Sumner 1-8/+8
2022-07-17[bun install] Implement `--no-progress` to disable the progress barGravatar Jarred Sumner 2-8/+36
2022-07-17[bun install] Improve performance of integrity hashingGravatar Jarred Sumner 2-15/+20
By using optimized BoringSSL implementations
2022-07-17fix scoped packages name resolution (#760)Gravatar Alexander Kuznetsov 1-2/+8
2022-07-15[parser] Fix symbol collision with requireGravatar Jarred Sumner 3-37/+36
Fixes https://github.com/oven-sh/bun/issues/674 Fixes https://github.com/oven-sh/bun/issues/382
2022-07-15[bun.js] Fix non-ascii latin1 string handling in console.logGravatar Jarred Sumner 6-73/+158
Closes https://github.com/oven-sh/bun/issues/738 Closes https://github.com/oven-sh/bun/issues/737
2022-07-13fix(napi): gurantee -> guarantee (#683)Gravatar Ikko Ashimine 1-2/+2
2022-07-13add node:http Server polyfill (#572)Gravatar evan 2-2/+556
* node:http polyfill * remove @ts-ignore * reuse emitter instance * requested changes * cleanup Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2022-07-13fix(env_loader): Off by one error (#668)Gravatar Finn R. Gärtner 1-1/+1
2022-07-13switch from stream-browserify to readable-streamGravatar evanwashere 3-27/+1512
2022-07-13Add newline to symbols (fixes warning)Gravatar Jarred Sumner 1-1/+1
2022-07-12[http] Fix assertionGravatar Jarred Sumner 1-1/+1
2022-07-12[bun.js] GC more stringsGravatar Jarred Sumner 2-4/+8
2022-07-12[bun install] Handle case that should really never happenGravatar Jarred Sumner 1-10/+12
2022-07-12[bun.js] Fix GC bug with `fetch`Gravatar Jarred Sumner 1-68/+29
2022-07-12[napi] Implement `napi_get_property_names`Gravatar Jarred Sumner 3-1/+30
2022-07-12refactor(exports.zig): Fix WebSocketHTTPSClient var name (#598)Gravatar Ryan Russell 1-3/+3
Signed-off-by: Ryan Russell <git@ryanrussell.org>
2022-07-12fix(env_loader): Ignore spaces before equals sign (#602)Gravatar Finn R. Gärtner 1-0/+9
* fix(env_loader): Ignore spaces before equals sign * fix(env_loader): Change the type of key_end to usize