Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies #3

Merged
merged 1 commit into from
Oct 3, 2022
Merged

Update all dependencies #3

merged 1 commit into from
Oct 3, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 3, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
FluentAssertions (source) nuget minor 6.3.0 -> 6.7.0
MSTest.TestAdapter nuget patch 2.2.8 -> 2.2.10
MSTest.TestFramework nuget patch 2.2.8 -> 2.2.10
MetadataExtractor nuget patch 2.7.1 -> 2.7.2
Microsoft.NET.Test.Sdk nuget minor 17.0.0 -> 17.3.2
Moq nuget minor 4.16.1 -> 4.18.2
Moq.AutoMock nuget minor 3.1.0 -> 3.4.0
System.Text.Json (source) nuget patch 6.0.1 -> 6.0.6
actions/checkout action major v2 -> v3
actions/setup-dotnet action major v1 -> v3
actions/upload-artifact action major v2.2.3 -> v3.1.0
danielpalme/ReportGenerator-GitHub-Action action major 4.8.12 -> 5.1.10

Release Notes

fluentassertions/fluentassertions

v6.7.0

Compare Source

What's Changed

New features
Fixes
Documentation
Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@6.6.0...6.7.0

v6.6.0

Compare Source

What's Changed
New features
Improvements
Fixes
Documentation
Others
New Contributors

Full Changelog: fluentassertions/fluentassertions@6.5.1...6.6.0

v6.5.1

Compare Source

What's Changed

Full Changelog: fluentassertions/fluentassertions@6.5.0...6.5.1
Public release notes: https://fluentassertions.com/releases/[#​651](https://github.com/fluentassertions/fluentassertions/issues/651)

v6.5.0

Compare Source

What's Changed
New Contributors

Full Changelog: fluentassertions/fluentassertions@6.4.0...6.5.0

v6.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: fluentassertions/fluentassertions@6.3.0...6.4.0
Public release notes: https://fluentassertions.com/releases/[#​640](https://github.com/fluentassertions/fluentassertions/issues/640)

microsoft/testfx

v2.2.10

See release notes here.

v2.2.9

Parallel output

🙇 Shout out to @​SimonCropp, for bringing this functionality to XUnit in his https://github.com/SimonCropp/XunitContext project. And being an inspiration for implementing this.

MSTest 2.2.9 captures all Console output and attaches it to the correct test, even if you are running tests in parallel. This output is captured from your test code as well as from the tested code. And it requires no special setup.

Before

In 2.2.8, test output is scattered among tests, in our example, one unlucky test gets all the output of other tests just mixed together:

image

After

With 2.2.9, each output is correctly attached to the test that produced it:

image
image

Also notice that we are also capturing debug, trace and error. And we are not awaiting the FastChild method, and the output is still assigned correctly. Souce code.

Limitations

Due to the way that class and assembly initialize, and cleanup are invoked, their output will end up in the first test that run (or last for cleanup). This is unfortunately not easily fixable.

See release notes here.

drewnoakes/metadata-extractor-dotnet

v2.7.2

Compare Source

What's Changed

New Contributors

Full Changelog: drewnoakes/metadata-extractor-dotnet@2.7.1...2.7.2

microsoft/vstest

v17.3.2

See the release notes here.

v17.3.1

See the release notes here.

v17.3.0

See the release notes here.

v17.2.0

See the release notes here.

v17.1.0

See the release notes here.

moq/moq4

v4.18.2

Changed
  • Update package reference to Castle.Core (DynamicProxy) from version 5.0.0 to 5.1.0 (@​stakx, #​1275)
  • Removed dependency on System.Threading.Tasks.Extensions for netstandard2.1 and net6.0 (@​tibel, #​1274)
Fixed
  • "Expression is not an event add" when using .Raises() with redeclared event (@​howcheng, #​1175)
  • MissingMethodException when mocking interface with sealed default implementation (@​pjquirk, #​1209)
  • Throws TypeLoadException on mock when a record has a base record on .NET 6 (@​tgrieger-sf, #​1273)

v4.18.1

Fixed
  • Regression with lazy evaluation of It.Is predicates in setup expressions after updating from 4.13.1 to 4.16.1 (@​b3go, #​1217)
  • Regression with SetupProperty where Moq fails to match a property accessor implementation against its definition in an interface (@​Naxemar, #​1248)
  • Difference in behavior when mocking async method using .Result vs without (@​cyungmann, #​1253)

v4.18.0

New major version of DynamicProxy (you may get better performance!), so please update with care.

Changed
Fixed
  • Can't set up "private protected" properties (@​RobSiklos, #​1170)
  • Using [...] an old version of System.Net.Http which is vulnerable to "DoS", "Spoofing", "Privilege Escalation", "Authentication Bypass" and "Information Exposure" (@​sidseter, #​1219)
  • Failure when invoking a method with by-ref parameter & mockable return type on a mock with CallBase and DefaultValue.Mock configured (@​IanKemp, #​1249)

v4.17.2

Fixed

v4.17.1

Added
  • SetupSet, VerifySet methods for mock.Protected().As<>() (@​tonyhallett, #​1165)
  • New Throws method overloads that allow specifying a function with or without parameters, to provide an exception, for example .Throws(() => new InvalidOperationException())
    and Setup(x => x.GetFooAsync(It.IsAny<string>()).Result).Throws((string s) => new InvalidOperationException(s)). (@​adam-knights, #​1191)
Changed
  • Update package reference to Castle.Core (DynamicProxy) from version 4.4.0 to 4.4.1 (@​stakx, #​1233)
Fixed
moq/Moq.AutoMocker

v3.4.0

What's Changed

Full Changelog: moq/Moq.AutoMocker@v3.3.0...v3.4.0

v3.3.0

What's Changed

Full Changelog: moq/Moq.AutoMocker@v3.2.0...v3.3.0

v3.2.0

What's Changed

Full Changelog: moq/Moq.AutoMocker@v3.1.0...v3.2.0

dotnet/runtime

v6.0.6

Release

v6.0.5

Release

v6.0.4

Release

v6.0.3

Release

v6.0.2

Release

actions/checkout

v3

Compare Source

actions/setup-dotnet

v3

Compare Source

v2

Compare Source

actions/upload-artifact

v3.1.0

Compare Source

What's Changed

v3.0.0

Compare Source

What's Changed

  • Update default runtime to node16 (#​293)
  • Update package-lock.json file version to 2 (#​302)
Breaking Changes

With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.

v2.3.1

Compare Source

Fix for empty fails on Windows failing on upload #​281

v2.3.0

Compare Source

  • Optimizations for faster uploads of larger files that are already compressed
  • Significantly improved logging when there are chunked uploads
  • Clarifications in logs around the upload size and prohibited characters that aren't allowed in the artifact name or any uploaded files
  • Various other small bugfixes & optimizations

v2.2.4

Compare Source

  • Retry on HTTP 500 responses from the service
danielpalme/ReportGenerator-GitHub-Action

v5.1.10

Compare Source

v5.1.9

Compare Source

v5.1.8

Compare Source

v5.1.7

Compare Source

v5.1.6

Compare Source

v5.1.5

Compare Source

v5.1.4

Compare Source

v5.1.3

Compare Source

v5.1.2

Compare Source

v5.1.1

Compare Source

v5.1.0

Compare Source

v5.0.4

Compare Source

v5.0.3

Compare Source

v5.0.2

Compare Source

v5.0.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@mu88 mu88 merged commit 666ce93 into main Oct 3, 2022
@renovate renovate bot deleted the renovate/all branch October 3, 2022 15:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant