Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-28 | space | 1 | -3/+3 | ||
2022-10-26 | Fix issue with `CryptoKey` and `SubtleCrypto` constructors | 1 | -26/+9 | ||
2022-10-25 | TCP & TLS Socket API (#1374) | 1 | -2/+2 | ||
* TCP Socket API * Wip * Add snippet for StringDecoder * Rename `close` to `stop`, replace `close` with `end` * Add a tcp echo server test * Some docs * Update README.md * Fix build * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-24 | `Bun.peek` | 1 | -0/+93 | ||
2022-10-23 | Add Web Crypto API (#1384) | 1 | -4/+74 | ||
* Add Web Crypto API * Duplicate symbols * Update c_cpp_properties.json Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-18 | Implement `performance.timeOrigin` | 1 | -0/+6 | ||
2022-10-17 | add oniguruma for regex with variable length lookbehinds (#1329) | 1 | -0/+19 | ||
* 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-10-10 | Process inherits from EventEmitter | 1 | -1/+2 | ||
2022-10-09 | Missing code | 1 | -0/+1 | ||
2022-10-09 | Expose `Bun.version` and `Bun.revision` | 1 | -2/+16 | ||
2022-10-06 | Add simple Hot Module Reloading to bun's runtime | 1 | -0/+18 | ||
2022-10-05 | Expose private `@require` symbol | 1 | -0/+5 | ||
2022-09-28 | Clean up some of the event loop code | 1 | -0/+12 | ||
2022-09-28 | Fix several bugs with Request body streaming + store small response bodies ↵ | 1 | -4/+33 | ||
without an extra memory allocation | |||||
2022-09-22 | Faster `Blob` + begin to implement `FileSink` | 1 | -1/+26 | ||
2022-09-20 | Add `navigator.userAgent` , `navigator.hardwareConcurrency` | 1 | -0/+48 | ||
2022-09-17 | Explicitly enable ShadowRealm | 1 | -0/+1 | ||
2022-09-14 | Make `crypto.getRandomValues()` faster + fix > 1 byte/element typed arrays | 1 | -1/+21 | ||
Fix crypto.getRandomValues() with > 1 byte element typed arrays Fixes https://github.com/oven-sh/bun/issues/1237 | |||||
2022-09-09 | Fix segfault due to GC and some more helper functions (#1221) | 1 | -2/+8 | ||
* Fix segfault due to GC and some more helper functions * fix upon reviews * add visitChildren | |||||
2022-09-08 | Add native helper functions for Readable and convert ReadableState ↵ | 1 | -0/+10 | ||
properties to getter/setter (#1218) | |||||
2022-09-08 | Make some more globals modifiable | 1 | -89/+58 | ||
2022-09-06 | Add native ReadableState (#1210) | 1 | -3/+27 | ||
* use functionSpace for JSStringDecoderConstructor and fix console.log on prototype * Add native ReadableState * move kPaused to class property | |||||
2022-09-05 | Support async `onLoad` callbacks in `Bun.plugin` | 1 | -208/+44 | ||
2022-09-04 | `[node:module]` Implement `_resolveFileName`, stub `_nodeModulePaths` & `_cache` | 1 | -4/+11 | ||
Closes https://github.com/oven-sh/bun/issues/1111 | |||||
2022-09-03 | [Node API] Fix `napi_module_register` | 1 | -2/+0 | ||
2022-09-03 | Fix `createRequire()` in `node:module` | 1 | -43/+29 | ||
Fixes https://github.com/oven-sh/bun/issues/831 Fixes https://github.com/oven-sh/bun/issues/453 | |||||
2022-09-03 | Plugin API (#1199) | 1 | -0/+44 | ||
* Plugin API * Fix the bugs * Implement `"object"` loader Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-01 | Add native StringDecoder (#1188) | 1 | -0/+36 | ||
* Add native StringDecoder * fix upon reviews * add Constructor and use LazyClassStructure | |||||
2022-08-27 | Update WebKit (#1165) | 1 | -5/+10 | ||
* Update WebKit * Fix `DataView` and non-8 bit sized typed arrays with TextDecoder * New WebKit Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-08-25 | Add native BufferList (#1146) | 1 | -0/+10 | ||
* add simple methods * add native BufferList * use RopeBuilder * use Deque | |||||
2022-08-21 | Add native EventEmitter (#1123) | 1 | -0/+24 | ||
* Add native EventEmitter * add listeners, listenerCount and eventNames * add global functions * add Object to EventEmitter conversion * fix upon review | |||||
2022-08-21 | Slightly optimize escapeHTMLescapeHTML8 & escapeHTML16 | 1 | -3/+57 | ||
2022-08-18 | Make `Request`, `Response` and `TextDecoder` not read-only | 1 | -37/+38 | ||
2022-08-18 | Faster TextDecoder | 1 | -0/+14 | ||
2022-08-18 | Fix missing `prototype` property on generated classes | 1 | -1/+1 | ||
2022-08-18 | Handle builds with remote inspector disabled | 1 | -4/+20 | ||
2022-08-17 | Missing parameter after merge | 1 | -0/+5 | ||
2022-08-17 | Update ZigGlobalObject.cpp | 1 | -1/+1 | ||
2022-08-17 | Move the crypto hashers to the new bindings | 1 | -8/+6 | ||
2022-08-17 | Add native process module (#1095) | 1 | -8/+38 | ||
2022-08-17 | slightly improve streams perf | 1 | -1/+23 | ||
2022-08-17 | New Zig <> C++ bindings generator. +20% faster HTTP server | 1 | -1/+37 | ||
2022-08-17 | [bun:ffi] Improve `ptr()` performance and implement code generation for DOMJIT | 1 | -0/+2 | ||
2022-08-14 | Add synthetic buffer module (#1076) | 1 | -21/+12 | ||
* Add synthetic buffer module * rename Buffer.h to BufferModule.h | |||||
2022-08-13 | wip SyntheticModule | 1 | -0/+41 | ||
2022-08-12 | Update WebKit | 1 | -36/+36 | ||
2022-08-12 | Update WebKit | 1 | -8/+91 | ||
2022-08-10 | Update ZigGlobalObject.cpp | 1 | -2/+0 | ||
2022-08-10 | Log uncaught exceptions | 1 | -1/+3 | ||
2022-08-09 | [misc] Add a global private `@Bun` | 1 | -2/+5 | ||