Skip to content

Commit 7716187

Browse files
committed
5.1.1 security patches
> updating packages that had security vulnerabilites and newtonsoft [ENHANCEMENT] System.net.http.4.3.0 -> 4.3.4 [ENHANCEMENT] System.Text.RegularExpressions.4.3.0 -> 4.3.1 [ENHANCEMENT] log4net.2.0.8 -> 2.0.15
1 parent 94c195d commit 7716187

File tree

351 files changed

+777563
-17652
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

351 files changed

+777563
-17652
lines changed

rls/API.Library.dll

6.5 KB
Binary file not shown.

rls/API.Library.dll.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@
314314
</dependentAssembly>
315315
<dependentAssembly>
316316
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
317-
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
317+
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
318318
</dependentAssembly>
319319
<dependentAssembly>
320320
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />

rls/API.Library.pdb

24 KB
Binary file not shown.

rls/Newtonsoft.Json.dll

11.3 KB
Binary file not shown.

rls/Newtonsoft.Json.xml

Lines changed: 103 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,32 @@
865865
Converts a <see cref="T:System.DateTime"/> to and from Unix epoch time
866866
</summary>
867867
</member>
868+
<member name="P:Newtonsoft.Json.Converters.UnixDateTimeConverter.AllowPreEpoch">
869+
<summary>
870+
Gets or sets a value indicating whether the dates before Unix epoch
871+
should converted to and from JSON.
872+
</summary>
873+
<value>
874+
<c>true</c> to allow converting dates before Unix epoch to and from JSON;
875+
<c>false</c> to throw an exception when a date being converted to or from JSON
876+
occurred before Unix epoch. The default value is <c>false</c>.
877+
</value>
878+
</member>
879+
<member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.#ctor">
880+
<summary>
881+
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.UnixDateTimeConverter"/> class.
882+
</summary>
883+
</member>
884+
<member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.#ctor(System.Boolean)">
885+
<summary>
886+
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.UnixDateTimeConverter"/> class.
887+
</summary>
888+
<param name="allowPreEpoch">
889+
<c>true</c> to allow converting dates before Unix epoch to and from JSON;
890+
<c>false</c> to throw an exception when a date being converted to or from JSON
891+
occurred before Unix epoch. The default value is <c>false</c>.
892+
</param>
893+
</member>
868894
<member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
869895
<summary>
870896
Writes the JSON representation of the object.
@@ -2553,6 +2579,8 @@
25532579
<member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
25542580
<summary>
25552581
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2582+
A null value means there is no maximum.
2583+
The default value is <c>64</c>.
25562584
</summary>
25572585
</member>
25582586
<member name="P:Newtonsoft.Json.JsonReader.TokenType">
@@ -3012,7 +3040,7 @@
30123040
<summary>
30133041
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
30143042
A null value means there is no maximum.
3015-
The default value is <c>null</c>.
3043+
The default value is <c>64</c>.
30163044
</summary>
30173045
</member>
30183046
<member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
@@ -3328,7 +3356,7 @@
33283356
<summary>
33293357
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
33303358
A null value means there is no maximum.
3331-
The default value is <c>null</c>.
3359+
The default value is <c>64</c>.
33323360
</summary>
33333361
</member>
33343362
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
@@ -3395,6 +3423,12 @@
33953423
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
33963424
</summary>
33973425
</member>
3426+
<member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor(Newtonsoft.Json.JsonSerializerSettings)">
3427+
<summary>
3428+
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class
3429+
using values copied from the passed in <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3430+
</summary>
3431+
</member>
33983432
<member name="T:Newtonsoft.Json.JsonTextReader">
33993433
<summary>
34003434
Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
@@ -7029,6 +7063,25 @@
70297063
<param name="reader">The reader.</param>
70307064
<returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
70317065
</member>
7066+
<member name="T:Newtonsoft.Json.Linq.JsonCloneSettings">
7067+
<summary>
7068+
Specifies the settings used when cloning JSON.
7069+
</summary>
7070+
</member>
7071+
<member name="M:Newtonsoft.Json.Linq.JsonCloneSettings.#ctor">
7072+
<summary>
7073+
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JsonCloneSettings"/> class.
7074+
</summary>
7075+
</member>
7076+
<member name="P:Newtonsoft.Json.Linq.JsonCloneSettings.CopyAnnotations">
7077+
<summary>
7078+
Gets or sets a flag that indicates whether to copy annotations when cloning a <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7079+
The default value is <c>true</c>.
7080+
</summary>
7081+
<value>
7082+
A flag that indicates whether to copy annotations when cloning a <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7083+
</value>
7084+
</member>
70327085
<member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
70337086
<summary>
70347087
Specifies the settings used when loading JSON.
@@ -7090,6 +7143,27 @@
70907143
</summary>
70917144
<value>The comparison used to match property names while merging.</value>
70927145
</member>
7146+
<member name="T:Newtonsoft.Json.Linq.JsonSelectSettings">
7147+
<summary>
7148+
Specifies the settings used when selecting JSON.
7149+
</summary>
7150+
</member>
7151+
<member name="P:Newtonsoft.Json.Linq.JsonSelectSettings.RegexMatchTimeout">
7152+
<summary>
7153+
Gets or sets a timeout that will be used when executing regular expressions.
7154+
</summary>
7155+
<value>The timeout that will be used when executing regular expressions.</value>
7156+
</member>
7157+
<member name="P:Newtonsoft.Json.Linq.JsonSelectSettings.ErrorWhenNoMatch">
7158+
<summary>
7159+
Gets or sets a flag that indicates whether an error should be thrown if
7160+
no tokens are found when evaluating part of the expression.
7161+
</summary>
7162+
<value>
7163+
A flag that indicates whether an error should be thrown if
7164+
no tokens are found when evaluating part of the expression.
7165+
</value>
7166+
</member>
70937167
<member name="T:Newtonsoft.Json.Linq.JToken">
70947168
<summary>
70957169
Represents an abstract JSON token.
@@ -7985,6 +8059,16 @@
79858059
<param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
79868060
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
79878061
</member>
8062+
<member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,Newtonsoft.Json.Linq.JsonSelectSettings)">
8063+
<summary>
8064+
Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JSONPath expression. Selects the token that matches the object path.
8065+
</summary>
8066+
<param name="path">
8067+
A <see cref="T:System.String"/> that contains a JSONPath expression.
8068+
</param>
8069+
<param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonSelectSettings"/> used to select tokens.</param>
8070+
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
8071+
</member>
79888072
<member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
79898073
<summary>
79908074
Selects a collection of elements using a JSONPath expression.
@@ -8004,6 +8088,16 @@
80048088
<param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
80058089
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
80068090
</member>
8091+
<member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,Newtonsoft.Json.Linq.JsonSelectSettings)">
8092+
<summary>
8093+
Selects a collection of elements using a JSONPath expression.
8094+
</summary>
8095+
<param name="path">
8096+
A <see cref="T:System.String"/> that contains a JSONPath expression.
8097+
</param>
8098+
<param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonSelectSettings"/> used to select tokens.</param>
8099+
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
8100+
</member>
80078101
<member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
80088102
<summary>
80098103
Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
@@ -8028,6 +8122,13 @@
80288122
</summary>
80298123
<returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
80308124
</member>
8125+
<member name="M:Newtonsoft.Json.Linq.JToken.DeepClone(Newtonsoft.Json.Linq.JsonCloneSettings)">
8126+
<summary>
8127+
Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
8128+
</summary>
8129+
<param name="settings">A <see cref="T:Newtonsoft.Json.Linq.JsonCloneSettings"/> object to configure cloning settings.</param>
8130+
<returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
8131+
</member>
80318132
<member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
80328133
<summary>
80338134
Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
-28.3 KB
Binary file not shown.
1.23 KB
Binary file not shown.

rls/log4net.dll

-6 KB
Binary file not shown.

0 commit comments

Comments
 (0)