-
Notifications
You must be signed in to change notification settings - Fork 35
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
fix: don't split paths on ^
characters
#192
Conversation
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.
Can it be tested?
I used http://www.regexplained.co.uk/ to make sense of this...
This needs tests :) |
Still needs tests :^) |
@yusefnapora : are you going to add tests so that this can land? |
hey everyone, sorry for sleeping on this! will add tests today |
dd2ad14
to
b99706f
Compare
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.
LGTM
## [ipfs-unixfs-importer-v9.0.7](ipfs-unixfs-importer-v9.0.6...ipfs-unixfs-importer-v9.0.7) (2022-04-26) ### Bug Fixes * do not add metadata to leaves ([#193](#193)) ([f5d3a67](f5d3a67)) * don't split paths on `^` characters ([#192](#192)) ([9a69908](9a69908)) ### Trivial Changes * switch to auto-release ([#208](#208)) ([99386e6](99386e6)) * switch to gh actions ([#175](#175)) ([395852b](395852b)) * update readmes ([#188](#188)) ([273a141](273a141))
🎉 This PR is included in version ipfs-unixfs-importer-v9.0.7 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This removes the extra
^
char from this regex that was causing us to treat the^
as a path separator.Closes #177, and will fix web3-storage/web3.storage#375 when pulled into the web3.storage client.