update docs for calculateDelay (#2196)

* add back BackoffSupervisor.calculateDelay due to bin compat issues (#2195)

* add back BackoffSupervisor.calculateDelay due to bin compat issues

* Update BackoffSupervisor.scala

* Update releases-1.2.md

* Update BackoffSupervisor.scala

* remove deprecated method
This commit is contained in:
PJ Fanning 2025-09-12 17:32:37 +01:00 committed by GitHub
parent 42c2b493cb
commit f48ec1d425
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -15,5 +15,7 @@
# specific language governing permissions and limitations
# under the License.
# Move BackoffSupervisor.calculateDelay
# Move BackoffSupervisor.calculateDelay to RetrySupport
# Was removed in Pekko 1.2.0 but added back in 1.2.1 due to breakages
# in pekko-persistence-cassandra - this method is deprecated in 1.2.1+
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.pekko.pattern.BackoffSupervisor.calculateDelay")

View file

@ -86,3 +86,9 @@ Most of the changes appeared in the milestone releases (1.2.0-M1 and 1.2.0-M2) b
* slfj4 2.0.17
* jupiter-junit 5.13.3
* scala 2.12.20, 2.13.16, 3.3.6
### Known Issues
This release breaks binary compatibility for [pekko-persistence-cassandra](https://github.com/apache/pekko-persistence-cassandra/issues/305)
and users of that lib will need to avoid Pekko 1.2.0 release. We will fix
this in the 1.2.1 release.