-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
Replaced dependency on DotNetZip with System.IO.Compression.ZipFile #1360
Conversation
LibPalaso Tests 39 files - 6 39 suites - 6 5m 29s ⏱️ - 6m 26s For more details on these failures, see this check. Results for commit aae892c. ± Comparison against base commit de37405. This pull request removes 2012 tests.
♻️ This comment has been updated with latest results. |
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.
Reviewable status: 0 of 11 files reviewed, 1 unresolved discussion (waiting on @andrew-polk, @josephmyers, and @tombogle)
a discussion (no related file):
What problem is this change solving?
Can you confirm that the unit tests covered corner cases like non-ascii characters?
…Unicode surrogate pairs
Previously, hatton (John Hatton) wrote…
The DotNetZip package is now deprecated. Not sure that it actually represented any vulnerability or problem, but since we're making a bunch of other breaking changes and updating dependencies, this seemed like the right time to bite the bullet and switch to a package that is going to be actively maintained. I don't think any of the existing unit tests checked for handling special characters, but I just tweaked one of them to prove that it works. Not 100% sure that's what you had in mind. |
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.
The code overall looks good, thanks for doing this. But take a look at the test failures. They look legitimate. Some version conflicts, probably due to the changed references
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 good to me, I left a comment about RAMP as there was an old comment which was lost about it being picky about the zip file
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.
Reviewable status: 0 of 11 files reviewed, 2 unresolved discussions (waiting on @andrew-polk, @hahn-kev, and @tombogle)
a discussion (no related file):
Previously, tombogle (Tom Bogle) wrote…
The DotNetZip package is now deprecated. Not sure that it actually represented any vulnerability or problem, but since we're making a bunch of other breaking changes and updating dependencies, this seemed like the right time to bite the bullet and switch to a package that is going to be actively maintained. I don't think any of the existing unit tests checked for handling special characters, but I just tweaked one of them to prove that it works. Not 100% sure that's what you had in mind.
Sorry, I don't have the margin to follow up and look at details here. I just wanted to raise the issue.
Previously, hatton (John Hatton) wrote…
Done. |
This change is