Skip to content

Commit

Permalink
Merge pull request #152 from binarymash/feature/#151-package-update
Browse files Browse the repository at this point in the history
Package updates
  • Loading branch information
binarymash committed Dec 24, 2018
2 parents e9b59d7 + ed98b7b commit 7b0362a
Show file tree
Hide file tree
Showing 16 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion src/Evelyn.Client.Rest/Evelyn.Client.Rest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="2.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/Evelyn.Client.Tests/Evelyn.Client.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoFixture" Version="4.5.0" />
<PackageReference Include="AutoFixture" Version="4.6.0" />
<PackageReference Include="FluentAssertions" Version="5.5.3" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha" />
<PackageReference Include="Microsoft.Extensions.Options" Version="2.1.1" />
Expand Down
4 changes: 2 additions & 2 deletions src/Evelyn.Core.Tests/Evelyn.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoFixture" Version="4.5.0" />
<PackageReference Include="AutoFixture" Version="4.6.0" />
<PackageReference Include="CompareNETObjects" Version="4.57.0" />
<PackageReference Include="FluentAssertions" Version="5.5.3" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NSubstitute" Version="3.1.0" />
<PackageReference Include="Polly" Version="6.1.1" />
<PackageReference Include="Polly" Version="6.1.2" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
<PackageReference Include="TestStack.BDDfy" Version="4.3.2" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ProjectNameWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand All @@ -49,7 +49,7 @@ public void ProjectNameWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand All @@ -61,7 +61,7 @@ public void ProjectNameWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand Down Expand Up @@ -141,7 +141,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void KeyWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -50,7 +50,7 @@ public void KeyWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -62,7 +62,7 @@ public void KeyWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand Down Expand Up @@ -154,7 +154,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}

[Fact]
Expand All @@ -174,7 +174,7 @@ public void NameWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand All @@ -186,7 +186,7 @@ public void NameWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand All @@ -198,7 +198,7 @@ public void NameWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}

[Fact]
Expand All @@ -58,7 +58,7 @@ public void KeyWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -70,7 +70,7 @@ public void KeyWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -82,7 +82,7 @@ public void KeyWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand Down Expand Up @@ -174,7 +174,7 @@ public void NameWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand All @@ -186,7 +186,7 @@ public void NameWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand All @@ -198,7 +198,7 @@ public void NameWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Name, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Name' should not be empty.");
error.ErrorMessage == "'Name' must not be empty.");
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}

[Fact]
Expand All @@ -58,7 +58,7 @@ public void ToggleKeyWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ToggleKey, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Toggle Key' should not be empty.");
error.ErrorMessage == "'Toggle Key' must not be empty.");
}

[Fact]
Expand All @@ -70,7 +70,7 @@ public void ToggleKeyWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ToggleKey, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Toggle Key' should not be empty.");
error.ErrorMessage == "'Toggle Key' must not be empty.");
}

[Fact]
Expand All @@ -91,7 +91,7 @@ public void EnvironmentKeyWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.EnvironmentKey, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Environment Key' should not be empty.");
error.ErrorMessage == "'Environment Key' must not be empty.");
}

[Fact]
Expand All @@ -103,7 +103,7 @@ public void EnvironmentKeyWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.EnvironmentKey, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Environment Key' should not be empty.");
error.ErrorMessage == "'Environment Key' must not be empty.");
}

[Fact]
Expand Down Expand Up @@ -172,7 +172,7 @@ public void ValueWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Value, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Value' should not be empty.");
error.ErrorMessage == "'Value' must not be empty.");
}

[Fact]
Expand All @@ -184,7 +184,7 @@ public void ValueWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Value, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Value' should not be empty.");
error.ErrorMessage == "'Value' must not be empty.");
}

[Fact]
Expand All @@ -196,7 +196,7 @@ public void ValueWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Value, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Value' should not be empty.");
error.ErrorMessage == "'Value' must not be empty.");
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}

[Fact]
Expand All @@ -58,7 +58,7 @@ public void KeyWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -70,7 +70,7 @@ public void KeyWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -82,7 +82,7 @@ public void KeyWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ProjectIdWhenEmptyGuidIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.ProjectId, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Project Id' should not be empty.");
error.ErrorMessage == "'Project Id' must not be empty.");
}

[Fact]
Expand All @@ -58,7 +58,7 @@ public void KeyWhenNullIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -70,7 +70,7 @@ public void KeyWhenEmptyIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand All @@ -82,7 +82,7 @@ public void KeyWhenWhitespaceIsInvalid()
var errors = _validator.ShouldHaveValidationErrorFor(c => c.Key, command).ToList();
errors.Should().Contain(error =>
error.ErrorCode == ErrorCodes.PropertyNotSet &&
error.ErrorMessage == "'Key' should not be empty.");
error.ErrorMessage == "'Key' must not be empty.");
}

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion src/Evelyn.Core/Evelyn.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<ItemGroup>
<PackageReference Include="CqrsLite" Version="0.26.0" />
<PackageReference Include="FluentValidation" Version="8.0.101" />
<PackageReference Include="FluentValidation" Version="8.1.2" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoFixture" Version="4.5.0" />
<PackageReference Include="AutoFixture" Version="4.6.0" />
<PackageReference Include="FluentAssertions" Version="5.5.3" />
<PackageReference Include="Flurl.Http" Version="2.4.0" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Polly" Version="6.1.1" />
<PackageReference Include="Polly" Version="6.1.2" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
<PackageReference Include="TestStack.BDDfy" Version="4.3.2" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoFixture" Version="4.5.0" />
<PackageReference Include="AutoFixture" Version="4.6.0" />
<PackageReference Include="FluentAssertions" Version="5.5.3" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<ItemGroup>
<PackageReference Include="CqrsLite" Version="0.26.0" />
<PackageReference Include="FluentValidation" Version="8.0.101" />
<PackageReference Include="FluentValidation" Version="8.1.2" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.6" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.1.2-alpha">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 7b0362a

Please sign in to comment.