Dylan Conway
08c2148000
fix(windows): console-iterator.test.ts fix ( #8879 )
...
* fix console iterator tests on windows
* rename and size only when bytes is active
* assert size > 0
2024-02-14 17:59:19 -08:00
James Anderson
00cc2eae67
Fix tsconfig path longest prefix matching ( #8892 )
2024-02-14 08:23:45 -08:00
Dylan Conway
82a07430ed
fix(windows): use allocated memory for \\\\.\\NUL replacement on windows ( #8889 )
...
* use allocated memory for /dev/null
* deinit
2024-02-13 22:23:54 -08:00
Georgijs
636a8f1f0a
Prevent open but inactive http connections from keeping alive http server ( #8829 )
...
* unref uv handle after creating uws socket
* unref sockets between http requests to allow the event loop to exit
* remove stale comment
2024-02-13 22:22:44 -08:00
7f8ddd
05d33c39cd
fix: Add charset to text/css mime type ( #8825 )
...
* Add charset to text/css mime type
Standard: https://www.iana.org/assignments/media-types/text/css
More info: https://stackoverflow.com/questions/70643383/which-mime-types-contain-charset-utf-8-directive
Fixes the warning in Edge that says to include utf-8 when Bun returns a stylesheet.
* Add test
* Change "content type" to "mime-type"
2024-02-13 20:47:02 -08:00
dave caruso
aba37525a6
windows: fix bundler reliability and nuke WSL-based codegen scripts ( #8890 )
...
* bruh
* yeaaahhhhhhhhhhhhhhhhhhhhhhhhhhh
* revisions
* yeah
* fix
* make no codegen do less things
2024-02-13 20:33:24 -08:00
dave caruso
04a6ebaa17
fix: allow opening win32 device files in node:fs and bun.file ( #8801 )
...
* support opening device files in node:fs and bun.file
* tidy tests
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-02-13 18:24:14 -08:00
Augie
7405c5a615
feat: make curl install script run the windows installer (if run through cygwin) ( #8875 )
...
This updates the *nix install script to run the Windows Powershell install script if it detects it's on Windows.
2024-02-13 11:35:17 -08:00
Jarred Sumner
d0903f6b71
Cherry-pick 570fe762c8 ( #8830 )
...
This cherry-picks 570fe762c8
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com >
Co-authored-by: dave caruso <me@paperdave.net >
2024-02-13 10:58:27 -08:00
Ciro Spaciari
d0b6218bdf
fix(fetch) redirects bodies should be handled ( #8874 )
...
* redirects bodies should be handled
* [autofix.ci] apply automated fixes
* Update src/http.zig
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-02-12 21:14:00 -08:00
Meghan Denny
8afcb39055
windows: more tests are passing ( #8873 )
2024-02-12 17:52:14 -08:00
Meghan Denny
b2a697f264
scripts/codegen.ps1: update wsl call ( #8871 )
2024-02-12 16:46:26 -08:00
Zack Radisic
aca936515a
Make glob work for windows ( #8382 )
...
* Fix some related to paths and string encoding
* Fix relative paths with glob
* Fix scan tests
* Fix glob scan test
* [autofix.ci] apply automated fixes
* Fix leak test
* clean up post merge
* [autofix.ci] apply automated fixes
* clean up glob getcwd
* remove old struct
* fix open on posix
* feat: Add win32 path.toNamespacedPath and align rest of node:path with Node (#8469 )
* restore zls file change
* [autofix.ci] apply automated fixes
* switch to using fs.top_level_dir in glob
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Georgijs Vilums <georgijs.vilums@gmail.com >
Co-authored-by: Georgijs Vilums <georgijs@bun.sh >
Co-authored-by: John-David Dalton <john.david.dalton@gmail.com >
Co-authored-by: Georgijs <48869301+gvilums@users.noreply.github.com >
2024-02-12 16:30:58 -08:00
Zack Radisic
6ba146c3e0
Run zig fmt
2024-02-12 17:40:36 -06:00
Georgijs
a80b3569b4
disable quiet logs when BUN_DEBUG_LOG is set to 0 ( #8866 )
2024-02-12 15:20:38 -08:00
argosphil
8b5cac1ea1
chore: use shell-independent globbing in bun run fmt:zig ( #8861 )
...
* fix: use shell-independent globbing in bun run fmt:zig
* Erase experimental creature escaped from @paperdave's lab.
See https://github.com/oven-sh/bun/pull/8861#discussion_r1485747297
2024-02-12 14:51:39 -08:00
John-David Dalton
96e7227087
feat: Add win32 path.toNamespacedPath and align rest of node:path with Node ( #8469 )
2024-02-12 14:27:26 -08:00
Dale Seo
f88855da4f
docs: non-null assertion is needed on document.getElementById ( #8540 )
2024-02-11 20:10:17 -08:00
Ujjwal gupta
19cb3ab6ff
fix: ws.publish() not working ( #8855 )
...
* fix: ws.publish() not working
* fixes
2024-02-11 13:56:06 -08:00
argosphil
862d35d832
fix: bun test -t ( #8845 )
2024-02-11 08:39:27 -08:00
argosphil
a0bcd0f946
Fix expect().toBeGreaterThan() not throwing when ANSI is disabled ( #8838 )
2024-02-10 14:00:16 -08:00
guest271314
2264bb3d04
Substitute js/ for test/js/ (404) ( #8808 )
2024-02-10 10:44:22 -08:00
Ciro Spaciari
3e1231deb4
fix(crypto) fix KeyObjectkey handling ( #8824 )
...
* ref/deref buffer
* Clean up this code
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com >
2024-02-09 21:14:35 -08:00
dave caruso
dfcac563bc
fix error message in bun.serve ( #8828 )
...
* fix error message in bun.serve
* ok
2024-02-09 17:24:46 -08:00
Ciro Spaciari
90fd322b5c
fix timer tests ( #8804 )
2024-02-09 14:00:47 -08:00
Zack Radisic
f77b217abf
Correct shell docs for $.escape()
2024-02-09 11:41:59 -06:00
Risu
7c2be6a877
Fix bun-types/index.d.ts ( #8802 )
2024-02-09 08:46:42 -08:00
Dylan Conway
a3c3dad351
wrap ( #8812 )
2024-02-09 03:42:03 -08:00
Travis Cooper
98b438d0a4
Update bunfig.md ( #8807 )
2024-02-09 01:54:00 -08:00
cirospaciari
58d22b063c
Unmark tests that are now passing on Windows
2024-02-08 23:02:32 -03:00
Ciro Spaciari
8cd1db9cda
[windows] fix crypto ( #8797 )
...
* fix password
* refactor
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-02-08 18:00:22 -08:00
dave caruso
2d7df726fd
fix: get bun build working on window ( #8712 )
...
* work on bundler
* a
* YAAAAYYAYAYAYYAYA
* get some more bundler tests working
* Update src/bundler/bundle_v2.zig
* rev
* ok
* i converted the cmakelists into LF
* personal review
* we didnt win
* okey they pass
* revert :(
* a
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com >
2024-02-08 17:56:26 -08:00
Ashcon Partovi
1ccf0c2e9c
Fix some errors not showing up in GitHub annotations ( #8799 )
...
* Remove dead code now that `expect()` can be used outside of tests
* Fix some errors not being rendered to GitHub annotations
* [autofix.ci] apply automated fixes
* Update jest.zig
Try `execCallback`
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2024-02-08 17:52:58 -08:00
cirospaciari
db85e04ade
Unmark tests that are now passing on Windows
2024-02-08 22:19:31 -03:00
Ciro Spaciari
c2936b205d
[windows] fix(fetch) file:///, keepalive and tests on Windows ( #8784 )
...
* fix file:/// on windows
* skip fifo test
* fix keepalive
* fixes
* avoid std.os.getcwd on POSIX
2024-02-08 17:11:06 -08:00
dave caruso
8680641c23
make process.test.js pass ( #8798 )
2024-02-08 16:54:09 -08:00
Ciro Spaciari
e77db8ebac
[windows] fix which ( #8791 )
...
* fix which
* [autofix.ci] apply automated fixes
* refactor
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2024-02-08 15:44:56 -08:00
Steven Roussey
dfbedd6a10
fix: flaky test ( #8796 )
...
This often fails in CI (and on my machine) non-deterministically.
The 1ms + the 5000 is likely setting up a race condition in tasks/microtasks. Just changing it to to +10ms instead of +1ms is enough.
2024-02-08 15:17:14 -08:00
Ashcon Partovi
8624a86eba
Unmark tests that are now passing on Windows
2024-02-08 13:42:13 -08:00
Georgijs
bfc6091faf
correctly unblock all signals ( #8792 )
2024-02-08 12:09:33 -08:00
Joe
9d0a88ab82
docs: quick note on dependencies for C++ ( #8772 )
...
* quick note on dependencies for C++
* note Ubuntu C++ standard lib issue and anchor link to troubleshooting
* clarify ubuntu distros
2024-02-08 11:18:37 -08:00
Jarred Sumner
2f8f77eeb7
Ignore panic in reload ( #8778 )
...
* Ignore panic in reload
* Use
* Update c-bindings.cpp
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com >
2024-02-08 00:29:08 -08:00
Steven Roussey
7b6e0f7164
fix: Increase max depth of expect diffs ( #8771 )
...
Fix Issue #6519
2024-02-07 16:07:20 -08:00
Ciro Spaciari
5df59cb02b
[windows] fix(fs.watch) ( #8746 )
...
* clean fixes
* [autofix.ci] apply automated fixes
* more tests passing
* EPERM instead of AccessDenied
* [autofix.ci] apply automated fixes
* fix test on windows
* cleanup
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2024-02-07 15:44:07 -08:00
Jarred Sumner
b61282e290
Fix async module mocking ( #8769 )
...
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com >
2024-02-07 15:40:10 -08:00
Dylan Conway
dd3227c436
fix: crash in release builds ( #8773 )
...
* zig
* unreachable
* more comment
2024-02-07 15:38:14 -08:00
Georgijs
a9a4bbcd24
remap 0.0.0.0 to localhost on windows ( #8770 )
2024-02-07 15:17:24 -08:00
Georgijs
55aa35ee35
Fix watch attempting to reuse ports that are not yet released by the old process ( #8764 )
...
* windows watcher start new process only after previous terminated
* simplify env setup in spawnWatcherChild
2024-02-07 15:11:28 -08:00
dave caruso
a99459ffdc
fix: symlinked files as entry points do not show Bun.main ( #8762 )
2024-02-07 13:06:11 -08:00
Jake Gordon
08f957d33b
fix glob example to be recursive as stated ( #8755 )
2024-02-07 12:53:28 -08:00