aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-08-09Update guidenestjs-guideGravatar Colin McDonnell 1-3/+17
2023-08-09Add Nest.js guideGravatar Colin McDonnell 1-0/+53
2023-08-09Updatesguides-3Gravatar Colin McDonnell 1-0/+4
2023-08-09Add support for `bun --revision` (#4027)Gravatar Yash Sharma 4-1/+49
Co-authored-by: Yash Sharma <yashsharma@Yashs-MacBook-Air.local>
2023-08-09Fix constructing buffer from a UTF16 string with the Latin1 encoding. (#4086)Gravatar Ai Hoshino 2-7/+15
Close: #3914
2023-08-09Update SIMDUTF (#4078)Gravatar Jarred Sumner 2-25766/+24092
2023-08-08Update main-worker-file.jsGravatar Jarred Sumner 1-0/+1
2023-08-08Run prettierGravatar Jarred Sumner 1-47/+51
2023-08-08Remove unintentional logs from #4043Gravatar Jarred Sumner 1-69/+1
2023-08-08Fix one of the astro segfaults, also fix bun init version (#4079)Gravatar dave caruso 2-15/+22
* 4->16 * add assertions * fix version stuff
2023-08-08feat(bun:test) add support for test.each() and describe.each() (#4047)Gravatar Jacques 3-16/+324
* rename callback to func * update testscope to handle function arguments * works * big cleanup * works in debug, not release * fix memory issue & update tests * catch & str test * write types for each() & switch tests to ts * rm & typo * move some code around & support describe * review changes
2023-08-08worker tests (#4058)Gravatar dave caruso 7-15/+83
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-08-08feat(bun/test): Implement "toSatisfy" & "toIncludeRepeated" (fwup) (#3651)Gravatar Tiramify (A.K. Daniel) 6-2/+367
* Fix merge issues * oop * make codegen * Fix build issues --------- Co-authored-by: dave caruso <me@paperdave.net>
2023-08-08Set exports to {} in user-constructed CommonJSModuleRecords (#4076)Gravatar dave caruso 2-1/+8
2023-08-08Fix require("console") #3820 (#4073)Gravatar dave caruso 3-2/+9
* Fix #3820 * Add Module (#4074)
2023-08-08Update Worker.cppGravatar Dylan Conway 1-1/+0
2023-08-081. Check if the argument is an empty string in `path.format`. (#4064)Gravatar Ai Hoshino 2-67/+213
2. Avoid duplicating '/' at the beginning of the path. Close: #4005
2023-08-08import bun (#4055)Gravatar Jarred Sumner 8-18/+61
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-08Enable `Headers.prototype.getSetCookie`Gravatar Jarred Sumner 2-25/+11
Fixes #4057
2023-08-08Remove printfGravatar Jarred Sumner 1-1/+0
2023-08-07Add `env` option for `node:worker_threads` (#4052)Gravatar dave caruso 23-185/+723
* almost works * env stuff * test fixes * wtfmove * ok * ok * ref by default * it now does the ref stuff by default * cool
2023-08-07Fix `Bun.hash` functions (#4054)Gravatar jhmaster 4-37/+42
* fix `Bun.hash` functions to behave as expected * update Bun.hash tests * properly test the returned hash * include murmur32v2 * update Bun.hash docs * run fmt
2023-08-07fix `worker.ref()`Gravatar Dylan Conway 1-1/+1
2023-08-07add bun update to help menuGravatar Jarred Sumner 1-0/+2
2023-08-07implement fetching data urls (#4000)Gravatar Dylan Conway 10-21/+244
* fetch data urls * `byteSlice` * deinit slice * allocate `mime_type` string if needed * `content_type_allocated` and uncomment tests * `str_` * createAtom and slice decode result
2023-08-07implement `bun update` (#4046)Gravatar Alex Lam S.L 5-89/+389
- analogous to `npm update` - `bun update <name>` to refresh specified package under `package.json` - `bun update` to refresh all package to latest versions
2023-08-07fix iterating headers with `set-cookie` (#4048)Gravatar Dylan Conway 5-53/+51
* fix iterating headers with `set-cookie` * a test * move work to `HTTPHeaderMap::set` * append set-cookie after sort * remove compare function
2023-08-07WASM test analyzer (#4043)Gravatar Jarred Sumner 25-169/+965
* wasm * WASM test scanner * Update Makefile * Update Makefile * Configurable heap limit * slightly better error * Update js_parser.zig * Update path.test.js * Update node.mjs --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-07Improve plugin docsGravatar Colin McDonnell 3-306/+283
2023-08-07Fix `path.normalize` edge case. (#4042)Gravatar Ai Hoshino 2-1/+2
Close: #4041
2023-08-06Fixes #4001 (#4034)Gravatar Jarred Sumner 3-9/+108
* Avoid a utf8 conversion in isDetached * Fixes #4001 * hit the long url codepath --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-06Fixes #4029 and fixes #4022 (#4032)Gravatar Jarred Sumner 4-29/+34
* Fixes #4029 and Fixes #4022 Fixes #4029 Fixes #4022 * Add test for all the fetches --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-06Fixes #4010 (#4031)Gravatar Jarred Sumner 1-24/+17
* Fixes #4010 * Update websocket_http_client.zig --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-06Update build-idGravatar Jarred Sumner 1-1/+1
2023-08-06Bind require.resolve() (#4030)Gravatar Jarred Sumner 4-13/+47
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-06Fixes #4020Gravatar Jarred Sumner 2-1/+6
2023-08-06Running missing scripts exits with non-0 (#4026)Gravatar Yash Sharma 2-1/+13
Co-authored-by: Yash Sharma <yashsharma@Yashs-MacBook-Air.local>
2023-08-06[install] handle `bun add` of existing `peerDependencies` correctly (#4028)Gravatar Alex Lam S.L 3-22/+98
2023-08-06fix nanbun-v0.7.3Gravatar Jarred Sumner 1-0/+3
2023-08-06Update coverage.mdGravatar Jarred Sumner 1-1/+1
2023-08-06Update lol-htmlGravatar Jarred Sumner 1-0/+0
2023-08-06Fixes #3129 (#4018)Gravatar Jarred Sumner 3-104/+58
* Fixes #3129 * add CloseEvent --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-06Code coverage for `bun test` (#3975)Gravatar Jarred Sumner 32-61/+1211
* WIP code coverage initial commit * almost works * one approach * Code Coverage * Update WebKit * it works but is not yet accurate * skip double ascii check * wrapper * it works but i'm not sure what to do about blocks * hide blocks for now * Update ZigSourceProvider.cpp * Create coverage.md * Update nav.ts --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-06feat: impl `dns.getServers` (#3982)Gravatar Ai Hoshino 5-3/+135
* feat: impl `dns.getServers` Close: #3981 * check return value of `ares_inet_ntop`
2023-08-06Implement --test-name-pattern (#3998)Gravatar dave caruso 8-7/+151
* Fix end not being emitted all the time * stuff * Implement -t * Undo js_printer changes * Undo http changes * Update InternalModuleRegistryConstants.h * Delete unrelated test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-05Fix(cli/init): support subpath entrypoint. (#4002)Gravatar Ai Hoshino 1-1/+8
2023-08-05Remove Bun.plugin transpiler hook, encourage usage of `--preload` instead ↵Gravatar dave caruso 5-243/+1
(#3987) * Remove Bun.plugin transpiler hook * one missing case
2023-08-04Support --dev/-D and support more flags on bun install (#3989)Gravatar Colin McDonnell 5-9/+14
2023-08-04fix macro string escaping (#3967)Gravatar Dylan Conway 4-8/+97
* handle macro escaping * remove printer * use `js_lexer.decodeEscapeSequences`
2023-08-04Fixes #3991Gravatar Jarred Sumner 2-4/+40
Fixes #3991