Skip to content
This repository has been archived by the owner on Dec 10, 2020. It is now read-only.

Update all (major) #45

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update all (major) #45

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 23, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Type Update Change
Microsoft.AppCenter (source) nuget major 2.6.4 -> 4.0.0
Microsoft.AppCenter.Analytics (source) nuget major 2.6.4 -> 4.0.0
Microsoft.AppCenter.Crashes (source) nuget major 2.6.4 -> 4.0.0
Microsoft.AppCenter.Distribute (source) nuget major 2.6.4 -> 4.0.0
Microsoft.AppCenter.Push (source) nuget major 2.6.4 -> 3.4.3
NUnit (source) nuget major 2.7.1 -> 3.12.0
ReactiveUI (source) nuget major 10.5.43 -> 13.0.1
ReactiveUI.XamForms (source) nuget major 10.5.43 -> 13.0.1
Xamarin.UITest (source) nuget major 2.2.7 -> 3.0.12

Release Notes

nunit/nunit

v3.10.1

Added a namespace to the props file included in the NuGet package to make it
compatible with versions of Visual Studio prior to VS 2017.

v3.9.0

v3.8.1

This release fixes two critical regressions in the 3.8 release. The first caused the console
runner to crash if you are using test parameters. The second issue caused collection
constraints checking for multiple items in a collection to fail.

Issues Resolved
  • 2386 Contains.Item() fails for collections in NUnit 3.8
  • 2390 Missing value attribute in test parameters setting causes NullReferenceException in console

v3.8.0

v3.7.1

This is a hotfix release that addresses occasional hangs when using test parallelization
and fixes crashes in NCrunch prior to version 3.9.

Issues Resolved
  • 2205 Ncrunch: System.Xml.XmlException: Root element is missing, when adding NUnit 3.7.0
  • 2209 NUnit occasionally hangs when parallelizable TestFixture has OneTimeSetUp and OneTimeTearDown

v3.7.0

v3.6.1

This is a hotfix release of the framework that addresses critical issues found in
the 3.6 release.

Issues Resolved
  • 1962 A Theory with no data passes
  • 1986 NUnitLite ignores --workers option
  • 1994 NUnitLite runner crashing when --trace is specified
  • 2017 Two NUnit project's tests fail on systems with comma decimal mark settings
  • 2043 Regression in 3.6.0 when catching AssertionException

v3.6.0

v3.5.0

v3.4.1

Compare Source

Console Runner
  • A new option, --list-extensions, will display all the engine extensions that
    have been installed by the engine.
Issues Resolved
  • 1623 NUnit 3.4 is not integrated with TeamCity
  • 1626 NUnit.ConsoleRunner is not picking up NUnit.Extension.NUnitV2ResultWriter
  • 1628 Agent's process stays in memory when it was failed to unload AppDomain
  • 1635 Console option to list loaded extensions

v3.4.0

Compare Source

Framework
  • Improvements in comparing equality using IEquatable
  • Test case names will only be truncated if the runner requests it or it is overridden on the command line
    with the --test-name-format option
  • The .NET 2.0 version of the framework now includes LINQ. If your tests target .NET 2.0, you can now use
    LINQ queries in your tests
Engine
  • The TeamCity event listener has been separated out into an engine extension
  • Fixed numerous issues around thread safety of parallel test runs
  • Additional fixes to reduce memory usage
  • Fixes for Mono 4.4
Console Runner
  • There is a new --params command line option that allows you to pass parameters to your tests
    which can be retrieved using TestContext.Parameters
  • Another new command line option --loaduserprofile causes the User Profile to be loaded into the
    NUnit Agent process.

See the release notes for a complete list of changes.

v3.2.1

Compare Source

Framework
  • The output and error files are now thread safe when running tests in parallel
  • Added a .NET 3.5 build of the framework preventing conflicts with the compatiblity classes in the 2.0 framework
  • Added a SingleThreadedAttribute to be added to a TestFixture to indicate all child tests should run on the same thread
Engine
  • Unless required, run all tests within a fixture on the same thread
  • Added an EventListener extension point
  • Reduced memory usage
Console Runner
  • No longer probes for newer versions of the engine, instead uses the engine that is included with the console
Issues Resolved
  • 332 Add CF to the Appveyor CI build
  • 640 Keep CF Build (and other future builds) in Sync
  • 773 Upgrade Travis CI from Legacy Infrastructure
  • 1141 Explicit Tests get run when using --where with some filters
  • 1161 NUnit3-Console should disallow the combination of --inprocess and --x86, giving an error message
  • 1208 Apartment on assembly level broken
  • 1231 Build may silently fail some tests
  • 1247 Potential memory issue
  • 1266 SetCultureAttribute does not work if set on assembly level
  • 1302 Create EventListener ExtensionPoint for the Engine
  • 1317 Getting CF framework unit tests running on CI build
  • 1318 NUnit console runner fails with error code -100
  • 1327 TestCaseSource in NUnit 3 converts an argument declared as String[] to String
  • 1329 Unable to build without Compact Framework
  • 1333 Single Thread per Worker
  • 1338 BUILDING.txt is outdated
  • 1349 Collision on System.Func from nunit.framework with System.Core in .Net 3.5 (CS0433)
  • 1352 Tests losing data setup on thread
  • 1359 Compilation error in NUnitPortableDriverTests.cs
  • 1383 Skip Silverlight build if SDK not installed
  • 1386 Bug when using Assert.Equals() with types that explicitly implement IEquatable<T>
  • 1390 --testlist with file with blank first line causes IndexOutOfRangeException
  • 1399 Fixed NullReference issue introduced by the fix for #​681
  • 1405 ITestRunner.StopRun throws exception of type 'System.MissingMethodException'
  • 1406 TextCapture is not threadsafe but is used to intercept calls that are expected to be threadsafe
  • 1410 Make OutFile and ErrFile streamwriters synchronized
  • 1413 Switch console to use a local engine

