Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deno
Submodule deno updated 53 files
+1 −0 cli/rt/file_system.rs
+55 −64 cli/tools/pm/outdated/mod.rs
+3 −0 ext/fs/interface.rs
+39 −5 ext/fs/ops.rs
+17 −1 ext/fs/std_fs.rs
+3 −0 ext/node/lib.rs
+279 −0 ext/node/ops/constant.rs
+70 −0 ext/node/ops/fs.rs
+1 −0 ext/node/ops/mod.rs
+47 −112 ext/node/polyfills/_fs/_fs_common.ts
+2 −0 ext/node/polyfills/_fs/_fs_constants.ts
+49 −134 ext/node/polyfills/_fs/_fs_open.ts
+23 −9 ext/node/polyfills/_fs/_fs_writeFile.ts
+3 −58 ext/node/polyfills/internal_binding/constants.ts
+3 −1 libs/node_resolver/resolution.rs
+1 −1 tests/integration/repl_tests.rs
+6 −3 tests/node_compat/config.toml
+7 −0 tests/registry/npm/@denotest/update-latest-semver/1.0.0/package.json
+7 −0 tests/registry/npm/@denotest/update-latest-semver/1.0.1/package.json
+0 −4 tests/specs/bundle/cjs_dir_import_package_json/__test__.jsonc
+0 −20 tests/specs/bundle/cjs_dir_import_package_json/bundle.out
+4 −0 tests/specs/bundle/dir_import_package_json/__test__.jsonc
+48 −0 tests/specs/bundle/dir_import_package_json/bundle.out
+0 −0 tests/specs/bundle/dir_import_package_json/main.cjs
+3 −0 tests/specs/bundle/dir_import_package_json/main.mjs
+5 −0 tests/specs/bundle/dir_import_package_json/node_modules/esm-pkg/index.js
+3 −0 tests/specs/bundle/dir_import_package_json/node_modules/esm-pkg/package.json
+0 −0 tests/specs/bundle/dir_import_package_json/node_modules/package/constants/package.json
+0 −0 tests/specs/bundle/dir_import_package_json/node_modules/package/constants/sub.js
+0 −0 tests/specs/bundle/dir_import_package_json/node_modules/package/package.json
+0 −0 tests/specs/bundle/dir_import_package_json/package.json
+3 −3 tests/specs/outdated/deno_json/filtered/update.out
+2 −2 tests/specs/outdated/deno_json/update_compatible/update.out
+6 −6 tests/specs/outdated/deno_json/update_latest/update.out
+4 −4 tests/specs/outdated/external_import_map/update.out
+1 −1 tests/specs/outdated/jsr_export_removed/__test__.jsonc
+4 −4 tests/specs/outdated/mixed_workspace/filtered/update.out
+6 −6 tests/specs/outdated/mixed_workspace/update_latest/recursive/update.out
+1 −1 tests/specs/outdated/mixed_workspace/update_latest/root/update.out
+3 −3 tests/specs/outdated/mixed_workspace/update_latest/subdir/member_a.out
+2 −2 tests/specs/outdated/package_json/filtered/update.out
+1 −1 tests/specs/outdated/package_json/update_compatible/update.out
+3 −3 tests/specs/outdated/package_json/update_latest/update.out
+3 −3 tests/specs/outdated/pre_release/update.out
+13 −0 tests/specs/outdated/update_only_req/__test__.jsonc
+5 −0 tests/specs/outdated/update_only_req/deno.json
+2 −0 tests/specs/outdated/update_only_req/update.out
+1 −0 tests/specs/run/unconfigured/__test__.jsonc
+92 −1 tests/unit_node/_fs/_fs_open_test.ts
+26 −0 tests/unit_node/fs_test.ts
+1 −0 tools/core_import_map.json
+0 −4 tools/deno.lock.json
+3 −9 tools/util.js