Christophe Moine
Christophe Moine
I am loading an X.509 DER file this way (sorry it is Kotlin): ```kotlin val cf = CertificateFactory.getInstance("X.509") val cert = cf.generateCertificate(TestED25519Function::class.java.getResourceAsStream("client-ed25519.der")) as X509Certificate val publicKey = cert.publicKey; ``` In...
I suppose it is the "-beta" which makes trouble: ``` Illegal character near 'beta.1' at com.github.zafarkhaja.semver.expr.Lexer.tokenize(Lexer.java:218) at com.github.zafarkhaja.semver.expr.ExpressionParser.parse(ExpressionParser.java:86) at com.github.zafarkhaja.semver.expr.ExpressionParser.parse(ExpressionParser.java:43) at com.github.zafarkhaja.semver.Version.satisfies(Version.java:325) ```
##### **Overview of the feature request** The actual implementation is pretty basic and does not allow to use it in a productive manner. ##### **Motivation for or Use Case** I...
Let me give some background. We are migrating from: - AWS SDK with: - GCS in production, - Minio for local testing, To: - GCS SDK with: - GCS in...
We cannot provide several JobScope for this method whereas Gitlab API allows it: see `org.gitlab4j.api.JobApi#getJobs(java.lang.Object, org.gitlab4j.api.Constants.JobScope)` Workaround is for instance: ```java GitLabApiForm formData = new GitLabApiForm().withParam("scope", Arrays.asList(Constants.JobScope.SUCCESS, Constants.JobScope.RUNNING, Constants.JobScope.PENDING)); JobApi...
https://github.com/j-easy/easy-flows ~600 stars 🚀
## Description It would be neat to migrate to AWS SDK v2 since v1 was deprecated quite some time ago. AWS provides a tool to help with this task: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/migration-tool.html....