v3.2.0

Compare Source

In addition to numerous bug fixes, this release adds the long requested OrderAttribute, a new Assert.ThrowsAsync, Assert.That(0, Is.Zero) and other enhancements.

For a full list of issues fixed in this release, please see the release notes.

v3.0.1

Compare Source

Console Runner
  • The Nunit.Runners NuGet package was updated to become a meta-package that pulls in the NUnit.Console package
  • Reinstated the --pause command line option that will display a message box allowing you to attach a debugger if the --debug option does not work
Issues Resolved
  • 994 Add max number of Agents to the NUnit project file
  • 1014 Ensure NUnit API assembly updates with MSI installs
  • 1024 Added --pause flag to console runner
  • 1030 Update Nunit.Runners package to 3.0
  • 1033 "No arguments were provided" with Theory and Values combination
  • 1035 Check null arguments
  • 1037 Async tests not working on Windows 10 Universal
  • 1041 NUnit2XmlResult Writer is reporting Sucess when test fails
  • 1042 NUnit2 reports on 3.0 is different than 2.6.4
  • 1046 FloatingPointNumerics.AreAlmostEqualUlps throws OverflowException
  • 1049 Cannot select Generic tests from command line
  • 1050 Do not expose System.Runtime.CompilerServices.ExtensionAttribute to public
  • 1054 Create nuget feeds for CI builds on Appveyor
  • 1055 nunit3 console runner --where option does not return error on invalid selection string
  • 1060 Remove "Version 3" from NUnit Nuget Package
  • 1061 Nunit30Settings.xml becomes corrupted
  • 1062 Console.WriteLine statements in "OneTimeSetUp" and "OneTimeTearDown" annotated methods are not directed to the console when using nunit3-console.exe runner
  • 1063 Error in Random Test

v3.0.0

Issues Resolved
  • 635 Mono 4.0 Support
reactiveui/reactiveui

v13.0.1

Compare Source

Dependencies:
Features:
Fixes:
Housekeeping:

v12.1.5

Compare Source

Dependencies:
Fixes:
Housekeeping:

v12.1.1

Compare Source

Dependencies:
Features:
Fixes:
Housekeeping:
Other:

v11.5.35

Compare Source

Fixes:
Dependency Changes:
  • d961b05 build(deps): bump Microsoft.NET.Test.Sdk from 16.7.0 to 16.7.1 (#​2502)
  • 341b929 build(deps): bump Xamarin.AndroidX.AppCompat from 1.1.0.2 to 1.2.0 (#​2501)
  • f5aa7f5 build(deps): bump Xamarin.AndroidX.RecyclerView from 1.1.0.1 to 1.1.0.2 (#​2497)
  • ba9f743 build(deps): bump Xamarin.AndroidX.Fragment from 1.2.4.1 to 1.2.4.2 (#​2499)
  • aea9bea build(deps): bump Xamarin.AndroidX.Preference from 1.1.1.1 to 1.1.1.2 (#​2500)
  • aca86fb build(deps): bump Xamarin.AndroidX.AppCompat from 1.1.0.1 to 1.1.0.2 (#​2498)

v11.5.26

Compare Source

Fixes
Dependency Changes

v11.5.17

Compare Source

Fixes
Changes
Dependency Changes

v11.5.6

Compare Source

Changes:
Bug Fixes:

This list of changes was auto generated.

v11.5.1

Compare Source

Major change in this version is nullability support for C# 8, for WPF/WinForms events the minimum version of .Net Framework is 4.7.2, and the minimum .NET Core is now 3.1

Changes:
Bug Fixes
Dependency Updates

v11.4.17

Compare Source

Changes:

v11.4.1

Compare Source

Changes:

v11.3.8

Compare Source

Changes:

v11.3.7

Compare Source

Changes:

This list of changes was auto generated.

v11.3.1

Compare Source

Changes:

v11.2.3

Compare Source

Changes:

v11.2.1

Overview

Splat.Drawing functionality is now in its own assembly called ReactiveUI.Drawing. This will prevent unnecessary bitmap processing when not needed on Android.

Changes:

Renovate configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 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, check this box

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

@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 738248c to b836c7e Compare December 1, 2020 09:22
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
1 participant