Age | Commit message (Collapse) | Author |
|
|
|
https://tools.ietf.org/html/rfc3986#section-3.1 (#4909)
|
|
|
|
Don't use Symbol.for() to define Deno.symbols.customInspect.
|
|
|
|
|
|
|
|
|
|
This commit removes Deno.OpenMode along with overloaded variants
of Deno.open() and Deno.openSync() that used OpenMode.
|
|
|
|
|
|
|
|
|
|
This commit renames all APIs containing "TLS" to use camel case
(connectTLS -> connectTls, etc.)
|
|
|
|
|
|
|
|
|
|
* rename disableOpSanitizer to sanitizeOps
* rename disableResourceSanitizer to sanitizeResources
|
|
|
|
|
|
* Allows union and intersection types to have same multi-line behaviour as arguments (more like prettier).
* Stops line breaks before `extends` in conditional type, which would have been a parser error.
* Check for `// dprint-ignore-file` comment before parsing. This allow files that panic in swc to be ignored.
* Fixes a bug in "multi-line" detection.
|
|
|
|
|
|
* rename Deno.toAsyncIterator() to Deno.iter()
* adds sync version Deno.iterSync()
* adds optional second argument for buffer size
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This simplifies the plugin interface in order to deliver op crates with a similar API
|
|
- Removes unnecessary RwLock and Rc around the op registry table
- Preparation to move resource_table to deno_core::Isolate.
- Towards #3453, #4222
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
syscalls (#4762)
|