dependabot[bot] opened a new pull request, #7617: URL: https://github.com/apache/iotdb/pull/7617
Bumps [scalatest_2.12](https://github.com/scalatest/scalatest) from 3.0.2 to 3.0.9. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/scalatest/scalatest/releases">scalatest_2.12's releases</a>.</em></p> <blockquote> <h2>3.0.9</h2> <p>ScalaTest 3.0.9 is a point release of ScalaTest that backported critical bug fixes and a few enhancements from 3.1.x.</p> <p>Changes included:</p> <ul> <li>Only expect non-filtered Async tests to be reported as completed in AsyncEngine, ParallelTestExecution and RandomTestOrder, which causes incorrect test count reported.</li> <li>In SuiteSortingReporter, only remove suite reporter after the SuiteCompleted event is reported correctly.</li> <li>Improved support for Symbol in Prettifier and PrivateMethodTester.</li> <li>Updated scala-js version to 0.6.33.</li> <li>Updated scalacheck version to 1.14.3.</li> <li>Rewritten SuiteSortingReporter and TestSortingReporter to create timer instance only when required, avoiding creating the timer thread when it is not needed.</li> <li>Changed SuiteRunner so that the behavior of handling fatal error in parallel execution is consistent with execution in serial.</li> </ul> <p>Thanks to the contributors for the ScalaTest/Scalactic 3.0. release:</p> <ul> <li>John Duffell (<a href="https://github.com/johnduffell">https://github.com/johnduffell</a>)</li> <li>Seth Tisue (<a href="https://github.com/SethTisue">https://github.com/SethTisue</a>)</li> <li>Chua Chee Seng (<a href="https://github.com/cheeseng">https://github.com/cheeseng</a>)</li> <li>Bill Venners (<a href="https://github.com/bvenners">https://github.com/bvenners</a>)</li> </ul> <h2>3.0.8</h2> <p>Fixes</p> <ul> <li>Duplicate classes of JMock, JUnit, ScalaCheck, TestNG, EasyMock, and Selenium to org.scalatestplus.xxx packages, this fix problem for user using them from Java.</li> <li>Added <em>root</em> to the macros defined in TypeMatcherMacro.</li> <li>Changed Framework to flavour <a href="https://github.com/WrapWith"><code>@​WrapWith</code></a> when it is available, consistent with behaviour of ScalaTestFramework and Runner.</li> <li>Fixed javascript error in report files generated by HtmlReporter.</li> </ul> <p>Enhancements</p> <ul> <li>Make Prettifier to not depends on scala-xml classes, and removed scala-xml dependency from scalactic.</li> <li>Make StringOps in Prettifier to be compatible with Scala 2.13.0, all tests in AssertionsSpec now passes.</li> <li>Made Every's groupBy method to behave consistently in Scala 2.13.0.</li> <li>Use collection prefix from toString for ColCompatHelper's className implementation of Scala 2.13.0.</li> <li>Updated to use scala-js 0.6.28, 1.0.0-M3 and 1.0.0-M8.</li> </ul> <p>Deprecations</p> <ul> <li>Deprecated org.scalatest.enablers.CheckerAsserting in favour of org.scalatestplus.scalacheck.CheckerAsserting.</li> </ul> <h2>3.0.7</h2> <p>This release has the same functionality as 3.0.6, and should be source compatible with 3.0.6, but unlike 3.0.6, is binary compatible with 3.0.5. Please see the release notes for 3.0.6 to find out the details of what the release contains. The goal with this release it to achieve binary compatibility with 3.0.5. Unfortunately although 3.0.6 should be source compatible with 3.0.5, it was not binary compatible.</p> <h2>3.0.7-RC1</h2> <p>This release has the same functionality as 3.0.6, and should be source compatible with 3.0.6, but unlike 3.0.6, is binary compatible with 3.0.5. Please see the release notes for 3.0.6 to find out the details of what the release contains. The goal with this release it to achieve binary compatibility with 3.0.5. Unfortunately although 3.0.6 should be source compatible with 3.0.5, it was not binary compatible.</p> <h2>3.0.6</h2> <p><strong>Bug Fixes</strong></p> <ul> <li>Fixed incorrect test count problem in scala-js starting 0.6.22.</li> <li>Fixed problem when partial unification is enabled with -Ypartial-unification.</li> <li>Enhanced TypeMatcherHelper to handle primitive types checking.</li> <li>Enhanced TypeMatcherHelper to handle AnyVal correctly.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/scalatest/scalatest/commit/694c2b6d99d224e55d66145f090ed84698ef6d30"><code>694c2b6</code></a> Merge branch 'cheeseng-3.0.9-changes-2' into 3.0.x</li> <li><a href="https://github.com/scalatest/scalatest/commit/733ce48e4690b5789590fee9bafd38f9358dcb7c"><code>733ce48</code></a> Adjusted README.md in publishing steps.</li> <li><a href="https://github.com/scalatest/scalatest/commit/6a9f0cad63685b17be130137c7dbf8186d23e381"><code>6a9f0ca</code></a> Adjusted skip command in SuiteRunner.scala, as 3.0.x does not support native.</li> <li><a href="https://github.com/scalatest/scalatest/commit/62c0cf52fe2bc285944503a6624c62573ccb46e4"><code>62c0cf5</code></a> In SuiteRunner, check if the running suite is distributed to run in parallel,...</li> <li><a href="https://github.com/scalatest/scalatest/commit/831970c3ef302a292debd64f484ebb158b673aa7"><code>831970c</code></a> Added test code that catches the case where suite reporter is removed too early.</li> <li><a href="https://github.com/scalatest/scalatest/commit/df2e828a686f13da88fe0591ea0ebffc9c7d5883"><code>df2e828</code></a> Moved suiteReporterMap -= (head.suiteId) into the doneEvent<- head.doneEvent ...</li> <li><a href="https://github.com/scalatest/scalatest/commit/ab3866a22ececba82dadf681e6d11b948c3bb332"><code>ab3866a</code></a> Remove suite reporter only when the suite's tests are completed.</li> <li><a href="https://github.com/scalatest/scalatest/commit/d6315fb828e43bf20e38cf27480340da79819da3"><code>d6315fb</code></a> Merge branch 'cheeseng-3.0-backport-stray-timer-fix' into 3.0.x</li> <li><a href="https://github.com/scalatest/scalatest/commit/30cdc6a98a9d8fe4e0fa63cf65959126b21a0ed5"><code>30cdc6a</code></a> Merge branch '3.0-backport-stray-timer-fix' of <a href="https://github.com/cheeseng/sc">https://github.com/cheeseng/sc</a>...</li> <li><a href="https://github.com/scalatest/scalatest/commit/2aafe902369d19cdd65a5f67305be218df03ca7a"><code>2aafe90</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/scalatest/scalatest/issues/1872">#1872</a> from cheeseng/3.0-feature-fix-typesafe-sbt-ivy-relea...</li> <li>Additional commits viewable in <a href="https://github.com/scalatest/scalatest/compare/release-3.0.2...release-3.0.9">compare view</a></li> </ul> </details> <br /> [](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 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]
