Skip to content

Commit e831454

Browse files
Merge pull request #307 from TNG/renovate/all-minor-patch
chore(deps): update all non-major dependencies
2 parents 8bb0c63 + 3a833d4 commit e831454

39 files changed

+98
-98
lines changed

.config/dotnet-tools.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"csharpier": {
6-
"version": "0.28.2",
6+
"version": "0.29.2",
77
"commands": [
88
"dotnet-csharpier"
99
],
@@ -17,7 +17,7 @@
1717
"rollForward": false
1818
},
1919
"dotnet-reportgenerator-globaltool": {
20-
"version": "5.3.8",
20+
"version": "5.3.10",
2121
"commands": [
2222
"reportgenerator"
2323
],

.git-blame-ignore-revs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
60e7aa44819edda932026dc2254db2876e70ead3
1+
60e7aa44819edda932026dc2254db2876e70ead3
2+
dce4f8e835aea7f610b6cdda6f89b62a711df35b

.github/workflows/build.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
20+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
2323
with:
@@ -31,15 +31,15 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3535
- name: Setup .NET
3636
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
3737
with:
3838
dotnet-version: 8.0.303
3939
- name: Run tests
4040
run: dotnet test -c Debug --collect:"XPlat Code Coverage" --settings coverlet.runsettings ArchUnitNETTests/
4141
- name: Upload coverage reports to Codecov
42-
uses: codecov/codecov-action@v4.5.0
42+
uses: codecov/codecov-action@v4.6.0
4343
with:
4444
token: ${{ secrets.CODECOV_TOKEN }}
4545
run-tests:
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{ matrix.os }}
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
53+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5454
- name: Setup .NET
5555
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
5656
with:
@@ -68,7 +68,7 @@ jobs:
6868
contents: write
6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
71+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
7272
- name: Setup doxygen
7373
run: sudo apt-get install doxygen graphviz
7474
- name: Create temporary directory
@@ -88,7 +88,7 @@ jobs:
8888
fi
8989
fi
9090
- name: Checkout gh-pages branch
91-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
91+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9292
with:
9393
ref: gh-pages
9494
path: ${{ env.DOCS_TEMP_DIR }}
@@ -136,7 +136,7 @@ jobs:
136136
- run-tests
137137
steps:
138138
- name: Checkout
139-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
139+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
140140
- name: Setup .NET
141141
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
142142
with:

.github/workflows/codeql.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
language: ["csharp"]
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
24+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2525
- name: Initialize CodeQL
26-
uses: github/codeql-action/init@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0
26+
uses: github/codeql-action/init@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3.26.11
2727
with:
2828
languages: ${{ matrix.language }}
2929
- name: Autobuild
30-
uses: github/codeql-action/autobuild@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0
30+
uses: github/codeql-action/autobuild@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3.26.11
3131
- name: Perform CodeQL Analysis
32-
uses: github/codeql-action/analyze@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0
32+
uses: github/codeql-action/analyze@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3.26.11
3333
with:
3434
category: "/language:${{matrix.language}}"

ArchUnitNET.MSTestV2Tests/ArchUnitNET.MSTestV2Tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
12-
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
13-
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
12+
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
13+
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

ArchUnitNET.NUnitTests/ArchUnitNET.NUnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
1212
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
1313
</ItemGroup>
1414

ArchUnitNET/ArchUnitNET.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<ItemGroup>
2323
<PackageReference Include="CycleDetection" Version="2.0.0"/>
2424
<PackageReference Include="JetBrains.Annotations" Version="2020.3.0"/>
25-
<PackageReference Include="Mono.Cecil" Version="0.11.5"/>
25+
<PackageReference Include="Mono.Cecil" Version="0.11.6"/>
2626
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
2727
<PackageReference Include="System.ValueTuple" Version="4.5.0"/>
2828
</ItemGroup>

ArchUnitNET/Domain/GenericParameter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@ public enum GenericParameterVariance
150150
{
151151
NonVariant,
152152
Covariant,
153-
Contravariant
153+
Contravariant,
154154
}
155155
}

ArchUnitNET/Domain/MethodForm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ public enum MethodForm
1111
Constructor,
1212
Getter,
1313
Setter,
14-
Normal
14+
Normal,
1515
}
1616
}

ArchUnitNET/Domain/PlantUml/Export/PlantUmlDependency.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,6 @@ public enum DependencyType
198198
PackageToPackageIfSameParentNamespace,
199199
OneToOneCompact,
200200
Circle,
201-
NoDependency
201+
NoDependency,
202202
}
203203
}

