The GitHub Actions job "Nightly Build and Test" on 
pekko-connectors-kafka.git/main has succeeded.
Run started by GitHub user pjfanning (triggered by pjfanning).

Head commit for run:
28ccd8d765ec3600f37767ff133ce09b40f5e50f / PJ Fanning 
<[email protected]>
Replace immutable.Seq with Seq (#655)

Motivation:
The codebase still carried Scala 2.12-era `immutable.Seq` qualifiers.
Since Scala 2.13, `scala.Seq` is a type alias for
`scala.collection.immutable.Seq`, so the qualifier is redundant.
Equivalent of apache/pekko#3539.

Modification:
- Replace `immutable.Seq` with `Seq` in main, testkit, test and doc
  sources and drop the now-unused `scala.collection.immutable` imports.
- Files that still use other `immutable.*` types keep the import.

Result:
No remaining `immutable.Seq` qualifiers. Source and binary compatible:
`Seq` erases to the same `scala.collection.immutable.Seq` class.

Tests:
- native `scalafmt` run on all changed files (no changes)
- `sbt Test/compile` passes
- `sbt core/mimaReportBinaryIssues testkit/mimaReportBinaryIssues` pass
- `sbt "tests/testOnly ...CommittingProducerSinkSpec ...ConsumerSpec"` pass

References:
None - Scala 2.12 support was dropped previously; port of apache/pekko#3539

Report URL: 
https://github.com/apache/pekko-connectors-kafka/actions/runs/34798306487

With regards,
GitHub Actions via GitBox


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

Reply via email to