dependabot[bot] opened a new pull request, #3257:
URL: https://github.com/apache/ignite-3/pull/3257

   Bumps [NUnit](https://github.com/nunit/nunit) from 3.13.3 to 4.0.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/nunit/nunit/releases";>NUnit's releases</a>.</em></p>
   <blockquote>
   <h2>NUnit 4.0.1</h2>
   <p>Patch release to fix windows targets</p>
   <p>See <a 
href="https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-401---december-2-2023";>release
 notes</a>
   and
   See <a 
href="https://docs.nunit.org/articles/nunit/release-notes/Nunit4.0-MigrationGuide.html";>migration
 guide</a></p>
   <h2>NUnit 4.0.0</h2>
   <p>See <a 
href="https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-400---november-26-2023";>release
 notes</a>
   and
   See <a 
href="https://docs.nunit.org/articles/nunit/release-notes/Nunit4.0-MigrationGuide.html";>migration
 guide</a></p>
   <h2>NUnit 4.0.0-beta.1</h2>
   <p>See  <a 
href="https://docs.nunit.org/articles/nunit/release-notes/framework.html";>release
 notes</a>
   and <a 
href="https://docs.nunit.org/articles/nunit/Towards-NUnit4.html";>information</a></p>
   <h2>NUnit 3.14.0</h2>
   <p>See  <a 
href="https://docs.nunit.org/articles/nunit/release-notes/framework.html";>release
 notes</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/nunit/nunit/blob/master/CHANGES.md";>NUnit's 
changelog</a>.</em></p>
   <blockquote>
   <h2>NUnit 4.0.0 - November 26, 2023</h2>
   <p>All changes, see <a 
href="https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-400";>release
 notes</a></p>
   <h2>NUnit 4.0.0-beta.1 - October 8, 2023</h2>
   <p>This release is the first beta release of NUnit 4.0.
   All changes, see <a 
href="https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-400-beta1---tba";>release
 notes</a></p>
   <h2>NUnit 3.13.2 - April 27, 2021</h2>
   <p>This release fixes a new issue with the <code>FixtureLifeCycle</code> 
attribute where <code>IDisposable</code> test fixtures were not being disposed 
properly. As always, <a 
href="https://github.com/gleb-osokin";><code>@​gleb-osokin</code></a> has been a 
great help with this new feature.</p>
   <p>It also fixes a long-standing performance issue with 
<code>CollectionAssert.AreEquivalent</code> and the 
<code>CollectionEquivalentConstraint</code> when comparing large collections. 
The deep comparison that NUnit performs on the two collections will always have 
a worst case bound of O(n^2) but we have optimized it so that the majority of 
use cases will be closer to O(n).</p>
   <p>We've also made significant optimizations to the OR filters for selecting 
tests using their full name. This dramatically improves test performance for 
large code bases that use <code>dotnet test</code>. Thanks to <a 
href="https://github.com/pakrym";><code>@​pakrym</code></a> for his help with 
this.</p>
   <h3>Issues Resolved</h3>
   <ul>
   <li>2799 CollectionAssert.AreEquivalent is extremely slow</li>
   <li>3589 File headers, copyrights, and licenses</li>
   <li>3773 IDisposable not working with InstancePerTestCase</li>
   <li>3779 Obsolete AreEqual methods with nullable numeric arguments for 
3.13</li>
   <li>3784 Build the v3.13-dev branch</li>
   <li>3786 NUnit with dotnet test results in O(n^2) filtering complexity</li>
   <li>3810 Enable deterministic build</li>
   <li>3818 AppVeyor failing to build v3.13-dev branch PRs</li>
   <li>3832 Deploy v3.13-dev branch builds to MyGet</li>
   </ul>
   <h2>NUnit 3.13.1 - January 31, 2021</h2>
   <p>This release addresses several misses with the new 
<code>FixtureLifeCycle</code> attribute, switches to using <a 
href="https://github.com/dotnet/sourcelink";>SourceLink</a> and NuGet <a 
href="https://docs.microsoft.com/en-us/nuget/create-packages/symbol-packages-snupkg";>snupkg</a>
 packages for debugging into NUnit from your unit tests. It also addresses 
issues with the time format of ignored and explicit tests in the test results 
file.</p>
   <h3>Issues Resolved</h3>
   <ul>
   <li>2339 Wrong date format in Ignored TestFixtures</li>
   <li>3715 FixtureLifeCycle(LifeCycle.InstancePerTestCase) Not working with 
TestFixtureSource</li>
   <li>3716 Assembly level FixtureLifeCycle(LifeCycle.InstancePerTestCase) 
doesn't work</li>
   <li>3724 Test start and end time should end with Z</li>
   <li>3726 Assert EqualTo().Within().Seconds does not work with DateTimes in 
NUnit 3.13</li>
   <li>3729 AppVeyor builds failing</li>
   <li>3736 AreEqual.Within throws on failure with non-numeric types</li>
   <li>3743 Parametrized tests do not respect 
FixtureLifeCycle.InstancePerTestCase</li>
   <li>3745 After upgrading to NUnit 3.13.0 the debugger enters NUnit code 
despite having checked &quot;Enable Just My Code&quot;</li>
   </ul>
   <h2>NUnit 3.13 - January 7, 2021</h2>
   <p>The <a 
href="https://docs.nunit.org/articles/nunit/writing-tests/attributes/fixturelifecycle.html";><code>FixtureLifeCycle</code></a>
 attribute has been added to indicate that an instance for a test fixture or 
all test fixtures in an assembly should be constructed for each test within the 
fixture or assembly.</p>
   <p>This attribute may be applied to a test fixture (class) or to a test 
assembly. It is useful in combination with the <a 
href="https://docs.nunit.org/articles/nunit/writing-tests/attributes/parallelizable.html";>Parallelizable
 Attribute</a> so that a new instance of a test fixture is constructed for 
every test within the test fixture. This allows tests to run in isolation 
without sharing instance fields and properties during parallel test runs. This 
make running parallel tests easier because it is easier to make your tests 
thread safe.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/nunit/nunit/commit/dd02233c195bd37e701407c3b36353fb9a988792";><code>dd02233</code></a>
 Merge pull request <a 
href="https://redirect.github.com/nunit/nunit/issues/4575";>#4575</a> from 
nunit/prepare401</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/ea10cbc8e2de37feb539f145c1b4f48566a1e7b0";><code>ea10cbc</code></a>
 Prepare patch release 4.0.1</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/cfcbc97847c9e08b720ffb3b961c48cae5af6199";><code>cfcbc97</code></a>
 Merge pull request <a 
href="https://redirect.github.com/nunit/nunit/issues/4574";>#4574</a> from 
manfred-brands/Issue4564-SupportedOSPlatform</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/112729c36a9de9fc5e36228e2bd8b6148cad8aca";><code>112729c</code></a>
 Add support for Windows10Server to OSPlatformTranslator</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/866d5a405b66efe7105e544a3f418097bd5d67ac";><code>866d5a4</code></a>
 Merge pull request <a 
href="https://redirect.github.com/nunit/nunit/issues/4569";>#4569</a> from 
manfred-brands/Issue4564-SupportedOSPlatform</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/5e557a6919b208e4b8d3df1c854e1a675cd8bad5";><code>5e557a6</code></a>
 Expand SupportOSPlatform to mean minimum supported version</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/5f6c8c290b90c389db4e1d3d2076b57bedafb855";><code>5f6c8c2</code></a>
 Add locking to dictionary access in ConcurrentTest</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/d91b4cfd94432d8b493a1437be7cc85d7610317f";><code>d91b4cf</code></a>
 Merge pull request <a 
href="https://redirect.github.com/nunit/nunit/issues/4562";>#4562</a> from 
nunit/prepare40-2</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/fb95a2808d4e262b44e336cccc74d2843449b1bd";><code>fb95a28</code></a>
 Fixed package description</li>
   <li><a 
href="https://github.com/nunit/nunit/commit/31b3786000bcd2e9a9418a5b08750ffecffd6d97";><code>31b3786</code></a>
 Merge pull request <a 
href="https://redirect.github.com/nunit/nunit/issues/4560";>#4560</a> from 
nunit/prepare40</li>
   <li>Additional commits viewable in <a 
href="https://github.com/nunit/nunit/compare/v3.13.3...v4.0.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=NUnit&package-manager=nuget&previous-version=3.13.3&new-version=4.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to