-
-
Notifications
You must be signed in to change notification settings - Fork 10
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 compose.destinations to v2.0.0-beta12 #139
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/compose.destinations
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 6, 2024 01:24
510fd58
to
756567b
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta02
Update compose.destinations to v2.0.0-beta04
May 6, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 7, 2024 17:37
756567b
to
b523118
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta04
Update compose.destinations to v2.0.0-beta05
May 7, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 8, 2024 16:18
b523118
to
1c90816
Compare
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 16, 2024 21:57
1c90816
to
3ba2e4d
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta05
Update compose.destinations to v2.0.0-beta06
May 16, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 18, 2024 18:37
3ba2e4d
to
d0df913
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta06
Update compose.destinations to v2.0.0-beta07
May 18, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 30, 2024 00:03
d0df913
to
997a6b7
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta07
Update compose.destinations to v2.0.0-beta08
May 30, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
May 31, 2024 13:48
997a6b7
to
c21454c
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta08
Update compose.destinations to v2.0.0-beta09
May 31, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
July 21, 2024 05:06
c21454c
to
8eccd9e
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta09
Update compose.destinations to v2.0.0-beta10
Jul 21, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
July 25, 2024 14:58
8eccd9e
to
bc5a319
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta10
Update compose.destinations to v2.0.0-beta11
Jul 25, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
October 18, 2024 14:13
bc5a319
to
16735d2
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta11
Update compose.destinations to v2.0.0-beta12
Oct 18, 2024
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
October 27, 2024 22:58
16735d2
to
9d2d4d1
Compare
renovate
bot
force-pushed
the
renovate/compose.destinations
branch
from
November 3, 2024 18:39
9d2d4d1
to
fde8a74
Compare
renovate
bot
changed the title
Update compose.destinations to v2.0.0-beta12
fix(deps): update compose.destinations to v2.0.0-beta12
Nov 24, 2024
renovate
bot
changed the title
fix(deps): update compose.destinations to v2.0.0-beta12
Update compose.destinations to v2.0.0-beta12
Nov 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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:
2.0.0-beta01
->2.0.0-beta12
2.0.0-beta01
->2.0.0-beta12
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
raamcosta/compose-destinations (io.github.raamcosta.compose-destinations:ksp)
v2.0.0-beta12
Compare Source
Changes
Full Changelog: raamcosta/compose-destinations@2.0.0-beta11...2.0.0-beta12
v2.0.0-beta11
Compare Source
Changes
Full Changelog: raamcosta/compose-destinations@2.0.0-beta10...2.0.0-beta11
v2.0.0-beta10
Compare Source
Changes
Result back feature now supports all types that normal navigation supports! 🚀
Previously, only these result types were allowed:
Now it allows all of these (same as normal navigation):
ResultBackNavigator
or aResultRecipient
you will need to update those calls to pass in aDestinationsNavType
corresponding to your result type.You can check the corresponding generated Destination and see how it calls your Composable, and do the same, or you can just start typing your result class type name (lower case) and IDE will help you.
For example, if your Destination receives a:
ResultBackNavigator<Boolean>
you'll want to pass inresultBackNavigator(booleanNavType)
(booleanNavType
is a top level field you can import from core library)ResultBackNavigator<MyParcelableClass>
you'll passresultBackNavigator(myParcelableClassNavType)
(myParcelableClassNavType
is a top level field you can import from generated code).If not calling it manually, then generated code will do this for you, so no need to change anything in that case.
New debug mode
This is mainly to help me understand users' setup when there's a reported issue so that I can find the root cause and fix it quicker.
New ksp configuration added:
When set, it will write some debug files to a folder on
$rootDir/composeDestinationsDebug
(taking above example).Please make sure to:
DO NOT leave the configuration ON as it may slow down builds for no reason, just remove it after sending me the files.
Full Changelog: raamcosta/compose-destinations@2.0.0-beta09...2.0.0-beta10
v2.0.0-beta09
Compare Source
Changes
Full Changelog: raamcosta/compose-destinations@2.0.0-beta08...2.0.0-beta09
v2.0.0-beta08
Compare Source
Changes
Full Changelog: raamcosta/compose-destinations@2.0.0-beta07...2.0.0-beta08
v2.0.0-beta07
Compare Source
Changes
Example:
Full Changelog: raamcosta/compose-destinations@2.1.0-beta06...2.0.0-beta07
v2.0.0-beta06
Compare Source
Changes
Full Changelog: raamcosta/compose-destinations@2.0.0-beta05...2.0.0-beta06
v2.0.0-beta05
Compare Source
v2.0.0-beta04
Compare Source
v2.0.0-beta02
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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.