7

I am working on project implemented in scala 2.8.1, want to migrate to scala 2.9.1 and use akka-actors libraries instead of standard, but didn't find good summary of main changes, here what I found:

What are main changes from scala 2.8.1 to scala 2.9.1?
Changes that need big effort for migration.

UPDATE 1: Thanks, @VonC - Note: keep in mind some of those changes are backported in the upcoming 2.8.2: The Scala 2.8.2 distribution
UPDATE 2: Found Strange behavior of Set4 in scala 2.9.1 console

Community
  • 1
  • 1
Rinat Tainov
  • 1,479
  • 2
  • 19
  • 39
  • Note: keep in mind some of those changes are backported in the upcoming 2.8.2: http://www.scala-lang.org/node/10876 – VonC Sep 15 '11 at 06:54

1 Answers1

5

Parallel Collections I think is the biggest change, but in practical matters of migration, you don't have to worry too much about it. You might notice some libraries have dropped off. For example configgy is now deprecated, so check your underlying libs.

(Predef.)error is now deprecated, and there's new sys.error, so if you use a bunch of those, you'd see annoying warnings.

One major change that is not listed in the links, is around the time 2.9.0 came out the company Typesafe was formed. A part of the promise was their commitment to better binary compatibility going forward. For example, 2.9.1 is fully binary compatible with 2.9.0.1, and 2.8.2 is supposed to be compatible with 2.8.1 when it comes out.

Philippe
  • 9,582
  • 4
  • 39
  • 59
Eugene Yokota
  • 94,654
  • 45
  • 215
  • 319