forked from nbronson/scala-stm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE-NOTES.txt
89 lines (53 loc) · 2.41 KB
/
RELEASE-NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
ScalaSTM - 0.8-SNAPSHOT RELEASE NOTES
Changes between 0.7 and 0.8-SNAPSHOT:
* small improvement to TxnLocal interface.
* fix for STMBench7 under Scala 2.10.
Snapshot releases deployed to the oss.sonatype.org repository are tested
and functional, but may have changing APIs.
----
Changes between 0.6 and 0.7:
* better support for interactive debuggers, via TxnDebuggable and
atomic.unrecorded. IntelliJ IDEA and Eclipse can now watch Ref
values inside a transaction without affecting the read or write sets.
* ScalaSTM cooperates with 2.10's scala.concurrent.BlockingContext.
* added transformAndExtract, which allows an arbitrary value to be
returned from the transformation function.
* added transformAndGet and getAndTransform to Ref and TxnLocal,
previously these were only defined for Ref.View.
----
Changes between 0.5 and 0.6:
* retry and retryFor added to the Java compatibility interface.
* uses of scala.actor.threadpool.TimeUnit in the interface replaced with
java.util.concurrent.TimeUnit, to avoid making ScalaSTM depend on the
separate scala-actors jar in Scala 2.10.
----
Changes between 0.4 and 0.5:
* Added scala.concurrent.stm.japi.STM, which makes it much cleaner to
access ScalaSTM functionality from Java.
----
Changes between 0.3 and 0.4:
* CommitBarrier added, which allows multiple atomic blocks (each on its
own thread) to commit together.
* Small performance improvements.
* STMBench7 benchmark support added.
* Automatic selection of STMImpl in most cases.
----
Changes between 0.2 and 0.3:
* Support for Scala 2.9.0.RC1.
* Bug fixes (see https://github.com/nbronson/scala-stm/issues/closed ).
* Timeouts for modular blocking. Set timeouts at the atomic block using
atomic.withRetryTimeout, or at the retry site using retryFor.
----
Changes between 0.1 and 0.2:
* Substantial performance improvements, especially for nested atomic
blocks.
* TSet.View and TMap.View are integrated into the Scala collection
class hierarchy, with factory companion objects and Builder and
CanBuildFrom instances.
* A fix for whileCommitting handlers (issue #3).
* TxnLocal can now be read and written from while-preparing and while-
committing handlers. Combining TxnLocal and life-cycle handlers is
now more concise.
* Transaction statistics can be enabled for the default algorithm
with the VM argument -Dccstm.stats=1 (details in the ScalaDoc for
scala.concurrent.stm.ccstm.CCSTM).