Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Akka 1.5 #164

Merged
merged 2 commits into from
Mar 11, 2023
Merged

Add support for Akka 1.5 #164

merged 2 commits into from
Mar 11, 2023

Conversation

object
Copy link
Collaborator

@object object commented Mar 8, 2023

Akka 1.5 introduced a few changes (in Logging, TestKit and Akka Streams) that broke backward compatibility on a binary level.

Here are example of runtime errors caused by the breaking changes:

  1. Akka.Actor.ActorInitializationException: Exception during creation
    ---> System.TypeLoadException: Error while creating actor instance of type Akkling.Actors+FunActor`1[System.Object] with 1 args
    ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
    ---> System.MissingMethodException: Method not found: 'Void Akka.Event.ILoggingAdapter.Log(Akka.Event.LogLevel, System.String, System.Object[])'.

  2. System.MissingMethodException: Method not found: 'Void Akka.TestKit.TestKitBase.ExpectNoMsg(System.TimeSpan)'

  3. Method not found: 'Void Akka.TestKit.TestKitBase.ExpectNoMsg(System.TimeSpan)'

Most of the changes however are source compatible and only requires rebuilding Akkling with references to Akka 1.5 libraries.

This PR rebuilds Akkling using Akka 1.5 libraries.

@Horusiath Horusiath merged commit 6f7189f into Horusiath:master Mar 11, 2023
@Horusiath
Copy link
Owner

Thank you @object . I'll try to make a nuget release asap.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants