Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-11 | fix(cli/graph_util): don't append referrer info for root module errors (#17730) | Nayeem Rahman | |
2023-02-11 | feat: add signal option to Deno.resolveDns (#17384) | Leo Kettmeir | |
Closes #14406 | |||
2023-02-11 | feat: add more variants to Deno.build.os (#17340) | Leo Kettmeir | |
Closes #14799 | |||
2023-02-11 | fix(ops): Always close cancel handles for read_async/write_async (#17736) | Kamil Ogórek | |
Fixes https://github.com/denoland/deno/issues/17734 | |||
2023-02-11 | fix(webgpu): use correct op for GPUDevice.createSampler (#17729) | Leo Kettmeir | |
Fixes #17728 | |||
2023-02-11 | docs: fix minor typo in AsyncRefCell comment (#17732) | Mike Mulchrone | |
2023-02-10 | refactor(ext/http): use `String.prototype.trim()` instead of regex (#17722) | Bert Belder | |
2023-02-10 | fix(dts): make Deno.Command accept readonly prop in options.args (#17718) | Kamil Ogórek | |
2023-02-10 | fix(cli/napi): correct name handling in napi property descriptor (#17716) | Divy Srivastava | |
Fixes https://github.com/denoland/deno/issues/17712 | |||
2023-02-10 | refactor: clean up "cli/node/mod.rs" and "ext/node" (#17713) | Bartek Iwańczuk | |
This commit moves some code around from "cli/node/mod.rs" to "ext/node". Additionally "ext/node" was changed to factor out "ops.rs" and "polyfill.rs" modules. | |||
2023-02-10 | feat(install): follow redirects for urls with no path (#17449) | Kamil Ogórek | |
This change makes absolute urls, that contain no path like `deno install https://my-cli.io` to follow redirects and extract the name from it. It allows modifies `test_util` server listener on port `4550` (`REDIRECT_ABSOLUTE_PORT`) to allow for specifying `redirect_to` query param, that fill use that value for it's next redirect. Fixes https://github.com/denoland/deno/issues/17409 | |||
2023-02-10 | fix(cli/napi): handle all property variants in napi_define_properties (#17680) | Divy Srivastava | |
Fixes https://github.com/denoland/deno/issues/17509 This fixes the bug that blocked loading `fsevents` in Deno. | |||
2023-02-10 | chore: upgrade rusty_v8 to 0.63.0 (#17705) | Bartek Iwańczuk | |
2023-02-10 | perf(core): speed up promise hook dispatch (#17616) | Bert Belder | |
2023-02-10 | refactor: allow to provide polyfills for Node modules from the snapshot (#17706) | Bartek Iwańczuk | |
This commit does preparatory work to allow snapshotting Node.js compatibility layer, that currently lives in `std/node`. The logic was changed to allow loading some modules from the snapshot and some from the remote URL. Additionally "module_es_shim.js" that provides exports for "node:module" is now snapshotted. | |||
2023-02-10 | refactor(permissions): use less space for permissions prompt (#17708) | Bartek Iwańczuk | |
2023-02-09 | refactor: deno_graph 0.43 upgrade (#17692) | David Sherret | |
2023-02-09 | refactor(ext/webidl): use `TypedArrayPrototypeGetSymbolToStringTag` (#17602) | Kenta Moriuchi | |
2023-02-09 | perf: module info cache - avoid MediaType.to_string() allocation (#17699) | David Sherret | |
Micro optimization because these allocations were coming up on a flame graph I was looking at (only 0.28% of total). | |||
2023-02-08 | perf: disable fetching graph cache info except for `deno info` (#17698) | David Sherret | |
2023-02-08 | fix: use static Reflect methods in nodeGlobalThis proxy (#17696) | Kamil Ogórek | |
Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2023-02-08 | refactor: internal runtime code TS support (#17672) | Leo Kettmeir | |
This is a proof of concept for being able to snapshot TypeScript files. Currently only a single runtime file is authored in TypeScript - "runtime/js/01_version.ts". Not needed infrastructure was removed from "core/snapshot_util.rs". --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-02-08 | fix(core): don't allow to import internal code is snapshot is loaded (#17694) | Bartek Iwańczuk | |
Addressing Luca concerns from https://github.com/denoland/deno/pull/17648#discussion_r1099352286 | |||
2023-02-08 | fix(ext/console): Only right-align integers in console.table() (#17389) | Waldir Pimenta | |
2023-02-08 | chore(cli/tools): fix typo in upgrade.rs (#17690) | Ikko Eltociear Ashimine | |
vesion -> version | |||
2023-02-08 | refactor(core): change SourcePair to ExtensionFileSource (#17686) | Bartek Iwańczuk | |
2023-02-07 | refactor: remove prefix from include_js_files & use extension name (#17683) | Leo Kettmeir | |
2023-02-07 | refactor: Use ES modules for internal runtime code (#17648) | Leo Kettmeir | |
This PR refactors all internal js files (except core) to be written as ES modules. `__bootstrap`has been mostly replaced with static imports in form in `internal:[path to file from repo root]`. To specify if files are ESM, an `esm` method has been added to `Extension`, similar to the `js` method. A new ModuleLoader called `InternalModuleLoader` has been added to enable the loading of internal specifiers, which is used in all situations except when a snapshot is only loaded, and not a new one is created from it. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-02-07 | chore: upgrade rusty_v8 to 0.62.2 (#17604) | Bartek Iwańczuk | |
Co-authored-by: Bert Belder <bertbelder@gmail.com> | |||
2023-02-07 | chore: forward v1.30.3 release commit to main (#17677) | denobot | |
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-02-06 | chore: update std submodule to 0.176.0 (#17668) | Bartek Iwańczuk | |
2023-02-06 | fix: revert lsp related internal specifiers (#17673) | Leo Kettmeir | |
To fix reports of breakage from #17655 | |||
2023-02-06 | refactor(npm): use per-thread package.json cache (#17644) | Bartek Iwańczuk | |
This commit adds a per-thread cache for `package.json` files. It's similar to what Node.js is doing. | |||
2023-02-06 | refactor: create JsRuntime outside of run_in_task (#17667) | Leo Kettmeir | |
2023-02-05 | refactor: rename `deno` specifiers to `internal` (#17655) | Leo Kettmeir | |
2023-02-05 | chore(core): improve error message in module loader example (#17654) | Waldir Pimenta | |
Just a small tweak to the error message to avoid confusion. | |||
2023-02-05 | fix(ext/console): log class for class constructor (#17615) | Gasman | |
Co-authored-by: tannal <tannal.cn@gmail.com> | |||
2023-02-03 | refactor: remove old cjs_esm_translations in graph_util (#17643) | David Sherret | |
This isn't used. | |||
2023-02-03 | refactor: reland "preserve ProcState::file_fetcher between restarts" (#17636) | Nayeem Rahman | |
Just some watcher init step that I thought would be "cloned over" but needs to be done again on reset. | |||
2023-02-03 | fix(lsp): prevent crash analyzing module (#17642) | David Sherret | |
Closes #17640 | |||
2023-02-03 | chore: forward v1.30.2 release commit to main (#17641) | denobot | |
This is the release commit being forwarded back to main for 1.30.2 Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> | |||
2023-02-02 | chore: add release checklist step to check the benchmarks page (#17632) | David Sherret | |
The 1.30.1 release had a performance regression that would have been caught by looking at the benchmarks page. This adds a pre-flight step to the release checklist for the person doing the release to go to this page and look at the output. This would have prevented #17629 | |||
2023-02-03 | Revert "chore(core): remove have_unpolled_ops on rt state (#17601)" (#17631) | Bartek Iwańczuk | |
This reverts commit e85ca8be0dafdab28e6283aed64c8ee0eb3a338d. This commit caused a huge spike in various benchmarks we track at https://deno.land/benchmarks | |||
2023-02-02 | fix(webgpu): specify viewFormats in surface configuration (#17626) | Leo Kettmeir | |
2023-02-02 | chore: forward v1.30.1 release commit to main (#17623) | denobot | |
This is the release commit being forwarded back to main for 1.30.1 | |||
2023-02-01 | fix(repl): handle @types/node not being cached in the repl (#17617) | David Sherret | |
Closes #17599 | |||
2023-02-01 | fix(lockfile): emit trailing newline (#17618) | David Sherret | |
2023-02-01 | fix(napi): remove wrong length check in napi_create_function (#17614) | Divy Srivastava | |
This check is not needed. This PR + #17613 makes `npm:ref-napi` work with Deno. | |||
2023-02-01 | fix(napi): return node globalThis from napi_get_global (#17613) | Divy Srivastava | |
Fixes https://github.com/denoland/deno/issues/17587 | |||
2023-02-01 | chore: bump serde & serde_json deps to use semver minimums (#17610) | luketpeterson | |
Changing serde & serde_json dependencies to use semver minimums rather than exact crate version. Fixes https://github.com/denoland/deno/issues/17609 |