Bump org.jetbrains.androidx.navigation:navigation-compose from 2.9.0-alpha15 to 2.9.0-alpha16 #36

Closed
dependabot[bot] wants to merge 1 commits from dependabot/gradle/org.jetbrains.androidx.navigation-navigation-compose-2.9.0-alpha16 into master
dependabot[bot] commented 2025-04-14 05:36:26 +03:00 (Migrated from github.com)

Bumps org.jetbrains.androidx.navigation:navigation-compose from 2.9.0-alpha15 to 2.9.0-alpha16.

Changelog

Sourced from org.jetbrains.androidx.navigation:navigation-compose's changelog.

1.8.0-beta02 (April 2025)

Changes since 1.8.0-beta01

Features

iOS

  • Support text input when Full Keyboard Access is enabled #1917
  • Added native behavior for tap, long tap and multiple tap to BasicTextField(TextFieldState) #1923
  • Magnifier support for BasicTextField(TextFieldState) #1926

Fixes

Multiple Platforms

  • Fixed IllegalArgumentException: maxWidth(value) must be >= than minWidth(0) crashes when a TextField with trailingIcon is too narrow #1936
  • Fixed crash when dragging selection in TextField(TextFieldState) while also editing the text, such as by pressing Backspace #1969

iOS

  • Fix Text Menu opening after Select All action tap #1930
  • Fix freeze where scrolling was cancelled but the overscroll effect was not completed #1928
  • Fix overscroll animation freeze when pull-to-refresh is triggered #1932
  • Fix issue where root compose canvas does not resize without animation #1934
  • Fix issue where dialog layer may not be shown #1934
  • Remove focus on accessibility nodes with clearing semantics #1933
  • Fix adding extra MetalView when Compose controller re-enters view hierarchy #1938
  • (prerelease fix) Fix deletion of certain RTL or diacritics characters #1952
  • Fix the first layer appearance freeze #1948
  • Fixed text editing behavior (typing / deleting) in BasicTextField(TextFieldState) with applied OutputTransformation #1953
  • Fixed incorrect undo behavior for text deletion in BasicTextField(TextFieldState) #1956
  • (prerelease fix) Fix Text Menu popup placement #1971

Desktop

  • Fixed only the first character being temporarily shown in a SecureTextField #1853
  • Changes in TextFieldState are now correctly reported to the transformations when inputting composite characters (e.g. ㅀ), instead of the whole text being replaced on each new character #1853
  • Fixed a potential deadlock when calling Snapshot.sendApplyNotifications from a thread other than the event dispatching thread #1955
  • Fix missing window shadows on macOS in case of usage compose.interop.blending flag #1908
  • Fix Execution failed for task ':composeApp:proguardReleaseJars' when material3 is included in the project #5261

Web

  • Fix horizontal scroll when using touchpad and pressing Shift #1909
  • Prevent app from crashing when running in an insecure context where Web Clipboard API is unavailable #1931
  • Replace tab characters with spaces in Text and TextFields, to avoid them being drawn as tofu #1943
  • Fix touch events processing. Now Modifier.detectTransformGestures will allow to handle zoom and rotation gestures #1942

Navigation

... (truncated)

Commits

