This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-grpc.git


The following commit(s) were added to refs/heads/main by this push:
     new f5895f12 use latest pekko releases (#551)
f5895f12 is described below

commit f5895f125c12a7c388c1fc5c33a2708dae0c8f3e
Author: PJ Fanning <[email protected]>
AuthorDate: Sun Nov 23 23:44:20 2025 +0100

    use latest pekko releases (#551)
    
    * use latest pekko releases
    
    * more updates
    
    * Update GrpcMarshallingSpec.scala
---
 .github/workflows/nightly-snapshot-dependency-test.yml                | 2 +-
 .../scala/org/apache/pekko/grpc/scaladsl/GrpcMarshallingSpec.scala    | 3 +--
 plugin-tester-java/build.gradle                                       | 4 ++--
 plugin-tester-java/pom.xml                                            | 2 +-
 plugin-tester-scala/build.gradle                                      | 4 ++--
 plugin-tester-scala/pom.xml                                           | 4 ++--
 project/PekkoCoreDependency.scala                                     | 2 +-
 project/PekkoHttpDependency.scala                                     | 2 +-
 8 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/nightly-snapshot-dependency-test.yml 
b/.github/workflows/nightly-snapshot-dependency-test.yml
index 5bca6c44..b59bbcb3 100644
--- a/.github/workflows/nightly-snapshot-dependency-test.yml
+++ b/.github/workflows/nightly-snapshot-dependency-test.yml
@@ -37,4 +37,4 @@ jobs:
       - name: Test
         run: |-
           cp .jvmopts-ci .jvmopts
-          sbt -Dpekko.build.pekko.version=1.2.x 
-Dpekko.build.pekko.http.version=main test
+          sbt -Dpekko.build.pekko.version=1.3.x 
-Dpekko.build.pekko.http.version=main test
diff --git 
a/interop-tests/src/test/scala/org/apache/pekko/grpc/scaladsl/GrpcMarshallingSpec.scala
 
b/interop-tests/src/test/scala/org/apache/pekko/grpc/scaladsl/GrpcMarshallingSpec.scala
index c32ac83f..b73581c4 100644
--- 
a/interop-tests/src/test/scala/org/apache/pekko/grpc/scaladsl/GrpcMarshallingSpec.scala
+++ 
b/interop-tests/src/test/scala/org/apache/pekko/grpc/scaladsl/GrpcMarshallingSpec.scala
@@ -61,8 +61,7 @@ class GrpcMarshallingSpec extends AnyWordSpec with Matchers {
         headers = immutable.Seq(`Message-Encoding`("gzip")),
         entity = HttpEntity.Chunked(
           GrpcProtocolNative.contentType,
-          TestSource
-            .probe[ChunkStreamPart]
+          TestSource[ChunkStreamPart]()
             .mapMaterializedValue((p: TestPublisher.Probe[ChunkStreamPart]) => 
{
               sourceProbe.success(p)
               NotUsed
diff --git a/plugin-tester-java/build.gradle b/plugin-tester-java/build.gradle
index f100256e..8d102dfc 100644
--- a/plugin-tester-java/build.gradle
+++ b/plugin-tester-java/build.gradle
@@ -29,9 +29,9 @@ def scalaVersion = 
org.gradle.util.VersionNumber.parse(scalaFullVersion)
 def scalaBinaryVersion = "${scalaVersion.major}.${scalaVersion.minor}"
 
 dependencies {
-  implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.1.0"
+  implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.3.0"
   implementation "org.scala-lang:scala-library:${scalaFullVersion}"
-  testImplementation 
"org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.5"
+  testImplementation 
"org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.3.0"
   testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.19"
   testImplementation 
"org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.19.0"
 }
diff --git a/plugin-tester-java/pom.xml b/plugin-tester-java/pom.xml
index 71ee4ce0..ae1b14e7 100644
--- a/plugin-tester-java/pom.xml
+++ b/plugin-tester-java/pom.xml
@@ -24,7 +24,7 @@
     <maven.compiler.target>17</maven.compiler.target>
     <maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version>
     <maven-exec-plugin.version>3.5.1</maven-exec-plugin.version>
-    <pekko.http.version>1.2.0</pekko.http.version>
+    <pekko.http.version>1.3.0</pekko.http.version>
     <grpc.version>1.76.1</grpc.version> <!-- checked synced by 
VersionSyncCheckPlugin -->
     <project.encoding>UTF-8</project.encoding>
   </properties>
diff --git a/plugin-tester-scala/build.gradle b/plugin-tester-scala/build.gradle
index a0674c64..3a528639 100644
--- a/plugin-tester-scala/build.gradle
+++ b/plugin-tester-scala/build.gradle
@@ -24,9 +24,9 @@ def scalaVersion = 
org.gradle.util.VersionNumber.parse(scalaFullVersion)
 def scalaBinaryVersion = "${scalaVersion.major}.${scalaVersion.minor}"
 
 dependencies {
-  implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.1.0"
+  implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.3.0"
   implementation "org.scala-lang:scala-library:${scalaFullVersion}"
-  testImplementation 
"org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.5"
+  testImplementation 
"org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.3.0"
   testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.19"
   testImplementation 
"org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.19.0"
 }
diff --git a/plugin-tester-scala/pom.xml b/plugin-tester-scala/pom.xml
index 5c112a28..878f4184 100644
--- a/plugin-tester-scala/pom.xml
+++ b/plugin-tester-scala/pom.xml
@@ -22,8 +22,8 @@
   <properties>
     <maven.compiler.source>17</maven.compiler.source>
     <maven.compiler.target>17</maven.compiler.target>
-    <pekko.version>1.1.5</pekko.version>
-    <pekko.http.version>1.2.0</pekko.http.version>
+    <pekko.version>1.3.0</pekko.version>
+    <pekko.http.version>1.3.0</pekko.http.version>
     <grpc.version>1.76.1</grpc.version> <!-- checked synced by 
VersionSyncCheckPlugin -->
     <project.encoding>UTF-8</project.encoding>
   </properties>
diff --git a/project/PekkoCoreDependency.scala 
b/project/PekkoCoreDependency.scala
index c473fa10..8c2d4466 100644
--- a/project/PekkoCoreDependency.scala
+++ b/project/PekkoCoreDependency.scala
@@ -22,5 +22,5 @@ import com.github.pjfanning.pekkobuild.PekkoDependency
 object PekkoCoreDependency extends PekkoDependency {
   override val checkProject: String = "pekko-cluster-sharding-typed"
   override val module: Option[String] = None
-  override val currentVersion: String = "1.1.5"
+  override val currentVersion: String = "1.3.0"
 }
diff --git a/project/PekkoHttpDependency.scala 
b/project/PekkoHttpDependency.scala
index f7941bb8..451dc5ee 100644
--- a/project/PekkoHttpDependency.scala
+++ b/project/PekkoHttpDependency.scala
@@ -22,5 +22,5 @@ import com.github.pjfanning.pekkobuild.PekkoDependency
 object PekkoHttpDependency extends PekkoDependency {
   override val checkProject: String = "pekko-http-testkit"
   override val module: Option[String] = Some("http")
-  override val currentVersion: String = "1.1.0"
+  override val currentVersion: String = "1.3.0"
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to