Bump the nuget group across 1 directory with 5 updates
Bumps the nuget group with 5 updates in the / directory:
| Package | From | To |
|---|---|---|
| CSharpier.MsBuild | 0.28.2 |
0.29.2 |
| FluentAssertions | 6.12.0 |
6.12.1 |
| Microsoft.NET.Test.Sdk | 17.10.0 |
17.11.1 |
| xunit | 2.9.0 |
2.9.2 |
| PolyShim | 1.12.0 |
1.13.0 |
Updates CSharpier.MsBuild from 0.28.2 to 0.29.2
Release notes
Sourced from CSharpier.MsBuild's releases.
0.29.2
What's Changed
Comments don't follow tabs indent style #1343
Prior to
0.29.2CSharpier was converting any tabs within the block of a multiline comment to spaces.public void SomeFunction() { /* The following line is an example with an indent: This line is indented by one tab. (prior to 0.29.2 this would end up as a tab followed by 4 spaces) */ /* The following line is an example with an indent: This line is indented by 4 spaces but will be converted to 1 tab (prior to 0.29.2 this would end up as a tab followed by 4 spaces) */ /* The following line is an example with an indent: This line is indented by 3 spaces but will be left as 3 spaces */ }
csharpier-ignore-startnow supported in object initializers #1342// input & expected output return new SomeClass { // csharpier-ignore-start SomeProperty = someValue, SomeProperty2 = someValue // csharpier-ignore-end };// 0.29.1
return new SomeClass
{
// csharpier-ignore-start
SomeProperty = someValue,
SomeProperty2 = someValue
// csharpier-ignore-end
};Fixed extra new line between cast and collection expression. #1334
// input & expected output CallMethod( (string[]) [ longerValue_____________________________________________, longerValue_____________________________________________, </tr></table>
... (truncated)
Changelog
Sourced from CSharpier.MsBuild's changelog.
# 0.29.2
What's Changed
Comments don't follow tabs indent style #1343
Prior to
0.29.2CSharpier was converting any tabs within the block of a multiline comment to spaces.public void SomeFunction() { /* The following line is an example with an indent: This line is indented by one tab. (prior to 0.29.2 this would end up as a tab followed by 4 spaces) */ /* The following line is an example with an indent: This line is indented by 4 spaces but will be converted to 1 tab (prior to 0.29.2 this would end up as a tab followed by 4 spaces) */ /* The following line is an example with an indent: This line is indented by 3 spaces but will be left as 3 spaces */ }
csharpier-ignore-startnow supported in object initializers #1342// input & expected output return new SomeClass { // csharpier-ignore-start SomeProperty = someValue, SomeProperty2 = someValue // csharpier-ignore-end };// 0.29.1
return new SomeClass
{
// csharpier-ignore-start
SomeProperty = someValue,
SomeProperty2 = someValue
// csharpier-ignore-end
};Fixed extra new line between cast and collection expression. #1334
// input & expected output CallMethod( (string[]) [ longerValue_____________________________________________, longerValue_____________________________________________, </tr></table>
... (truncated)
Commits
57c3ca1Releasing 0.29.2 (#1347)861f281Support custom file extensions with editor config (#1346)e90022efixing issue when formatting with tabs that would convert tabs in com… (#1344)3fd7faaAdding support for csharpier-ignore-start in object initializers (#1345)8bca3cefixing issue with extra line before collection expression within a ca… (#1335)4d51407Tweak the logic around validating installs so it doesn't bomb out and… (#1339)12fb058Possible fix for issue on osx (#1338)90c6c28proper indent sizeb87b4dfReleasing 0.29.1 (#1331)10e0780Support for multiple csharpier servers running at the same time, have them wr...- Additional commits viewable in compare view
Updates FluentAssertions from 6.12.0 to 6.12.1
Release notes
Sourced from FluentAssertions's releases.
6.12.1
What's Changed
Improvements
- Improve
BeEmpty()andBeNullOrEmpty()performance forIEnumerable<T>, by materializing only the first item - #2530Fixes
- Fixed formatting error when checking nullable
DateTimeOffsetwithBeWithin(...).Before(...)- #2312BeEquivalentTowill now find and can map subject properties that are implemented through an explicitly-implemented interface - #2152- Fixed that the
becauseandbecauseArgswere not passed down the equivalency tree - #2318BeEquivalentTocan again compare a non-genericIDictionarywith a generic one - #2358- Fixed that the
FormattingOptionswere not respected in innerAssertionScope- #2329- Capitalize
trueandfalsein failure messages and make them formattable to a customBooleanFormatter- #2390, #2393- Improved the failure message for
NotBeOfTypewhen wrapped in anAssertionScopeand the subject is null - #2399- Improved the failure message for
BeWritable/BeReadablewhen wrapped in anAssertionScopeand the subject is read-only/write-only - #2399- Improved the failure message for
ThrowExactly[Async]when wrapped in anAssertionScopeand no exception is thrown - #2398- Improved the failure message for
[Not]HaveExplicitPropertywhen wrapped in anAssertionScopeand not implementing the interface - #2403- Improved the failure message for
[Not]HaveExplicitMethodwhen wrapped in anAssertionScopeand not implementing the interface - #2403- Changed
BeEquivalentToto excludeprivate protectedmembers from the comparison - #2417- Fixed using
BeEquivalentToon an emptyArraySegment- #2445, #2511BeEquivalentTowith a custom comparer can now handle null values - #2489- Ensured that nested calls to
AssertionScope(context)create a chained context - #2607- One overload of the
AssertionScopeconstructor would not create an actual scope associated with the thread - #2607- Fixed
ThrowWithinAsyncnot respectingOperationCanceledException- #2614- Fixed using
BeEquivalentTowith anIEqualityComparertargeting nullable types - #2648Full Changelog: https://github.com/fluentassertions/fluentassertions/compare/6.12.0...6.12.1
Commits
a8e7f17Update qodanad58e0b5Turn off RoslynAnalyzers in Qodana WF (#2504)2181217Remove unused usings2c3a012Make implicit usage more explicit1d5d64fDo not useUsingLineBreaksfor[Not]BeSameAsc30fc7aFixedBeEquivalentTowhen using a custom comparer targeting nullable types ...f9b770bMake ThrowWithinAsync respect canceled tasks (#2614)f204cf3Simplify deferred allocation with local functiona3644b0Only allocate Lazy<> and lambda when necessaryf3b4564Ensured that nested assertion scopes produce a nested context (#2607)- Additional commits viewable in compare view
Updates Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.1
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
v17.11.1
What's Changed
- [rel/17.11] Forward error output from testhost as info by
@nohwndin microsoft/vstest#5193Full Changelog: https://github.com/microsoft/vstest/compare/v17.11.0...v17.11.1
v17.11.0
What's Changed
- Add reference to the AdapterUtilities library in the spec docs. by
@peterwaldin microsoft/vstest#4958- Stack trace when localized, and new messages by
@nohwndin microsoft/vstest#4944- Fix single quote and space in F# pretty methods by
@nohwndin microsoft/vstest#4969- Update .NET runtimes to latest patch version by
@Evangelinkin microsoft/vstest#4975- Update dotnetcoretests.md by
@DickBakerin microsoft/vstest#4977- Add list of known TestingPlatform dlls by
@nohwndin microsoft/vstest#4983- Update framework version used for testing, and test matrix by
@nohwndin microsoft/vstest#4970- Add output forwarding for .NET by
@nohwndin microsoft/vstest#4988- Remove usage of pt images before decomissioning by
@nohwndin microsoft/vstest#4994- chore: Add more details to acquistion section. by
@voroninpin microsoft/vstest#4999- Simplify banner by
@nohwndin microsoft/vstest#5013- Forward standard output of testhost by
@nohwndin microsoft/vstest#4998- Add missing copyright header by
@MichaelSimonsin microsoft/vstest#5020- Add option to not share .NET Framework testhosts by
@nohwndin microsoft/vstest#5018- GetTypesToLoad Attribute cant be null by
@SimonCroppin microsoft/vstest#5054- rawArgument in GetArgumentList cant be null by
@SimonCroppin microsoft/vstest#5056- fix Atribute typo by
@SimonCroppin microsoft/vstest#5057- remove unnecessary list alloc for 2 scenarios in TestRequestManager.GetSources by
@SimonCroppin microsoft/vstest#5058- fix incompatiblity typo by
@SimonCroppin microsoft/vstest#5059- remove redundant inline method in IsPlatformIncompatible by
@SimonCroppin microsoft/vstest#5060- fix Sucess typo by
@SimonCroppin microsoft/vstest#5061- use some null coalescing by
@SimonCroppin microsoft/vstest#5062- Add cts into friends of TranslationLayer by
@jakubch1in microsoft/vstest#5075- Use built in sha1 for id generation by
@nohwndin microsoft/vstest#5081- All output in terminal logger by
@nohwndin microsoft/vstest#5083- Ignore env test by
@nohwndin microsoft/vstest#5095- Dispose XmlReader in XmlRunSettingsUtilities by
@omajidin microsoft/vstest#5094- Bump to macos-12 build image by
@akoeplingerin microsoft/vstest#5101- Handle ansi escape in terminal logger reporter by
@nohwndin microsoft/vstest#5084- remove disable interactive auth by
@nohwndin microsoft/vstest#5110- Error output as info in terminal logger by
@nohwndin microsoft/vstest#5113- Write dll instead of target on abort, rename errors by
@nohwndin microsoft/vstest#5115
- [rel/17.11] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@dotnet-maestroin microsoft/vstest#5152New Contributors
@peterwaldmade their first contribution in microsoft/vstest#4958@DickBakermade their first contribution in microsoft/vstest#4977@voroninpmade their first contribution in microsoft/vstest#4999@akoeplingermade their first contribution in microsoft/vstest#5101
... (truncated)
Commits
58dbd02Revert "Do not publish to BAR when RTM version is built"aa62848Do not publish to BAR when RTM version is builtd824a2fBump 17.11.1ed4ac92Forward error output from testhost as info (#5193)c6ad3e3Update dependencies from https://dev.azure.com/devdiv/DevDiv/_git/vs-code-cov...910ca0dFix output based test (#5131)0518ceaRebrand to 17.11-release (#5128)5b69fd3Write dll instead of target on abort, rename errors (#5115)7264afaError output as info in terminal logger (#5113)3d2ea06remove disable interactive auth (#5110)- Additional commits viewable in compare view
Updates xunit from 2.9.0 to 2.9.2
Commits
82543a6v2.9.20f8f156#3031: Changes to TheoryData break tests with arrays of objects502f6d1Bump up to v2.9.2-prebb7c3e4v2.9.15d70d25#3028: Support IGrouping<TKey,TValue> in Assert.Equivalent (v2)ed6e05bAdd support for IGrouping<,> in ArgumentFormatter, assuming it's safe to re-e...d97c7f8Restore TestInvoker<T>.GetTaskFromResult (forwards to AsyncUtility.TryConvert...416ed81#3021: Add overload of Assert.Equal to resolve compiler ambiguity6b86235Add Assert.Equivalent support for evaluating Lazy<T>aadff05Updated build table in README- Additional commits viewable in compare view
Updates PolyShim from 1.12.0 to 1.13.0
Release notes
Sourced from PolyShim's releases.
1.13
What's Changed
- Add
System.Threading.Lockby@Tyrrrzin Tyrrrz/PolyShim#10- Add
CountBy(...)andAggregateBy(...)by@Tyrrrzin Tyrrrz/PolyShim#11- Add
Index(...)LINQ method by@Tyrrrzin Tyrrrz/PolyShim#12Full Changelog: https://github.com/Tyrrrz/PolyShim/compare/1.12...1.13
Commits
07041ccAddIndex(...)LINQ method (#12)bfa24b2Fix namespace forPolyfillExtensionsrootdef620cAdd missing attributeb1afdcfAddCountBy(...)andAggregateBy(...)(#11)a2b64cbAdds docs link toSystem.Threading.Locke571bf4AddSystem.Threading.Lock(#10)5c2a6aeClean up2cf975cCreate dependabot.yml- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions