dependabot[bot] opened a new pull request, #2798:
URL: https://github.com/apache/thrift/pull/2798

   Bumps 
[org.jetbrains.kotlinx:kotlinx-coroutines-jdk8](https://github.com/Kotlin/kotlinx.coroutines)
 from 1.6.1 to 1.6.4.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/Kotlin/kotlinx.coroutines/releases";>org.jetbrains.kotlinx:kotlinx-coroutines-jdk8's
 releases</a>.</em></p>
   <blockquote>
   <h2>1.6.4</h2>
   <ul>
   <li>Added <code>TestScope.backgroundScope</code> for launching coroutines 
that perform work in the background and need to be cancelled at the end of the 
test (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3287";>#3287</a>).</li>
   <li>Fixed the POM of <code>kotlinx-coroutines-debug</code> having an 
incorrect reference to <code>kotlinx-coroutines-bom</code>, which cause the 
builds of Maven projects using the debug module to break (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3334";>#3334</a>).</li>
   <li>Fixed the <code>Publisher.await</code> functions in 
<code>kotlinx-coroutines-reactive</code> not ensuring that the 
<code>Subscriber</code> methods are invoked serially (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3360";>#3360</a>).
 Thank you, <a 
href="https://github.com/EgorKulbachka";><code>@​EgorKulbachka</code></a>!</li>
   <li>Fixed a memory leak in <code>withTimeout</code> on K/N with the new 
memory model (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3351";>#3351</a>).</li>
   <li>Added the guarantee that all <code>Throwable</code> implementations in 
the core library are serializable (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3328";>#3328</a>).</li>
   <li>Moved the documentation to <a 
href="https://kotlinlang.org/api/kotlinx.coroutines/";>https://kotlinlang.org/api/kotlinx.coroutines/</a>
 (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3342";>#3342</a>).</li>
   <li>Various documentation improvements.</li>
   </ul>
   <h2>1.6.3</h2>
   <ul>
   <li>Updated atomicfu version to 0.17.3 (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3321";>#3321</a>),
 fixing the projects using this library with JS IR failing to build (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3305";>#3305</a>).</li>
   </ul>
   <h2>1.6.2</h2>
   <ul>
   <li>Fixed a bug with <code>ThreadLocalElement</code> not being correctly 
updated when the most outer <code>suspend</code> function was called directly 
without <code>kotlinx.coroutines</code> (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/2930";>#2930</a>).</li>
   <li>Fixed multiple data races: one that might have been affecting 
<code>runBlocking</code> event loop, and a benign data race in 
<code>Mutex</code> (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3250";>#3250</a>,
 <a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3251";>#3251</a>).</li>
   <li>Obsolete <code>TestCoroutineContext</code> is removed, which fixes the 
<code>kotlinx-coroutines-test</code> JPMS package being split between 
<code>kotlinx-coroutines-core</code> and <code>kotlinx-coroutines-test</code> 
(<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3218";>#3218</a>).</li>
   <li>Updated the ProGuard rules to further shrink the size of the resulting 
DEX file with coroutines (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3111";>#3111</a>,
 <a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3263";>#3263</a>).
 Thanks, <a href="https://github.com/agrieve";><code>@​agrieve</code></a>!</li>
   <li>Atomicfu is updated to <code>0.17.2</code>, which includes a more 
efficient and robust JS IR transformer (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3255";>#3255</a>).</li>
   <li>Kotlin is updated to <code>1.6.21</code>, Gradle version is updated to 
<code>7.4.2</code> (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3281";>#3281</a>).
 Thanks, <a 
href="https://github.com/wojtek-kalicinski";><code>@​wojtek-kalicinski</code></a>!</li>
   <li>Various documentation improvements.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md";>org.jetbrains.kotlinx:kotlinx-coroutines-jdk8's
 changelog</a>.</em></p>
   <blockquote>
   <h2>Version 1.6.4</h2>
   <ul>
   <li>Added <code>TestScope.backgroundScope</code> for launching coroutines 
that perform work in the background and need to be cancelled at the end of the 
test (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3287";>#3287</a>).</li>
   <li>Fixed the POM of <code>kotlinx-coroutines-debug</code> having an 
incorrect reference to <code>kotlinx-coroutines-bom</code>, which cause the 
builds of Maven projects using the debug module to break (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3334";>#3334</a>).</li>
   <li>Fixed the <code>Publisher.await</code> functions in 
<code>kotlinx-coroutines-reactive</code> not ensuring that the 
<code>Subscriber</code> methods are invoked serially (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3360";>#3360</a>).
 Thank you, <a 
href="https://github.com/EgorKulbachka";><code>@​EgorKulbachka</code></a>!</li>
   <li>Fixed a memory leak in <code>withTimeout</code> on K/N with the new 
memory model (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3351";>#3351</a>).</li>
   <li>Added the guarantee that all <code>Throwable</code> implementations in 
the core library are serializable (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3328";>#3328</a>).</li>
   <li>Moved the documentation to <a 
href="https://kotlinlang.org/api/kotlinx.coroutines/";>https://kotlinlang.org/api/kotlinx.coroutines/</a>
 (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3342";>#3342</a>).</li>
   <li>Various documentation improvements.</li>
   </ul>
   <h2>Version 1.6.3</h2>
   <ul>
   <li>Updated atomicfu version to 0.17.3 (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3321";>#3321</a>),
 fixing the projects using this library with JS IR failing to build (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3305";>#3305</a>).</li>
   </ul>
   <h2>Version 1.6.2</h2>
   <ul>
   <li>Fixed a bug with <code>ThreadLocalElement</code> not being correctly 
updated when the most outer <code>suspend</code> function was called directly 
without <code>kotlinx.coroutines</code> (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/2930";>#2930</a>).</li>
   <li>Fixed multiple data races: one that might have been affecting 
<code>runBlocking</code> event loop, and a benign data race in 
<code>Mutex</code> (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3250";>#3250</a>,
 <a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3251";>#3251</a>).</li>
   <li>Obsolete <code>TestCoroutineContext</code> is removed, which fixes the 
<code>kotlinx-coroutines-test</code> JPMS package being split between 
<code>kotlinx-coroutines-core</code> and <code>kotlinx-coroutines-test</code> 
(<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3218";>#3218</a>).</li>
   <li>Updated the ProGuard rules to further shrink the size of the resulting 
DEX file with coroutines (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3111";>#3111</a>,
 <a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3263";>#3263</a>).
 Thanks, <a href="https://github.com/agrieve";><code>@​agrieve</code></a>!</li>
   <li>Atomicfu is updated to <code>0.17.2</code>, which includes a more 
efficient and robust JS IR transformer (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3255";>#3255</a>).</li>
   <li>Kotlin is updated to <code>1.6.21</code>, Gradle version is updated to 
<code>7.4.2</code> (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3281";>#3281</a>).
 Thanks, <a 
href="https://github.com/wojtek-kalicinski";><code>@​wojtek-kalicinski</code></a>!</li>
   <li>Various documentation improvements.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/81e17dd37003a7105e542eb725f51ee0dc353354";><code>81e17dd</code></a>
 Version 1.6.4</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/f31b03787e6184845fdfa7111aac53a11ebefa19";><code>f31b037</code></a>
 Merge remote-tracking branch 'origin/master' into develop</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/c8271ad83147205f41129105dfc7716fef20e072";><code>c8271ad</code></a>
 Improve CoroutineDispatcher documentation (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3359";>#3359</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/ac4f57eed45be38229ef009bfcfd984f70def13a";><code>ac4f57e</code></a>
 Update binary compatibility validator to 0.11.0 (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3362";>#3362</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/143bdfa2da4c34f961651e63fcc6c33667693029";><code>143bdfa</code></a>
 Add a scope for launching background work in tests (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3348";>#3348</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/562902b0dc2ce1af58e37ff203ed0f06675562dc";><code>562902b</code></a>
 Fix debug module publication with shadow plugin (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3357";>#3357</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/8b6473df0336128ca4bac79811d858db330bd251";><code>8b6473d</code></a>
 Comply with Subscriber rule 2.7 in the <code>await*</code> impl (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3360";>#3360</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/10261a76b0c4cd0bdfd73bcb8c50e2eb6b44fb06";><code>10261a7</code></a>
 Update readme (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3343";>#3343</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/793403272dde4f992d3e513d67e4d6d2c1fc5104";><code>7934032</code></a>
 Reduce reachable references of disposed invokeOnTimeout handle (<a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3353";>#3353</a>)</li>
   <li><a 
href="https://github.com/Kotlin/kotlinx.coroutines/commit/f0874d1c5ce1e5c8f091be2981bea3b80168c14e";><code>f0874d1</code></a>
 Merge pull request <a 
href="https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/3342";>#3342</a>
 from Kotlin/kotlinlang-api</li>
   <li>Additional commits viewable in <a 
href="https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.1...1.6.4";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.kotlinx:kotlinx-coroutines-jdk8&package-manager=gradle&previous-version=1.6.1&new-version=1.6.4)](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: dev-unsubscr...@thrift.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to