Dependabot compatibility score

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 commands and options

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)
Bumps [org.jetbrains.androidx.navigation:navigation-compose](https://github.com/JetBrains/compose-jb) from 2.9.0-alpha15 to 2.9.0-alpha16. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/JetBrains/compose-multiplatform/blob/master/CHANGELOG.md">org.jetbrains.androidx.navigation:navigation-compose's changelog</a>.</em></p> <blockquote> <h1>1.8.0-beta02 (April 2025)</h1> <p><em>Changes since 1.8.0-beta01</em></p> <h2>Features</h2> <h3>iOS</h3> <ul> <li>Support text input when Full Keyboard Access is enabled <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1917">#1917</a></li> <li>Added native behavior for tap, long tap and multiple tap to <code>BasicTextField(TextFieldState)</code> <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1923">#1923</a></li> <li>Magnifier support for <code>BasicTextField(TextFieldState)</code> <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1926">#1926</a></li> </ul> <h2>Fixes</h2> <h3>Multiple Platforms</h3> <ul> <li>Fixed <code>IllegalArgumentException: maxWidth(value) must be &gt;= than minWidth(0)</code> crashes when a <code>TextField</code> with <code>trailingIcon</code> is too narrow <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1936">#1936</a></li> <li>Fixed crash when dragging selection in <code>TextField(TextFieldState)</code> while also editing the text, such as by pressing Backspace <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1969">#1969</a></li> </ul> <h3>iOS</h3> <ul> <li>Fix Text Menu opening after Select All action tap <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1930">#1930</a></li> <li>Fix freeze where scrolling was cancelled but the overscroll effect was not completed <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1928">#1928</a></li> <li>Fix overscroll animation freeze when pull-to-refresh is triggered <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1932">#1932</a></li> <li>Fix issue where root compose canvas does not resize without animation <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1934">#1934</a></li> <li>Fix issue where dialog layer may not be shown <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1934">#1934</a></li> <li>Remove focus on accessibility nodes with clearing semantics <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1933">#1933</a></li> <li>Fix adding extra <code>MetalView</code> when Compose controller re-enters view hierarchy <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1938">#1938</a></li> <li><em>(prerelease fix)</em> Fix deletion of certain RTL or diacritics characters <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1952">#1952</a></li> <li>Fix the first layer appearance freeze <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1948">#1948</a></li> <li>Fixed text editing behavior (typing / deleting) in <code>BasicTextField(TextFieldState)</code> with applied <code>OutputTransformation</code> <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1953">#1953</a></li> <li>Fixed incorrect undo behavior for text deletion in <code>BasicTextField(TextFieldState)</code> <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1956">#1956</a></li> <li><em>(prerelease fix)</em> Fix Text Menu popup placement <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1971">#1971</a></li> </ul> <h3>Desktop</h3> <ul> <li>Fixed only the first character being temporarily shown in a <code>SecureTextField</code> <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1853">#1853</a></li> <li>Changes in <code>TextFieldState</code> are now correctly reported to the transformations when inputting composite characters (e.g. ㅀ), instead of the whole text being replaced on each new character <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1853">#1853</a></li> <li>Fixed a potential deadlock when calling <code>Snapshot.sendApplyNotifications</code> from a thread other than the event dispatching thread <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1955">#1955</a></li> <li>Fix missing window shadows on macOS in case of usage <code>compose.interop.blending</code> flag <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1908">#1908</a></li> <li>Fix <code>Execution failed for task ':composeApp:proguardReleaseJars'</code> when <code>material3</code> is included in the project <a href="https://redirect.github.com/JetBrains/compose-multiplatform/pull/5261">#5261</a></li> </ul> <h3>Web</h3> <ul> <li>Fix horizontal scroll when using touchpad and pressing Shift <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1909">#1909</a></li> <li>Prevent app from crashing when running in an insecure context where Web Clipboard API is unavailable <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1931">#1931</a></li> <li>Replace tab characters with spaces in <code>Text</code> and <code>TextField</code>s, to avoid them being drawn as tofu <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1943">#1943</a></li> <li>Fix touch events processing. Now <code>Modifier.detectTransformGestures</code> will allow to handle zoom and rotation gestures <a href="https://redirect.github.com/JetBrains/compose-multiplatform-core/pull/1942">#1942</a></li> </ul> <h3>Navigation</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/JetBrains/compose-jb/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.androidx.navigation:navigation-compose&package-manager=gradle&previous-version=2.9.0-alpha15&new-version=2.9.0-alpha16)](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>
dependabot[bot] commented 2025-04-25 05:56:27 +03:00 (Migrated from github.com)

Superseded by #39.

Superseded by #39.

Pull request closed

Sign in to join this conversation.