-
Notifications
You must be signed in to change notification settings - Fork 2.2k
(PUP-7926) Fix capitalization of a regex (A-Z not A-z) #6184
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
Conversation
Otherwise this is over-matching (matches anything between ASCII A and ASCII z, which is much more than just characters).
|
Note: Send a matching pull request to upstream for pathspec: highb/pathspec-ruby#16 |
|
@incase Thanks for your contribution! It would help a lot if you could do the following:
Example commit message This is needed as we match up all commits with tickets at release time. |
|
CLA signed by all contributors. |
|
Ticket filed, commit message updated. |
hlindberg
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks ok and legit to me, ping @Iristyle since this is about windows drive letters...
|
@incase thanks for logging a ticket - you still have the commit itself to deal with (that is why the travis tests shows a failure). The commit message should have the same form as the title of this PR - i.e. |
|
I'm not even sure where Anyhow, the fix looks good to me, as long as we don't want to delete the code altogether. |
|
@Iristyle in that case we need a major version bump (don't think this was marked as private). Merging this, it is at least better than before this fix. |
|
@incase Can you fix the message of the commit so that it conforms to the policy? That is the only thing that stops this from being merged. |
|
Now, if I knew how to add either add a commit to this and remove the old one, or how to edit the commit message on the existing change, I would be happy to do it. But I purely used the web interface to create this and don't know anything useful about the commandline client and don't have a local client. So it seems the most viable path for me would be to create a new pull request with a fixed commit? |
(PUP-7926) Fix capitalization of a regex (A-Z not A-z)
|
After all I tried, I only ended up polluting this pull request with stuff that doesn't belong here. |
Otherwise this is over-matching (matches anything between ASCII A and ASCII z, which is much more than just characters).