ArchUnitNET/Domain/PlantUml/Export/PlantUmlNameChecker.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static class PlantUmlNameChecker
2323
"\f",
2424
"\a",
2525
"\b",
26-
"\v"
26+
"\v",
2727
};
2828

2929
public static bool ContainsForbiddenCharacters([CanBeNull] string name)

ArchUnitNET/Domain/Visibility.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ public enum Visibility
1414
Protected = 3,
1515
PrivateProtected = 4,
1616
Private = 5,
17-
NotAccessible = 6 //should only be used for Getters/Setters or as default instead of null
17+
NotAccessible =
18+
6 //should only be used for Getters/Setters or as default instead of null
19+
,
1820
}
1921

2022
public static class VisibilityStrings
@@ -27,7 +29,7 @@ public static class VisibilityStrings
2729
"Protected",
2830
"Private Protected",
2931
"Private",
30-
"Not Accessible"
32+
"Not Accessible",
3133
};
3234

3335
private static readonly string[] LowerCase =
@@ -38,7 +40,7 @@ public static class VisibilityStrings
3840
"protected",
3941
"private protected",
4042
"private",
41-
"not accessible"
43+
"not accessible",
4244
};
4345

4446
public static string ToString(this Visibility visibility, bool useCapitalLetters = false)

ArchUnitNET/Domain/Writability.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public enum Writability
44
{
55
ReadOnly,
66
InitOnly,
7-
Writable
7+
Writable,
88
}
99

1010
public static class WritabilityExtensions

ArchUnitNET/Fluent/ConditionManager.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public ConditionManager()
2828
{
2929
_conditionElements = new List<ConditionElement<T>>
3030
{
31-
new ConditionElement<T>(LogicalConjunctionDefinition.ForwardSecondValue)
31+
new ConditionElement<T>(LogicalConjunctionDefinition.ForwardSecondValue),
3232
};
3333
}
3434

ArchUnitNET/Fluent/Freeze/XmlViolationStore.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class XmlViolationStore : IViolationStore
2525
private static readonly XmlWriterSettings WriterSettings = new XmlWriterSettings
2626
{
2727
Indent = true,
28-
Encoding = Encoding.UTF8
28+
Encoding = Encoding.UTF8,
2929
};
3030

3131
public XmlViolationStore(string storagePath = DefaultStoragePath)

ArchUnitNET/Fluent/PredicateManager.PredicateManager.cs

+9-10
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public PredicateManager(BasicObjectProvider<T> basicObjectProvider)
3030
new PredicateElement<T>(
3131
LogicalConjunctionDefinition.ForwardSecondValue,
3232
new SimplePredicate<T>(t => true, NotSet)
33-
)
33+
),
3434
};
3535
_hasCustomDescription = false;
3636
}
@@ -42,15 +42,14 @@ public PredicateManager(BasicObjectProvider<T> basicObjectProvider)
4242
(current, objectFilterElement) =>
4343
current + " " + objectFilterElement.Description
4444
)
45-
: _predicateElements.First().Description == NotSet
46-
? _basicObjectProvider.Description
47-
: _basicObjectProvider.Description
48-
+ " that"
49-
+ _predicateElements.Aggregate(
50-
"",
51-
(current, objectFilterElement) =>
52-
current + " " + objectFilterElement.Description
53-
);
45+
: _predicateElements.First().Description == NotSet ? _basicObjectProvider.Description
46+
: _basicObjectProvider.Description
47+
+ " that"
48+
+ _predicateElements.Aggregate(
49+
"",
50+
(current, objectFilterElement) =>
51+
current + " " + objectFilterElement.Description
52+
);
5453

5554
public IEnumerable<T> GetObjects(Architecture architecture)
5655
{

ArchUnitNET/Fluent/Slices/SlicesShould.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Architecture architecture
7474
{
7575
var depsFromThisSliceToOtherSlice = new List<string>
7676
{
77-
slice.Description + " -> " + otherSlice.Description
77+
slice.Description + " -> " + otherSlice.Description,
7878
};
7979
depsFromThisSliceToOtherSlice.AddRange(
8080
depsToSlice.Select(dependency =>

ArchUnitNET/Loader/ArchBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ private void UpdateTypeDefinitions()
150150
typeof(AddGenericArgumentDependencies),
151151
typeof(AddClassDependencies),
152152
typeof(AddBackwardsDependencies),
153-
typeof(AddTypesToNamespace)
153+
typeof(AddTypesToNamespace),
154154
}
155155
);
156156
}

ArchUnitNET/Loader/MonoCecilMemberExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ internal static class MonoCecilMemberExtensions
3131
OpCodes.Ldobj,
3232
OpCodes.Stelem_Any,
3333
OpCodes.Ldelema,
34-
OpCodes.Stobj
34+
OpCodes.Stobj,
3535
}; //maybe not complete
3636

