Skip to content

Commit ea7b132

Browse files
committed
checksum-dependency: bump org.bouncycastle:bcpg-jdk15on to 1.70
1 parent 13d2a7a commit ea7b132

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ Change log
9090
v1.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

9495
v1.84
9596
* no-op release, since some of the plugins failed to publish to Gradle Plugin Portal in v1.83

plugins/checksum-dependency-plugin/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,7 @@ Changelog
500500
---------
501501
v1.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

504505
v1.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)

plugins/checksum-dependency-plugin/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
dependencies {
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

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)