-
Notifications
You must be signed in to change notification settings - Fork 239
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
Add ability to set entity resolver when deserialize using borrowing reader #615
Conversation
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## master #615 +/- ##
==========================================
- Coverage 64.64% 64.62% -0.02%
==========================================
Files 36 36
Lines 17003 16998 -5
==========================================
- Hits 10991 10985 -6
- Misses 6012 6013 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Changelog.md
Outdated
@@ -14,13 +14,15 @@ | |||
|
|||
- [#609]: Added `Writer::write_serializable` to provide the capability to serialize | |||
arbitrary types using serde when using the lower-level `Writer` API. | |||
- [#615]: Added ability to set entity resolver when deserialize using borrowing reader. | |||
|
|||
### Bug Fixes | |||
|
|||
### Misc Changes | |||
|
|||
|
|||
[#609]: https://github.com/tafia/quick-xml/issues/609 |
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.
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.
Ok, will fix. Just a moment...
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.
See changelog comment
I noticed, that after #583 there is no way to create a deserializer that will borrow from string and provide ability to resolve custom entities. This PR fixes this gap.