cdbennett
cdbennett
@gilmrjc Maybe sometimes people want to be too specific, or have too many different classifications for changes (Changed, Added, ...) but one of the most important things to find from...
This is a good question. There are so many different ways to write change log entries, and I think this is similar to issue tracker bug titles. For example: Possible...
For reference, here a full stack dump from v0.33 of the plugin. ``` Caused by: java.lang.ClassCastException: Cannot cast java.util.LinkedHashMap to java.util.List at java.lang.Class.cast (Class.java:3369) at io.fabric8.maven.docker.config.handler.compose.DockerComposeServiceWrapper.asList (DockerComposeServiceWrapper.java:400) at io.fabric8.maven.docker.config.handler.compose.DockerComposeServiceWrapper.getDependsOn (DockerComposeServiceWrapper.java:113)...
The docker-maven-plugin needs to look at the node type and if it's a map, then use asMap() and extract the keys. On the other hand, if it's a List, then...
Automatic recursive by default search/replace is what I expected after using ripgrep (`rg`) and falling in love with it. When I first tried `sd` I was shocked to see it...
Right now I'm having to use "DBMate" instead of sqlx-migrate simply because it does allow us to tell the migration tool to have a custom table name for the migrations...
> After much deliberation, rather than switching ORMs or bending our architecture to fit the constraints of our existing tools, I decided to write a custom migration script. Funnily enough,...
> Just a little thought (in case it's useful). The wonderful clap crate offers a `default_value` and `default_value_t` where `default_value_t` is a typed value. >... > I'm still new to...
Agreed, would be great to have some better documentation and examples. I am looking at using this library as both a client and as a server. I'd be willing to...
I started expanding the tcp-server example in #163 . I'm trying to figure out how to send and receive Modbus exception responses with specific code handling, e.g. invalid function code,...