From commits-return-15195-apmail-kafka-commits-archive=kafka.apache.org@kafka.apache.org Mon Jul 27 10:48:22 2020 Return-Path: X-Original-To: apmail-kafka-commits-archive@www.apache.org Delivered-To: apmail-kafka-commits-archive@www.apache.org Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with ESMTP id 145FB1933F for ; Mon, 27 Jul 2020 10:48:20 +0000 (UTC) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id 461911252F6 for ; Mon, 27 Jul 2020 10:48:19 +0000 (UTC) Received: (qmail 50834 invoked by uid 500); 27 Jul 2020 10:48:17 -0000 Delivered-To: apmail-kafka-commits-archive@kafka.apache.org Received: (qmail 50795 invoked by uid 500); 27 Jul 2020 10:48:17 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 50786 invoked by uid 99); 27 Jul 2020 10:48:17 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Jul 2020 10:48:17 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D574582072; Mon, 27 Jul 2020 10:48:16 +0000 (UTC) Date: Mon, 27 Jul 2020 10:48:12 +0000 To: "commits@kafka.apache.org" Subject: [kafka] branch trunk updated: MINOR: Update dependencies for Kafka 2.7 (part 1) (#9082) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <159584688827.9214.481575354328025578@gitbox.apache.org> From: ijuma@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: kafka X-Git-Refname: refs/heads/trunk X-Git-Reftype: branch X-Git-Oldrev: f748d59d28bf5882286acef896af7805a761b760 X-Git-Newrev: 24e76a94f6291c0f4430ec6a26df257673a5952e X-Git-Rev: 24e76a94f6291c0f4430ec6a26df257673a5952e X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ijuma pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/kafka.git The following commit(s) were added to refs/heads/trunk by this push: new 24e76a9 MINOR: Update dependencies for Kafka 2.7 (part 1) (#9082) 24e76a9 is described below commit 24e76a94f6291c0f4430ec6a26df257673a5952e Author: Ismael Juma AuthorDate: Mon Jul 27 03:47:19 2020 -0700 MINOR: Update dependencies for Kafka 2.7 (part 1) (#9082) I left out updates that could be risky. Preliminary testing indicates we can build (including spotBugs) and run tests with Java 15 with these changes. I will do more thorough testing once Java 15 reaches release candidate stage in a few weeks. Minor updates with mostly bug fixes: - Scala: 2.12.11 -> 2.12.12 (compiler and collection performance improvements) - Bouncy castle: 1.64 -> 1.66 (several bug fixes) - HttpClient: 4.5.11 -> 4.5.12 (small number of bug fixes) - Mockito: 3.3.3 -> 3.4.4 (several bug fixes and Java 15 support) - Netty: 4.5.10 -> 4.5.11 (several bug fixes) - Snappy: 1.1.7.3 -> 1.1.7.6 (small number of bug fixes) - Zstd: 1.4.5-2 -> 1.4.5-6 (small number of bug fixes) Gradle plugin and library upgrades: - Gradle version plugins: 0.28.0 -> 0.29.0 (small number of bug fixes) - Git: 4.0.1 -> 4.0.2 (small number of bug fixes) - Scoverage plugin: 4.0.1 -> 4.0.2 (small number of bug fixes) - Shadow plugin: 5.2.0 -> 6.0.0 (Java 15 support and require Gradle 6.0) - Test Retry plugin: 1.1.5 -> 1.1.6 (small number of bug fixes) - Spotless plugin: 4.4.4 -> 5.1.0 (several internal changes that should not matter to us) - Spotbugs: 4.0.3 -> 4.0.6 (small number of bug fixes) - Spotbugs plugin: 4.2.4 -> 4.4.4 (small number of bug fixes) Reviewers: Manikumar Reddy --- build.gradle | 2 +- gradle/dependencies.gradle | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/build.gradle b/build.gradle index 26314b5..7a55d60 100644 --- a/build.gradle +++ b/build.gradle @@ -41,7 +41,7 @@ buildscript { } } -apply plugin: "com.diffplug.gradle.spotless" +apply plugin: "com.diffplug.spotless" spotless { scala { target 'streams/**/*.scala' diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index e4b1605..435dc7c 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -27,7 +27,7 @@ ext { } // Add Scala version -def defaultScala212Version = '2.12.11' +def defaultScala212Version = '2.12.12' def defaultScala213Version = '2.13.3' if (hasProperty('scalaVersion')) { if (scalaVersion == '2.12') { @@ -58,13 +58,13 @@ versions += [ apacheda: "1.0.2", apacheds: "2.0.0-M24", argparse4j: "0.7.0", - bcpkix: "1.64", + bcpkix: "1.66", checkstyle: "8.20", commonsCli: "1.4", gradle: "6.5", - gradleVersionsPlugin: "0.28.0", - grgit: "4.0.1", - httpclient: "4.5.11", + gradleVersionsPlugin: "0.29.0", + grgit: "4.0.2", + httpclient: "4.5.12", easymock: "4.2", jackson: "2.10.2", jacoco: "0.8.5", @@ -94,8 +94,8 @@ versions += [ lz4: "1.7.1", mavenArtifact: "3.6.3", metrics: "2.2.0", - mockito: "3.3.3", - netty: "4.1.50.Final", + mockito: "3.4.4", + netty: "4.1.51.Final", owaspDepCheckPlugin: "5.3.2.1", powermock: "2.0.7", reflections: "0.9.12", @@ -105,17 +105,17 @@ versions += [ scalaJava8Compat : "0.9.1", scalatest: "3.0.8", scoverage: "1.4.1", - scoveragePlugin: "4.0.1", - shadowPlugin: "5.2.0", + scoveragePlugin: "4.0.2", + shadowPlugin: "6.0.0", slf4j: "1.7.30", - snappy: "1.1.7.3", - spotbugs: "4.0.3", - spotbugsPlugin: "4.2.4", - spotlessPlugin: "3.28.1", - testRetryPlugin: "1.1.5", + snappy: "1.1.7.6", + spotbugs: "4.0.6", + spotbugsPlugin: "4.4.4", + spotlessPlugin: "5.1.0", + testRetryPlugin: "1.1.6", zinc: "1.3.5", zookeeper: "3.5.8", - zstd: "1.4.5-2" + zstd: "1.4.5-6" ] libs += [ activation: "javax.activation:activation:$versions.activation",