3737
internal static string BuildFullName(this MethodReference methodReference)

ArchUnitNETTests/ArchUnitNETTests.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
2424
<PackageReference Include="coverlet.collector" Version="6.0.2">
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
<PrivateAssets>all</PrivateAssets>
2727
</PackageReference>
28-
<PackageReference Include="Verify.xunit" Version="26.1.6" />
29-
<PackageReference Include="xunit" Version="2.9.0" />
30-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
28+
<PackageReference Include="Verify.xunit" Version="26.6.0" />
29+
<PackageReference Include="xunit" Version="2.9.2" />
30+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
3131
</ItemGroup>
3232

3333
<ItemGroup>

ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeDependencyTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void MemberAttributeInnerDependencyAssignedToOriginClass()
100100
_class1,
101101
_class2,
102102
_classWithAttribute,
103-
_classWithBodyTypeA
103+
_classWithBodyTypeA,
104104
};
105105

106106
//Assert

ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeTestsBuild.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class TypeAttributesAreFoundData : IEnumerable<object[]>
7878
BuildTypeAttributeTestData(
7979
typeof(StructWithAttribute),
8080
typeof(ExampleStructAttribute)
81-
)
81+
),
8282
};
8383

8484
public IEnumerator<object[]> GetEnumerator()
@@ -133,7 +133,7 @@ public class MemberAttributesAreFoundData : IEnumerable<object[]>
133133
typeof(ClassWithExampleAttribute),
134134
nameof(ClassWithExampleAttribute.FieldWithAbstractAttributeImplemented),
135135
typeof(ChildOfAbstractAttribute)
136-
)
136+
),
137137
};
138138

139139
public IEnumerator<object[]> GetEnumerator()

ArchUnitNETTests/Domain/Dependencies/Attributes/TestAttributes.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public enum EnumWithAttribute
169169
Enum1,
170170
Enum2,
171171
Enum3,
172-
Enum4
172+
Enum4,
173173
}
174174

175175
[ExampleInterface]

ArchUnitNETTests/Domain/Dependencies/Members/ClassDependenciesIncludeMemberDependencies.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class MethodDependenciesWithClassTestData : IEnumerable<object[]>
4848
BuildClassTestData(typeof(ClassWithConstructors)),
4949
BuildClassTestData(typeof(ClassWithMethodSignatureA)),
5050
BuildClassTestData(typeof(ClassWithMethodSignatureB)),
51-
BuildClassTestData(typeof(ClassWithMethodSignatureC))
51+
BuildClassTestData(typeof(ClassWithMethodSignatureC)),
5252
};
5353

5454
public IEnumerator<object[]> GetEnumerator()

ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterTestsBuild.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ MethodMember expectedTargetMember
100100
{
101101
accessedProperty,
102102
expectedFieldDependencyTarget,
103-
expectedDependency
103+
expectedDependency,
104104
};
105105
}
106106

@@ -184,7 +184,7 @@ public class SetterTestData : IEnumerable<object[]>
184184
typeof(SetterMethodDependencyExamples),
185185
nameof(SetterMethodDependencyExamples.MethodLambdaPair),
186186
typeof(PropertyType)
187-
)
187+
),
188188
};
189189

190190
public IEnumerator<object[]> GetEnumerator()
@@ -219,7 +219,7 @@ public class GetterTestData : IEnumerable<object[]>
219219
nameof(GetterMethodDependencyExamples.SecondUnacceptedCase),
220220
MockGuidStruct,
221221
MockNewGuid
222-
)
222+
),
223223
};
224224

225225
public IEnumerator<object[]> GetEnumerator()
@@ -281,7 +281,7 @@ public class AccessMethodDependenciesByPropertyTestData : IEnumerable<object[]>
281281
typeof(GetterMethodDependencyExamples),
282282
nameof(GetterMethodDependencyExamples.SecondUnacceptedCase),
283283
MethodForm.Getter
284-
)
284+
),
285285
};
286286

287287
public IEnumerator<object[]> GetEnumerator()

0 commit comments

Comments
 (0)