File tree 4 files changed +4
-2
lines changed
plugins/checksum-dependency-plugin
4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ Change log
90
90
v1.85
91
91
* licence-gather: better support for build cache by adding PathSensitivity
92
92
* 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
93
94
94
95
v1.84
95
96
* 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
500
500
---------
501
501
v1.85
502
502
* Cache public PGP keys under ` %{ROOT_DIR}/gradle/checksum-dependency-plugin/cached-pgp-keys ` directory
503
+ * Bump org.bouncycastle: bcpg-jdk15on to 1.70
503
504
504
505
v1.78
505
506
* 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 16
16
*/
17
17
18
18
dependencies {
19
- implementation(" org.bouncycastle:bcpg-jdk15on:1.62 " )
19
+ implementation(" org.bouncycastle:bcpg-jdk15on:1.70 " )
20
20
implementation(" com.squareup.okhttp3:okhttp:4.1.0" )
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ buildscript {
59
59
} else if (property(" localCdp" )?.ifEmpty { " true" }?.toBoolean() == true ) {
60
60
// Below enables use of locally built file for testing purposes
61
61
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 " )
63
63
classpath(" com.squareup.okhttp3:okhttp:4.1.0" ) {
64
64
exclude(" org.jetbrains.kotlin" , " kotlin-stdlib" )
65
65
}
You can’t perform that action at this time.
0 commit comments