Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "path: fix bugs and inconsistencies" #55414

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

RedYetiDev
Copy link
Member

@RedYetiDev RedYetiDev commented Oct 17, 2024

This (uncleanly) reverts commit efbba60.

Fixes #55410


The commit efbba60 introduced a change where paths would retain trailing / characters. This change led to issues in npm and likely other libraries, because trailing / characters are not typically expected to be preserved.

The purpose of using resolve() on a path is to fully resolve it to its canonical form, regardless of how it is written (e.g., both /hello/../world and /hello/../hello/../world should resolve to the same path). However, this commit altered that behavior, making /hello/ resolve differently from /hello. That made the resolution of identical paths (one with / and one without) return different results. This reverts that behavior

@nodejs-github-bot
Copy link
Collaborator

Review requested:

  • @nodejs/loaders
  • @nodejs/url

@nodejs-github-bot nodejs-github-bot added c++ Issues and PRs that require attention from people who are familiar with C++. module Issues and PRs related to the module subsystem. needs-ci PRs that need a full CI run. path Issues and PRs related to the path subsystem. whatwg-url Issues and PRs related to the WHATWG URL implementation. labels Oct 17, 2024
@RedYetiDev RedYetiDev added revert PRs that revert previously landed PRs. and removed c++ Issues and PRs that require attention from people who are familiar with C++. module Issues and PRs related to the module subsystem. whatwg-url Issues and PRs related to the WHATWG URL implementation. labels Oct 17, 2024
Copy link

codecov bot commented Oct 17, 2024

Codecov Report

Attention: Patch coverage is 86.04651% with 6 lines in your changes missing coverage. Please review.

Project coverage is 88.40%. Comparing base (7ae193d) to head (c9d8289).

Files with missing lines Patch % Lines
src/path.cc 20.00% 3 Missing and 1 partial ⚠️
lib/internal/url.js 90.00% 0 Missing and 1 partial ⚠️
lib/path.js 96.15% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #55414      +/-   ##
==========================================
- Coverage   88.40%   88.40%   -0.01%     
==========================================
  Files         653      653              
  Lines      187600   187518      -82     
  Branches    36117    36089      -28     
==========================================
- Hits       165854   165770      -84     
+ Misses      14974    14971       -3     
- Partials     6772     6777       +5     
Files with missing lines Coverage Δ
lib/internal/modules/cjs/loader.js 97.74% <100.00%> (+0.30%) ⬆️
lib/internal/url.js 97.63% <90.00%> (-0.36%) ⬇️
lib/path.js 95.99% <96.15%> (+<0.01%) ⬆️
src/path.cc 69.04% <20.00%> (+1.65%) ⬆️

... and 26 files with indirect coverage changes

@lpinca
Copy link
Member

lpinca commented Oct 17, 2024

FWIW the npm issue was already reported in the comments of the original PR, see #54224 (comment).

@ovflowd
Copy link
Member

ovflowd commented Oct 17, 2024

FWIW the npm issue was already reported in the comments of the original PR, see #54224 (comment).

I wonder why no one (besides you) followed up on that. It should never have landed. Still, we should have more tests on CITGM to verify these changes.

Copy link
Member

@ovflowd ovflowd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@RedYetiDev RedYetiDev added author ready PRs that have at least one approval, no pending requests for changes, and a CI started. request-ci Add this label to start a Jenkins CI on a PR. labels Oct 17, 2024
@github-actions github-actions bot removed the request-ci Add this label to start a Jenkins CI on a PR. label Oct 17, 2024
@nodejs-github-bot
Copy link
Collaborator

@huseyinacacak-janea
Copy link
Contributor

Since my PR to fix inconsistencies between functions broke a lot of things in other dependencies, it would be better to revert the PR rather than fix all the other dependencies. Thank you for the PR to revert the changes.

@richardlau
Copy link
Member

richardlau commented Oct 17, 2024

FWIW the npm issue was already reported in the comments of the original PR, see #54224 (comment).

I wonder why no one (besides you) followed up on that. It should never have landed. Still, we should have more tests on CITGM to verify these changes.

We used to test npm in CITGM, but it often failed (nodejs/citgm#897). I think it was removed as part of one of the clear outs of persistently failing modules.

There's a (stalled?) PR to add it back: nodejs/citgm#979

@vzaidman
Copy link

fixes #55424

@RDIL
Copy link

RDIL commented Oct 17, 2024

This also broke a ton of Yarn's e2e tests, did CITGM miss that too? 🤔

@RedYetiDev
Copy link
Member Author

For discussion of the CITGM, see nodejs/citgm#1067

@ovflowd
Copy link
Member

ovflowd commented Oct 17, 2024

This also broke a ton of Yarn's e2e tests, did CITGM miss that too? 🤔

I'm not sure if our tests cover it :) https://github.com/nodejs/citgm/tree/main/test/yarn

@RDIL
Copy link

RDIL commented Oct 17, 2024

Oh, yeah, good point.

@merceyz
Copy link
Member

merceyz commented Oct 18, 2024

This also broke a ton of Yarn's e2e tests, did CITGM miss that too? 🤔

I'm not sure if our tests cover it :) https://github.com/nodejs/citgm/tree/main/test/yarn

I think @RDIL was referring to https://github.com/nodejs/citgm/blob/9ac6cc9159697eade2fa3725e3117982260a7209/lib/lookup.json#L28-L44.

@richardlau
Copy link
Member

This has a conflict now.

@richardlau richardlau added the request-ci Add this label to start a Jenkins CI on a PR. label Oct 18, 2024
@github-actions github-actions bot removed the request-ci Add this label to start a Jenkins CI on a PR. label Oct 18, 2024
@nodejs-github-bot
Copy link
Collaborator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
author ready PRs that have at least one approval, no pending requests for changes, and a CI started. needs-ci PRs that need a full CI run. path Issues and PRs related to the path subsystem. revert PRs that revert previously landed PRs.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

npm pack crash in Node 23
9 participants