-
Notifications
You must be signed in to change notification settings - Fork 955
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
1.05.04 final release fixes #2893
base: develop/main374
Are you sure you want to change the base?
Conversation
…nal-release-fixes
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop/main374 #2893 +/- ##
===================================================
- Coverage 54.96% 54.90% -0.06%
===================================================
Files 349 349
Lines 66354 66639 +285
Branches 13619 13730 +111
===================================================
+ Hits 36470 36588 +118
- Misses 25906 26068 +162
- Partials 3978 3983 +5 ☔ View full report in Codecov by Sentry. |
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, ready to merge?
@@ -95,6 +95,7 @@ public override void Encode(IEncoder encoder) | |||
encoder.PushNamespace(XmlNamespace); | |||
|
|||
string fieldName = null; | |||
|
|||
if (encoder.UseReversibleEncoding) | |||
{ | |||
encoder.WriteUInt32("SwitchField", m_switchField); |
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.
TODO? This implementation doesn't use the new switchfield API yet.
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 is also code which reads the encodingmask
@@ -134,6 +134,7 @@ public string PolicyId | |||
public string DisplayName | |||
{ | |||
get { return m_displayName; } | |||
set { m_displayName = value; } |
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.
was intentionally removed
@@ -418,6 +418,11 @@ public object Body | |||
m_encoding = ExtensionObjectEncoding.Xml; | |||
} | |||
|
|||
else if (m_body is Newtonsoft.Json.Linq.JObject) |
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.
why is this needed?
Proposed changes
Merges the changes needed for the 1.05.04 release.