Generating self-signed certificate works again, no more --add-exports + small fixes - #912
Conversation
Since apache/pekko-grpc@1c7e655 (see this commit's reference.conf) Also see current reference.conf: https://github.com/apache/pekko-grpc/blob/v1.1.1/runtime/src/main/resources/reference.conf
| {type = "JKS", path = ${user.dir}/conf/selfsigned.keystore} | ||
| ] | ||
| } | ||
| } |
There was a problem hiding this comment.
pekko/akka-grpc does not have a ssl-config settings key anymore
Since
apache/pekko-grpc@1c7e655
(see this commit's reference.conf)
Also see current reference.conf:
https://github.com/apache/pekko-grpc/blob/v1.1.1/runtime/src/main/resources/reference.conf
| Download SSLyze: | ||
|
|
||
| [https://github.com/iSECPartners/sslyze/releases](https://github.com/iSECPartners/sslyze/releases) | ||
| [https://github.com/nabla-c0d3/sslyze](https://github.com/nabla-c0d3/sslyze) |
There was a problem hiding this comment.
The repo moved, see announcement: https://github.com/iSECPartners/sslyze/releases
| ```bash | ||
| cd sslyze-0_9-osx64 | ||
| python sslyze.py --regular www.example.com:9443 | ||
| python -m sslyze --mozilla_config intermediate www.example.com:9443 |
There was a problem hiding this comment.
The --regular flag does not exist anymore:
https://github.com/nabla-c0d3/sslyze/releases/tag/5.0.0
The
--mozilla-configoption replaces--regular, which has been removed.
…d to sbt-web 1.6 yet
| # Do not run docs/paradox currently because sbt-paradox has not upgraded to sbt-web 1.6 yet: | ||
| # https://github.com/lightbend/paradox/blob/v0.10.7/plugin/src/main/scala/com/lightbend/paradox/sbt/ParadoxPlugin.scala#L184 | ||
| # https://github.com/sbt/sbt-web/compare/1.5.8...1.6.0-M1#diff-ce81a99bce20c028fa631b7945b8317c5f614566c0df9ebadd3b3964e9e47817R589 | ||
| sbt ++$MATRIX_SCALA test # docs/paradox |
There was a problem hiding this comment.
Avoids exception: https://github.com/playframework/play-samples/actions/runs/18035278653/job/51322857805?pr=912#step:12:140
[error] java.lang.NoSuchMethodError: 'scala.collection.Seq com.typesafe.sbt.web.SbtWeb$.deduplicateMappings(scala.collection.Seq, scala.collection.Seq)'
[error] at com.lightbend.paradox.sbt.ParadoxPlugin$.$anonfun$baseParadoxSettings$40(ParadoxPlugin.scala:184)
Needs to be fixed in sbt-paradox and then reverted here.
There was a problem hiding this comment.
There was a problem hiding this comment.
Fixed as of today
Thanks to
sun.security.x509/--add-exportsplayframework#13558