Merge pull request #26995 from akka/wip-2.5.23-master-patriknw
update latestPatchOf25 to 2.5.23
This commit is contained in:
commit
737eb30d04
6 changed files with 16 additions and 14 deletions
13
RELEASING.md
13
RELEASING.md
|
|
@ -52,23 +52,26 @@ a snapshot to https://repo.akka.io/snapshots from any branch.
|
|||
* go to the [Milestones tab](https://github.com/akka/akka/milestones)
|
||||
* move all open issues so that this milestone contains completed work only
|
||||
* close that milestone
|
||||
* create a new milestone for next patch version
|
||||
|
||||
* In case of a new major release:
|
||||
* In case of a new minor release:
|
||||
* update the branch descriptions at CONTRIBUTING.md#branches-summary
|
||||
* write blog post for akka.io and lightbend.com
|
||||
|
||||
* Create an announcement as a PR against akka/akka.github.com .
|
||||
* credits can be generated with `scripts/authors.scala v2.3.5 v2.3.6`
|
||||
* also update the `latest` variable in `_config.yml`.
|
||||
|
||||
* Update `MiMa.latestPatchOf` and PR that change (`project/MiMa.scala`)
|
||||
|
||||
Now wait until all artifacts have been properly propagated. Then:
|
||||
|
||||
* Update `MiMa.latestPatchOf` and PR that change (`project/MiMa.scala`)
|
||||
|
||||
* Change the symbolic links from 'current': `ssh akkarepo@gustav.akka.io ./update-akka-current-version.sh <x.y.z>`
|
||||
|
||||
* Merge the release announcement
|
||||
* Publish the release announcement
|
||||
* Tweet about it
|
||||
* Post about it on Gitter and Discuss
|
||||
* Post about it on Discuss
|
||||
* Post about it on Gitter
|
||||
|
||||
## Update references
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,3 @@ ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.sharding.ShardC
|
|||
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.sharding.RememberEntityStarter.props")
|
||||
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.sharding.RemoveInternalClusterShardingData.remove")
|
||||
|
||||
# #25191
|
||||
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.sharding.ShardRegion.retryTask")
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# #26877 Performance improvements of DDataShard
|
||||
ProblemFilters.exclude[Problem]("akka.cluster.sharding.Shard.*")
|
||||
|
||||
# #25191
|
||||
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.cluster.sharding.ShardRegion.retryTask")
|
||||
|
|
|
|||
|
|
@ -12,9 +12,5 @@ ProblemFilters.exclude[IncompatibleMethTypeProblem]("akka.stream.impl.io.Connect
|
|||
ProblemFilters.exclude[IncompatibleMethTypeProblem]("akka.stream.impl.io.OutgoingConnectionStage.this")
|
||||
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.stream.scaladsl.MergeHub#MergedSourceLogic.this")
|
||||
|
||||
# #25045 adding Java/Scala interop to SourceQueue and SinkQueue
|
||||
ProblemFilters.exclude[MissingClassProblem]("akka.stream.impl.SinkQueueAdapter")
|
||||
ProblemFilters.exclude[MissingClassProblem]("akka.stream.impl.SourceQueueAdapter")
|
||||
|
||||
# 26896 JavaDSL FlowWithContext
|
||||
ProblemFilters.exclude[IncompatibleMethTypeProblem]("akka.stream.javadsl.FlowWithContext.this")
|
||||
ProblemFilters.exclude[IncompatibleMethTypeProblem]("akka.stream.javadsl.FlowWithContext.this")
|
||||
|
|
|
|||
|
|
@ -98,3 +98,7 @@ ProblemFilters.exclude[MissingClassProblem]("akka.stream.actor.AbstractActorPubl
|
|||
ProblemFilters.exclude[MissingClassProblem]("akka.stream.actor.AbstractActorSubscriber$")
|
||||
ProblemFilters.exclude[MissingClassProblem]("akka.stream.actor.AbstractActorPublisherWithStash")
|
||||
|
||||
# #25045 adding Java/Scala interop to SourceQueue and SinkQueue
|
||||
ProblemFilters.exclude[MissingClassProblem]("akka.stream.impl.SinkQueueAdapter")
|
||||
ProblemFilters.exclude[MissingClassProblem]("akka.stream.impl.SourceQueueAdapter")
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import com.typesafe.tools.mima.plugin.MimaPlugin.autoImport._
|
|||
|
||||
object MiMa extends AutoPlugin {
|
||||
|
||||
private val latestPatchOf25 = 22
|
||||
private val latestPatchOf25 = 23
|
||||
// No 2.6 has been released yet. Update to '0' after releasing 2.6.0
|
||||
private val latestPatchOf26 = -1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue