tobad357
tobad357
The goal is to have completely separate versions for subprojects in the same repo so that when the CI system builds it will skip building the projects which don't have...
For us I think it would be better to check if the commits since the last version touches any of the configured paths. The problem relying on gradle would be...
@vivin I actually hacked this feature into a local version of the plugin At the same time we made the customizations for branch name on snapshot builds Let me see...
FYI we also added a flag to allow tag task to disregard if the tag already exists This way we can run tag -Prelease --ignoreDuplicateTags --push and it will only...
We have a similar need when using Cloudflare Durable Objects and Cloudflare KV store which does structural cloning. Would be very helpful it we didn't have to JSON.parse and JSON.stringify...
If using the Vault Java Client then it returns a String ``` // Read operation final String value = vault.logical() .read("secret/hello") .getData().get("value"); ``` [JavaDoc](http://bettercloud.github.io/vault-java-driver/javadoc/) [Java Client](https://github.com/BetterCloud/vault-java-driver)
I'm not sure if resolving would work as it could be deployed on a remote swarm node So maybe just creating a proper path but not caring if it exists...
Would this involve making the response objects typed? If they were then it would be a lot easier to use the API to check responses from docker
@oscb Would it be possible to extend TrackMessage with messageId?: string to allow setting it with the convenience methods
Great :) Should I log another issue to allow seeing request and response body with tap?