Le Stephane

Results 79 comments of Le Stephane

hmm somehow I did not see the `--hledger-path` option. It was staring me in the face. Long day

I'm getting this error, and it's not related to DER files, exactly what does it mean (I've read the comments and am none the wiser)? ``` $ cargo geiger --all-dependencies...

What I tried: - `--initialize-at-run-time=com.amazon.corretto.crypto.provider` solves the problem, but is overly broad. - `--initialize-at-run-time=com.amazon.corretto.crypto.provider.Loader` does not solve the problem. If you need the error for that, I could add it...

I try my darndest to have GraalVM not initializa the provider at build time: ## META-INF/native-image/software.amazon.cryptools.AmazonCorrettoCryptoProvider/native-image.properties ``` Args=-H:-UseServiceLoaderFeature \ -H:+TraceServiceLoaderFeature \ -H:ServiceLoaderFeatureExcludeServices=com.amazon.corretto.crypto.provider.AmazonCorrettoCryptoProvider \ --trace-object-instantiation=com.amazon.corretto.crypto.provider.Loader \ --trace-class-initialization=com.amazon.corretto.crypto.provider.Loader \ --trace-object-instantiation=com.amazon.corretto.crypto.provider.Janitor \ --trace-class-initialization=com.amazon.corretto.crypto.provider.Janitor...

Ah, I see in your `module-info.class` another class that may be loaded: ```java module com.amazon.corretto.crypto.provider { requires java.logging; exports com.amazon.corretto.crypto.provider; provides java.security.Provider with com....ServiceProviderFactory;

latest update (and last one for a while): ## native-image.properties ``` Args=\ --initialize-at-run-time=com.amazon.corretto.crypto.provider \ --trace-class-initialization=com.amazon.corretto.crypto.provider.AmazonCorrettoCryptoProvider \ --trace-class-initialization=com.amazon.corretto.crypto.provider.Loader \ -H:+TraceSecurityServices \ -H:ReflectionConfigurationResources=${.}/reflect-config.json \ -H:ResourceConfigurationResources=${.}/resource-config.json ``` ## reflect-config.json ```json [ { "name":"com.amazon.corretto.crypto.provider.AesCtrDrbg$SPI",...

I've realized I have bigger problems, it's not just upgrading castanet that breaks everything, but also upgrading hugo (on its own) breaks everything. So I would have to first find...

Until GitHub starts tracking dependents of private repositories, and use that information to trigger the smallest set of dependabot update checks, people will be forced to come up with DIY...

Sorry I was mistaken about who's causing what. The `tidy:pom` target outputs xml _without_ the newline. ```

> On the next run ODC should re-attempt the download Why does it not validate the file prior to adding it to the cache in the first place? The cache...