-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
errors: documenting removed error codes #22061
Comments
Hi @joyeecheung , @ChALkeR , willing to work on this, but need some additional pointers. For instance, I can see that the Is there any easier / programmatic way to find the nodejs release version, given a commit hash? |
@SirR4T Thanks, you can find that out by looking at the GitHub UI of a commit, it shows the tags where the commit is present |
Oh. I guess i was on the right track then. I guess it should look like |
@SirR4T I think it was added in v10.0.0 given the UI, but it was not removed in v10.8.0 - even the code is removed, the commit will still be there because we do not remove commits. It was removed by another commit on top of that and the job is to find out what that commit is. |
Oh i meant the documentation in As I understand, the point of this PR was to document lifecycle of the Error Codes which were removed. Do let me know if i'm getting it wrong? |
@joyeecheung I was originally in favor of having the removed error codes in a separate list but after giving it another thought I actually believe that is not necessary. The reason is that google should know about the old error codes in the correct Node.js version. The user who looks at the docs should always check the specific docs version that matches the used version and in those cases the error codes would be documented. So I wonder if we really need that list as it is manual work to keep it aligned and there is probably little benefit having it. |
Oh btw, in answer to
, I found this works (depends on the excellent pup tool):
Could be helpful in fetching the tags for all the commit hashes. Still not sure if these answers are correct, though. |
You can find out when the error was added in v10.0.0 only because it is correct to assume that an error is added along with that commit. But it's incorrect to assume that if the commit appears in a release the error will also in that release (= not removed). Say commit A added a code and a commit B later removed that, A will continue to appear in releases that also contain B even though the error has already been removed by B. You are seeing |
@BridgeAR I don't think we can count on Google (or our SEO) for that, try googling the errors that got removed and Google will likely give you the PR that touched the error but our docs, no matter which version, is unlikely to show up in the first page (or any page). Also making the error codes harder to discover by hiding the removed ones in older versions of docs may just discourage the usage of them. We have been advertising them as "static, permanent identifiers" and now there does not seem to be anything "static, permanent" about them given that they can be removed and changed without leaving a trace in the latest version of docs. |
I think there is another good reason for keeping the list of old error codes: avoid reusing them for new errors. |
It will definitely not hurt and not to reuse them is indeed important. So +1 on that. |
Raised a work in progress PR, so that early reviews might help set the template for all error codes. Please let me know if this looks like what is required? |
PR-URL: #22100 Fixes: #22061 Refs: #21491 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
PR-URL: #22100 Fixes: #22061 Refs: #21491 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
PR-URL: #22100 Fixes: #22061 Refs: #21491 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
See #21491 for a full list of removed/inconsistent error codes (h/t to @ChALkeR for the investigation). There could be more though
Actions requested
doc/api/errors.md
documenting the removed error codesdoc/api/errors.md
(before it got removed) and identify the commit where it was added (GitHub's commit UI will show the tags where the commit appears so it shouldn't be too hard).The text was updated successfully, but these errors were encountered: