-
Notifications
You must be signed in to change notification settings - Fork 19
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
Remove binary serializer #463
Remove binary serializer #463
Conversation
✅ Build CrispyWaffle 7.0.94 completed (commit 57732a4df7 by @Mohammad-Haris) |
@@ -118,6 +118,13 @@ Refer to [CONTRIBUTING.md](CONTRIBUTING.md) to learn how to contribute to this p | |||
<table> | |||
<tbody> | |||
<tr> | |||
<td align="center"> |
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.
A workflow/GH action updates this section automatically; don't worry. Once your code gets merged, it will add your data here!
@@ -8,6 +8,13 @@ Refer to [CONTRIBUTING.md](https://github.com/guibranco/CrispyWaffle/blob/main/C | |||
<table> | |||
<tbody> | |||
<tr> | |||
<td align="center"> |
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.
Same here!
@Mohammad-Haris, great job. Thanks for the effort! I will merge it as soon as the CI checks conclude to run! 🚀 |
Resolves #462
Before the change?
Library supported conversion of an object to binary format. But
BinaryFormatter
has security issues and was flagged as obsolete in .NET 7.0 and higher, hence removing the functionality for now.After the change?
Removed
BinarySerializerAdapter
and its references.Pull request checklist
Does this introduce a breaking change?
Users using binary serialization might encounter errors.