-
-
Notifications
You must be signed in to change notification settings - Fork 24
feat: allow using version ranges to cope with stale Maven Local cache #1611
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
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
bfe88c2
to
5f291dc
Compare
ba37150
to
6ca3d30
Compare
5f291dc
to
09633a4
Compare
6ca3d30
to
af0de7b
Compare
09633a4
to
cb4a8a3
Compare
af0de7b
to
80db505
Compare
cb4a8a3
to
d9a036e
Compare
80db505
to
6df8a27
Compare
d9a036e
to
a7e496f
Compare
6df8a27
to
cd832fe
Compare
a7e496f
to
ef9782d
Compare
cd832fe
to
c8aeae6
Compare
Related to #1611. We're going to make some changes in the function, so let's add some safety net to prevent regressions + a way to see how the modified function behaves. --------- Co-authored-by: Björn Kautler <Bjoern@Kautler.net>
26c5bb1
to
d0a6ac3
Compare
...src/test/kotlin/io/github/typesafegithub/workflows/mavenbinding/MavenMetadataBuildingTest.kt
Outdated
Show resolved
Hide resolved
229dd5f
to
8e28deb
Compare
d0a6ac3
to
3f9ac7d
Compare
3f9ac7d
to
9321528
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is the last review round 😄
...g-server/src/main/kotlin/io/github/typesafegithub/workflows/jitbindingserver/ActionCoords.kt
Show resolved
Hide resolved
docs/user-guide/using-actions.md
Outdated
Show resolved
Hide resolved
8000
div>
...main/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/domain/ActionCoords.kt
Show resolved
Hide resolved
...main/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/domain/ActionCoords.kt
Show resolved
Hide resolved
…minor version even with more detailed version
9321528
to
2cbfbfc
Compare
We'll see :-D |
e161253
to
9a0da25
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Final2.txt
@Vampire thanks, and sorry for the long wait - I'm trying my best to reduce the backlog of PRs 😄 I think the strategy to focus on mutually iterating on a single PR works really well, lets me focus properly. |
With these changes you can for example depend on
actions:cache__save___major:[v4,v5)"
and get the latest v4 action with latest v4 typing by resolving to a concrete v4.x.y version but the output still contains justv4
.The same for
actions:cache__save___minor:[v4.0,v4.1)
, to get the latest v4.0 but in the output just havev4.0
.