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

bump: scala-library 2.13.13 (was 2.13.12) #32354

Merged
merged 5 commits into from
Mar 25, 2024

Conversation

scala-steward
Copy link
Contributor

About this PR

πŸ“¦ Updates org.scala-lang:scala-library from 2.13.12 to 2.13.13

πŸ“œ GitHub Release Notes - Version Diff

Usage

βœ… Please merge!

I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.

If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a .scala-steward.conf file.

Have a fantastic day writing Scala!

βš™ Adjust future updates

Add this to your .scala-steward.conf file to ignore future updates of this dependency:

updates.ignore = [ { groupId = "org.scala-lang", artifactId = "scala-library" } ]

Or, add this to slow down future updates of this dependency:

dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "org.scala-lang", artifactId = "scala-library" }
}]
labels: library-update, early-semver-patch, semver-spec-patch, commit-count:1

timeout,
system.scheduler()
);

CompletionStage<ActorRef<AllKindsOfMusic>> musicListener = AskPattern.ask(
system,
replyTo -> new Spawn(Listener.create(), "musicListener", Props.empty(), replyTo),
replyTo -> new Spawn<>(Listener.create(), "musicListener", Props.empty(), replyTo),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated Java compiler warning fixes

.receivePartial[Command] {
case (context, Pong) =>
.receiveMessagePartial[Command] {
case Pong =>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the new same-name-used-in-surrounding-scope warning (context in this case)

@@ -66,7 +66,8 @@ private[akka] object ActorRefAdapter {
case internal.Unwatch(watchee, watcher) =>
classicRef.sendSystemMessage(sysmsg.Unwatch(toClassic(watchee), toClassic(watcher)))
case internal.DeathWatchNotification(ref, _) =>
classicRef.sendSystemMessage(sysmsg.DeathWatchNotification(toClassic(ref), true, false))
classicRef.sendSystemMessage(
sysmsg.DeathWatchNotification(toClassic(ref), existenceConfirmed = true, addressTerminated = false))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

boolean parameters require name or cause warning

@johanandren
Copy link
Member

Best with another core team review here as I changed quite a bit of things

@He-Pin
Copy link
Member

He-Pin commented Mar 25, 2024

Have not look into the code, but the next 2.13.14 release will make the named boolean just a warning.

@johanandren
Copy link
Member

It is a warning, but we build with -Werror

@He-Pin
Copy link
Member

He-Pin commented Mar 25, 2024

It is a warning, but we build with -Werror

Yeah, but you can turn it off too, if you like, as you already done all the changes, so πŸ‘πŸ‘πŸ‘

Copy link
Member

@ennru ennru left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@ennru ennru merged commit 9953975 into akka:main Mar 25, 2024
5 checks passed
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

4 participants