aboutsummaryrefslogtreecommitdiff
path: root/.gitmodules (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-08-28remove uws from .gitmodules (#4374)Gravatar Prabhat Sachdeva 1-7/+0
2023-07-01Make `buffer.toString("base64")` 4x faster (#3486)Gravatar Jarred Sumner 1-1/+7
* Add libbase64 * Add bench * Update licensing.md --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-05-14github actions doesn't like SSH submodulesGravatar Jarred Sumner 1-1/+1
2023-05-14Single-file standalone Bun executables (#2879)Gravatar Jarred Sumner 1-0/+4
* Add LIEF * Compile LIEF * Implement support for embedding files on macOS * proof of concept * Add zstd * Implement runtime support * Move some code around * Update .gitmodules * Upgrade zig https://github.com/ziglang/zig/pull/15278 * leftover * leftover * delete dead code * Fix extname * Revert "Upgrade zig" This reverts commit dd968f30bffb6c06e34302645a3a4468c957fb4e. * Revert "leftover" This reverts commit 7664de7686276cfba431103847d35b9270433dee. * Revert "leftover" This reverts commit 498005be06a8a1747d48824310e5a020b1f90d97. * various fixes * it works! * leftover * Make `zig build` a little faster * give up on code signing support * Support Linux & macOS * Finish removing LIEF * few more * Add zstd to list of deps * make it pretty --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-03-01Revert "Update clap (#2238)"Gravatar Jarred Sumner 1-3/+0
This reverts commit 7b9a17f9d7106ffd8e553a5192aba60d14ea5e9c.
2023-02-28Update clap (#2238)Gravatar Justin Whear 1-0/+3
* remove vendored clap * Update to latest zig-clap Major changes: * Instead of vendoring zig-clap and adding changes, this uses Hejsil/zig-clap directly as a submodule * `cli.zig` and related files have been updated to use new API (no more `flag()` or `option()`) * A workaround for the Run and Auto commands has been implemented that allows us to use the official upstream Minor change: * `-i` now has the long option `--install-fallback`; I didn't spend much time thinking about this name, so suggestions weclome. * deinit jsBundleArgs
2023-01-07Implement DNS module (#1691)Gravatar Jarred Sumner 1-0/+3
* Boilerplate for DNS stuff * Add c-ares * lookup * make * Implement dns.lookup * Create c-ares * wip * normalize * repro * Revert "repro" This reverts commit 8b93e0c295b335b8882a9601da47720348549beb. * Implement macOS `getaddrinfo_async_start` * embiggen * Update string_immutable.zig * Update Makefile * alright * Update .gitignore * Add types * more ccache * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update bun.d.ts Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-12-28Use BoringSSL with patches from ElectronGravatar Jarred Sumner 1-1/+1
2022-12-17Delete Oniguruma (#1625)Gravatar Jarred Sumner 1-7/+0
* Update .gitmodules * Delete oniguruma * Delete Oniguruma * Make this test less flaky * :scissors: Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-11-11Remove with `git rm`Gravatar Jarred Sumner 1-8/+0
2022-11-11Re-addGravatar Jarred Sumner 1-0/+8
2022-11-11Update .gitmodulesGravatar Jarred Sumner 1-8/+0
2022-11-11Update .gitmodulesGravatar Jarred Sumner 1-0/+8
2022-11-11Replace `libbacktrace` with `WTFGetBacktrace`Gravatar Jarred Sumner 1-7/+0
2022-10-17add oniguruma for regex with variable length lookbehinds (#1329)Gravatar Dylan Conway 1-0/+7
* added pcre2 submodule * pcre2 regex boilerplate * tests for pcre2 regex * flag validation, getters, construct and compile mostly working * string escaping for source and toString(), exec, more tests * flag sorting, match, matchAll, search, split, replace * remove lib link * add destructor to PCRE2RegExp * header include * removed ternary * switched to oniguruma for regex library * revert sql changes * fix indices flag, add tests * revert settings * working error messages * more tests for lastIndex, fix logic for compile and lastIndex * move oniguruma lib to deps out dir
2022-09-17Update macOS contributing instructions (#1247)Gravatar Greg Brimble 1-1/+1
2022-07-24WIP fix workflow runGravatar Jarred Sumner 1-1/+22
2022-06-22change the directory structurejarred/renameGravatar Jarred Sumner 1-43/+40
2022-05-03Add tinycc dependencyGravatar Jarred Sumner 1-0/+5
2022-04-12add depth limit to .gitmodules (#142)Gravatar evan 1-0/+9
fixes situations where git client automatically downloads all submodules without depth limit
2022-03-20microptimizeGravatar Jarred Sumner 1-1/+2
2022-03-20add new moduleGravatar Jarred Sumner 1-0/+3
2022-03-13Update .gitmodulesGravatar Jarred Sumner 1-0/+1
2022-03-12[Bun.js] Implement `HTMLRewriter`Gravatar Jarred Sumner 1-0/+3
https://developers.cloudflare.com/workers/runtime-apis/html-rewriter
2022-01-19`fs.*Sync()`, `bun wiptest`, and More ™ (#106)Gravatar Jarred Sumner 1-2/+6
* very very wip * almost ready to fix the errors * Update identity_context.zig * Update base.zig * [bun test] It runs successfully * Remove unnecessary call * [Bun.js] Improve JS <> Zig unicode string interop This fixes longstanding unicode bugs with `console.log` & `fetch`. I believe @evanwashere reported this first awhile ago * [Bun.js] Implement `Object.is()` binding and a way to set a timeout for script execution * Update PLCrashReport.zig * [Bun.js] Make `console.log` more closely match Node.js and Deno * [Bun.js] Implement formatting specifier for console.* * Implement `console.clear()` * bug fix * Support console.clear() * Buffer stderr * [bun test] Begin implementing Node.js `fs` * Update darwin_c.zig * Implement more of `fs` * `mkdir`, `mkdir` recursive, `mkdtemp` * `open`, `read` (and pread) * Move some things into more files * Implement readdir * `readFile`, `readLink`, and `realpath` * `writeFile`, `symlink`, `chown`, `rename`, `stat`, `unlink`, `truncate` * `lutimes` * Implement `SystemError` and begin wiring up the `fs` module * `"fs"` - Most of the arguments / validation * `fs` - Rest of the arguments / validations * Begin wiring up the `fs` module * Fix all the build errors * support printing typed arrays in console.log * It...works? * Support `require("fs")`, `import fs from 'fs';`, `import * as fs from 'fs'` * Fix a couple bugs * get rid of the crash reporter for now * Update fs.exports.js * [bun.js] slight improvement to startup time * [bun.js] Improve error message printing * [Bun.js] Add `Bun.gc()` to run the garbage collector manually and report heap size * [Bun.js] Add Bun.generateHeapSnapshot to return what JS types are using memory * [Bun.js] Add `Bun.shrink()` to tell JSC to shrink the VM size * Improve encoding reader * [bun.js] Improve callback & microtask performance * Update node_fs.zig * Implement `console.assert` * simple test * [Bun.js] Prepare for multiple globals/realms to support testing * Create callbacks-overhead.mjs * Update http.zig * [Bun.js] Implement `queueMicrotask` * Add test for queueMicrotask * :sleepy: * [Bun.js] Implement `process.versions`, `process.pid`, `process.ppid`, `process.nextTick`, `process.versions`, * Implement `process.env.toJSON()` * [Bun.js] Improve performance of `fs.existsSync` * :nail_care: * [Bun.js] Implement `process.chdir(str)` and `process.cwd()`, support up to 4 args in `process.nextTick` * Make creating Zig::Process lazy * Split processi nto separte file * [Bun.js] Node.js Streams - Part 1/? * [Bun.js] Node.js streams 2/? * WIP streams * fix crash * Reduce allocations in many places * swap * Make `bun` start 2ms faster * Always use an apiLock() * libBacktrace doesn't really work yet * Fix crash in the upgrade checker * Clean up code for importing the runtime when not bundling * :camera: * Update linker.zig * 68! * backtrace * no, really backtrace * Fix * Linux fixes * Fixes on Linux * Update mimalloc * [bun test] Automatically scan for {.test,_test,.spec,_spec}.{jsx,tsx,js,cts,mts,ts,cjs}
2021-12-16Replace S2N with BoringSSL (wip)Gravatar Jarred Sumner 1-4/+4
2021-10-28New subcommand: `bun upgrade`. It upgrades bun to the latest version.Gravatar Jarred Sumner 1-1/+1
2021-10-12ignore = dirtyGravatar Jarred Sumner 1-0/+1
2021-10-12Add s2n, remove opensslGravatar Jarred Sumner 1-3/+3
2021-10-11Add OpenSSL :cry:Gravatar Jarred Sumner 1-0/+3
2021-10-11Add libarchive bindingsGravatar Jarred Sumner 1-0/+4
2021-10-10Update .gitmodulesjarred/zlibGravatar Jarred Sumner 1-1/+1
2021-10-10Update .gitmodulesGravatar Jarred Sumner 1-0/+1
2021-10-10[fetch] Add support for gzip & deflate to the http clientGravatar Jarred Sumner 1-0/+3
Powered by Cloudflare's zlib fork
2021-10-09Fetch WebKit submodule via https instead of sshGravatar Alexander Kuznetsov 1-1/+1
Fetching submodule via ssh leads to auth error if SSH key is not provided in GitHub settings; all submodules left uninitialized as a result
2021-09-25Add .gitGravatar Jarred Sumner 1-2/+2
2021-09-07lotta changesGravatar Jarred Sumner 1-0/+3
2021-08-24mimalloc as git submoduleGravatar Jarred Sumner 1-0/+3
Former-commit-id: 946e614bf0a61d52767869942005fa8473d3877c
2021-07-16.gitmodulesGravatar Jarred Sumner 1-0/+3
Former-commit-id: 4a4039fcb3547382abb6f597efa2f679fc4ba9a2
2021-05-20picoGravatar Jarred Sumner 1-0/+3
Former-commit-id: cee857ac4e25638e5f93d838d54124ffaca938b7
2021-05-11submoduleGravatar Jarred Sumner 1-3/+3
Former-commit-id: 033b74cc2a73dbd082239e01de8538436018fafe
2021-05-07coolGravatar Jarred Sumner 1-0/+3
Former-commit-id: 96ff169e46fcb43d5afbc9a6e2fde039e27e9d5f