File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
plugins/checksum-dependency-plugin Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ Change log
9090v1.85
9191* licence-gather: better support for build cache by adding PathSensitivity
9292* checksum-dependency: cache PGP public keys under ` %{ROOT_DIR}/gradle/checksum-dependency-plugin/cached-pgp-keys `
93+ * checksum-dependency: bump org.bouncycastle: bcpg-jdk15on to 1.70
9394
9495v1.84
9596* no-op release, since some of the plugins failed to publish to Gradle Plugin Portal in v1.83
Original file line number Diff line number Diff line change @@ -500,6 +500,7 @@ Changelog
500500---------
501501v1.85
502502* Cache public PGP keys under ` %{ROOT_DIR}/gradle/checksum-dependency-plugin/cached-pgp-keys ` directory
503+ * Bump org.bouncycastle: bcpg-jdk15on to 1.70
503504
504505v1.78
505506* Retrieve keys from https://keyserver.ubuntu.com , and https://keys.openpgp.org by default (drop SKS keyserver pool since it has been deprecated)
Original file line number Diff line number Diff line change 1616 */
1717
1818dependencies {
19- implementation(" org.bouncycastle:bcpg-jdk15on:1.62 " )
19+ implementation(" org.bouncycastle:bcpg-jdk15on:1.70 " )
2020 implementation(" com.squareup.okhttp3:okhttp:4.1.0" )
2121}
2222
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ buildscript {
5959 } else if (property(" localCdp" )?.ifEmpty { " true" }?.toBoolean() == true ) {
6060 // Below enables use of locally built file for testing purposes
6161 classpath(files(" plugins/checksum-dependency-plugin/build/libs/checksum-dependency-plugin-${" project" .v()} .jar" ))
62- classpath(" org.bouncycastle:bcpg-jdk15on:1.62 " )
62+ classpath(" org.bouncycastle:bcpg-jdk15on:1.70 " )
6363 classpath(" com.squareup.okhttp3:okhttp:4.1.0" ) {
6464 exclude(" org.jetbrains.kotlin" , " kotlin-stdlib" )
6565 }
You can’t perform that action at this time.
0 commit comments