Skip to content

Commit 0d76d22

Browse files
authored
Merge pull request #29 from serilog/dev
1.1.1 Release
2 parents 6975368 + 7380c24 commit 0d76d22

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/Serilog.Expressions/Expressions/Operators.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ static class Operators
8080
OpIsMatch,
8181
OpIsDefined,
8282
RuntimeOpIsNull,
83-
RuntimeOpIsNotNull
83+
RuntimeOpIsNotNull,
84+
RuntimeOpAny,
85+
RuntimeOpAll
8486
};
8587

8688
public static bool SameOperator(string op1, string op2)

src/Serilog.Expressions/Serilog.Expressions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An embeddable mini-language for filtering, enriching, and formatting Serilog
55
events, ideal for use with JSON or XML configuration.</Description>
6-
<VersionPrefix>1.1.0</VersionPrefix>
6+
<VersionPrefix>1.1.1</VersionPrefix>
77
<Authors>Serilog Contributors</Authors>
88
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

test/Serilog.Expressions.Tests/Cases/translation-cases.asv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ coalesce(A, B, C, D) ⇶ coalesce(A, coalesce(B, coales
1818
A[?] ⇶ _Internal_Any(A, |$$p0| {$$p0})
1919
A or B[*] ⇶ _Internal_Or(A, _Internal_All(B, |$$p0| {$$p0}))
2020
not (A is not null) or not (A[?] = 'a') ⇶ _Internal_Or(_Internal_Not(_Internal_IsNotNull(A)), _Internal_Not(_Internal_Any(A, |$$p0| {_Internal_Equal($$p0, 'a')})))
21+
A[?].B[*].C = D ⇶ _Internal_Any(A, |$$p1| {_Internal_All($$p1.B, |$$p0| {_Internal_Equal($$p0.C, D)})})

0 commit comments

Comments
 (0)