Naftoli Gugenheim
Naftoli Gugenheim
Fixes #360 Add logging for unmatched column types in `columnConfig` method. * Import `org.slf4j.LoggerFactory`. * Add a private logger field using `LoggerFactory.getLogger`. * Log a warning when a column type...
https://github.com/com-lihaoyi/mill/blob/0.12.14/example/extending/plugins/7-writing-mill-plugins/build.mill https://mill-build.org/mill/extending/writing-plugins.html The example downloads Mill for integration tests with this code: ```scala override def forkEnv = Map( "MILL_EXECUTABLE_PATH" -> millExecutable.assembly().path.toString ) object millExecutable extends JavaModule { override def ivyDeps...
Currently is seems that converting from PathCodec[Unit] to Path requires `.encode(()).toOption.get`. I don't understand how encoding can fail. And the other direction is altogether unclear. Perhaps `PathCodec(path.encode)`? I often need...
If this is already supported I can't find it.
I don't know how to deterministically reproduce this, but often after changing a test if I run it with `bleep test --only` it says the test is not found. Simply...
#70 deprecated statsdLayer in favor of statsdUDP (while introducing statsdUDS). But only statsdLayer calls MetricsClient.make(statsdHandler(clt)), so the others don't actually do anything.
Currently if I create a new file it has a `dirtyHash` of `None` even if I stage it, since `git diff` doesn't include staged changes. `git diff HEAD` includes staged...
I asked in [Discussions](https://github.com/asdf-community/infrastructure/discussions/265) and got no response... The plugin for the Mill build tool needs to be updated, and it needs a maintainer, and I could probably help but...
I used Claude Code for this. It fixed the issue for me but I can't vouch for the code. I don't know the codebase and I don't know python too...
Use raw string (r'...') for regex pattern to avoid SyntaxWarning about invalid escape sequences like \w. This warning will become an error in future Python versions. (I used Claude Code...