-
-
Notifications
You must be signed in to change notification settings - Fork 31
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 actions/configure-pages action to v4 #47
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 [@​almozavr](https://togithub.com/almozavr) in [https://github.com/chrisbanes/haze/pull/55](https://togithub.com/chrisbanes/haze/pull/55) - Port [#​55](https://togithub.com/chrisbanes/haze/issues/55) to :haze by [@​chrisbanes](https://togithub.com/chrisbanes) in [https://github.com/chrisbanes/haze/pull/56](https://togithub.com/chrisbanes/haze/pull/56) #### New Contributors - [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​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 [@​renovate](https://togithub.com/renovate) in [https://github.com/chrisbanes/haze/pull/47](https://togithub.com/chrisbanes/haze/pull/47) - API refactor by [@​chrisbanes](https://togithub.com/chrisbanes) in [https://github.com/chrisbanes/haze/pull/36](https://togithub.com/chrisbanes/haze/pull/36) - Fix position issue by [@​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 [@​chrisbanes](https://togithub.com/chrisbanes) in [https://github.com/chrisbanes/haze/pull/53](https://togithub.com/chrisbanes/haze/pull/53) - More API tweaks by [@​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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v3
->v4
Release Notes
actions/configure-pages (actions/configure-pages)
v4
Compare Source
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.
This PR has been generated by Mend Renovate. View repository job log here.