Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Kotlin 1.9.20 #27

Merged
merged 2 commits into from
Nov 21, 2023
Merged

Update to Kotlin 1.9.20 #27

merged 2 commits into from
Nov 21, 2023

Conversation

chrisbanes
Copy link
Owner

  • Compose Multiplatform 1.5.10
  • Jetpack Compose Compiler 1.5.4

@chrisbanes chrisbanes enabled auto-merge (squash) November 7, 2023 20:14
Compose Multiplatform 1.5.10
Jetpack Compose Compiler 1.5.4
@chrisbanes chrisbanes merged commit 3c54ff4 into main Nov 21, 2023
2 checks passed
@chrisbanes chrisbanes deleted the cb/kotlin-1.9.20 branch November 21, 2023 11:32
ZacSweers referenced this pull request in ZacSweers/CatchUp Dec 16, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [dev.chrisbanes.haze:haze](https://togithub.com/chrisbanes/haze) |
`0.3.1` -> `0.4.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/dev.chrisbanes.haze:haze/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/dev.chrisbanes.haze:haze/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/dev.chrisbanes.haze:haze/0.3.1/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/dev.chrisbanes.haze:haze/0.3.1/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>chrisbanes/haze (dev.chrisbanes.haze:haze)</summary>

### [`v0.4.1`](https://togithub.com/chrisbanes/haze/releases/tag/0.4.1)

[Compare
Source](https://togithub.com/chrisbanes/haze/compare/0.4.0...0.4.1)

#### What's Changed

- Apply Jetpack Compose Shape to HazeChild.kt on init by
[@&#8203;almozavr](https://togithub.com/almozavr) in
[https://github.com/chrisbanes/haze/pull/55](https://togithub.com/chrisbanes/haze/pull/55)
- Port [#&#8203;55](https://togithub.com/chrisbanes/haze/issues/55) to
:haze by [@&#8203;chrisbanes](https://togithub.com/chrisbanes) in
[https://github.com/chrisbanes/haze/pull/56](https://togithub.com/chrisbanes/haze/pull/56)

#### New Contributors

- [@&#8203;almozavr](https://togithub.com/almozavr) made their first
contribution in
[https://github.com/chrisbanes/haze/pull/55](https://togithub.com/chrisbanes/haze/pull/55)

**Full Changelog**:
chrisbanes/haze@0.4.0...0.4.1

### [`v0.4.0`](https://togithub.com/chrisbanes/haze/releases/tag/0.4.0)

[Compare
Source](https://togithub.com/chrisbanes/haze/compare/0.3.1...0.4.0)

#### New API!

I have broken the existing API, but hopefully you can see why. You no
longer need to manually calculate bounds. `HazeState` +
`Modifier.haze()` + `Modifier.hazeChild()` is all you need.

```kotlin
val hazeState = remember { HazeState() } 

Box {
  LazyColumn(
    modifier = Modifier
      .fillMaxSize()
      .haze(
        // Pass it the HazeState we stored above
        state = hazeState,
        // Need to provide background color of the content
        backgroundColor = MaterialTheme.colorScheme.surface,
      ),
  ) {
    // todo
  }

  Text(
    text = "Content will be blurred behind this",
    modifier = Modifier
      // We use hazeChild on anything where we want the background
      // blurred. We can even provide a shape.
      .hazeChild(
        state = hazeState,
        shape = RoundedCornerShape(16.dp),
      ),
  )
}
```

#### What's Changed

- Update dependency androidx.compose.ui:ui to v1.6.0-beta01 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/34](https://togithub.com/chrisbanes/haze/pull/34)
- Update agp to v8.1.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/35](https://togithub.com/chrisbanes/haze/pull/35)
- Update dependency androidx.compose.material3:material3 to
v1.2.0-alpha11 by [@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/33](https://togithub.com/chrisbanes/haze/pull/33)
- Update dependency androidx.activity:activity-compose to v1.8.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/32](https://togithub.com/chrisbanes/haze/pull/32)
- Update plugin metalava to v0.3.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/29](https://togithub.com/chrisbanes/haze/pull/29)
- Update to Kotlin 1.9.20 by
[@&#8203;chrisbanes](https://togithub.com/chrisbanes) in
[https://github.com/chrisbanes/haze/pull/27](https://togithub.com/chrisbanes/haze/pull/27)
- Update compose.multiplatform to v1.5.11 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/38](https://togithub.com/chrisbanes/haze/pull/38)
- Update spotless to v6.23.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/39](https://togithub.com/chrisbanes/haze/pull/39)
- Update actions/setup-java action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/41](https://togithub.com/chrisbanes/haze/pull/41)
- Update dependency gradle to v8.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/40](https://togithub.com/chrisbanes/haze/pull/40)
- Update dependency com.diffplug.spotless to v6.23.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/44](https://togithub.com/chrisbanes/haze/pull/44)
- Update spotless to v6.23.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/46](https://togithub.com/chrisbanes/haze/pull/46)
- Update agp to v8.2.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/45](https://togithub.com/chrisbanes/haze/pull/45)
- Update dependency androidx.compose.material3:material3 to
v1.2.0-alpha12 by [@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/42](https://togithub.com/chrisbanes/haze/pull/42)
- Update dependency androidx.compose.ui:ui to v1.6.0-beta02 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/43](https://togithub.com/chrisbanes/haze/pull/43)
- Update actions/setup-python action to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/50](https://togithub.com/chrisbanes/haze/pull/50)
- Update plugin com.gradle.enterprise to v3.16 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/49](https://togithub.com/chrisbanes/haze/pull/49)
- Update actions/deploy-pages action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/48](https://togithub.com/chrisbanes/haze/pull/48)
- Update actions/configure-pages action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/chrisbanes/haze/pull/47](https://togithub.com/chrisbanes/haze/pull/47)
- API refactor by [@&#8203;chrisbanes](https://togithub.com/chrisbanes)
in
[https://github.com/chrisbanes/haze/pull/36](https://togithub.com/chrisbanes/haze/pull/36)
- Fix position issue by
[@&#8203;MohamedRejeb](https://togithub.com/MohamedRejeb) in
[https://github.com/chrisbanes/haze/pull/52](https://togithub.com/chrisbanes/haze/pull/52)
- Small API tidy-ups by
[@&#8203;chrisbanes](https://togithub.com/chrisbanes) in
[https://github.com/chrisbanes/haze/pull/53](https://togithub.com/chrisbanes/haze/pull/53)
- More API tweaks by
[@&#8203;chrisbanes](https://togithub.com/chrisbanes) in
[https://github.com/chrisbanes/haze/pull/54](https://togithub.com/chrisbanes/haze/pull/54)

**Full Changelog**:
chrisbanes/haze@0.3.1...0.4.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/ZacSweers/CatchUp).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Zac Sweers <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant