Piotr Olaszewski
Piotr Olaszewski
> That's not something Spring AI can solve (unless perhaps surfacing some auto configuration properties, should that capability exist in those libraries). I thought about some customizers for SDK clients,...
Maybe a good idea will be to adopt a [release-drafter](https://github.com/release-drafter/release-drafter) for the changelog purposec, which is connected with release.
It depends. If you are thinking about add whole spring-core to the project I'm not sure it is a good option. asterisk-java should be a framework agnostic, to take care...
> My biggest concern is that it is a big list of things and big lists can stall an open source project. Indeed, list of things is really big. Doing...
> There is a git hub action for releases, the dart code only updates the version number and creates a git tag which triggers the git hub action. Yes, I...
I like the idea behind this proposal. However, there are many questions about how it should work in corner case scenarios. Specifically, how should we handle the following version strings:...
I'll do my best to implement this - soon. If you want to contribute - fell free.
Agree! Right now we can use freshly introduced builder. So let me recap: ## `Semver` class These methods should use `Builder` under the hood. ### Change * `public Semver withPreRelease(@NotNull...
Right now, this could be handled as you mentioned - by using `Optional`: ```java Semver semver1 = Optional.ofNullable(Semver.coerce("boom")).orElse(new Semver("0.0.0")); Semver semver2 = Optional.ofNullable(Semver.coerce("boom")).orElseThrow(); ``` I think it's a fair enough...
Sounds cool. But this needs rearrange processors a little bit. PS. You are aware that `IvyProcessor` needs to run with companion of `GreaterThanOrEqualZeroProcessor`.