Michael Smith
Michael Smith
Adds a few PyPi classifiers. In particular, the License classifier should avoid `pip-licenses` reporting the license as `UNKNOWN`.
In [`StreamingWorkbookReader.init(InputStream)`](https://github.com/monitorjbl/excel-streaming-reader/blob/master/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbookReader.java#L96), if there's a RuntimeException, `f.delete()` is called. `f` may be null at this point, giving a NullPointerException. ``` try { f = writeInputStreamToFile(is, builder.getBufferSize()); ... } catch(IOException e)...
Hi, thanks for this library! I'm using it to parse Spring-like properties files. Given a properties file with no header and a dot-separated value: ``` testkey.nested=testval ``` In 2.1.1 I...
The return value of properties.path() had enumerable keys in 2.1.1 and earlier. Starting in 2.2.0, the keys were no longer enumerable as part of the change made for #40 in...
Curious if anyone has been able to use mongo_fdw with a replica set and a list of seed servers, and if there's a place where connection error log messages are...
Hi, the npm repo has a version 11.0.0 from 7 months ago: https://www.npmjs.com/package/@angular-extensions/svg-icons-builder The last tag or release in GitHub is v3.0.0. I see commits in `main` for 11.0.0 from...
**Description** To ensure reproducibility and minimize susceptibility to supply chain attacks, use a lock file for dependencies. As suggested in https://github.com/GameBridgeAI/ts_serialize/pull/166#issuecomment-3339625062 Using lockfile for deno v2 only. For v1, it'd...