|
1 |
| -Build 5.0.1 |
| 1 | +Build 5.0.2 |
| 2 | +============================= |
| 3 | + |
| 4 | +Release notes - NHibernate - Version 5.0.2 |
| 5 | + |
| 6 | +** Bug |
| 7 | + * #1456 NH-4052 - Add missing serializable implementation |
| 8 | + * #1455 Reduces check session and set context id redundant calls |
| 9 | + * #1453 Eliminate unnecessary AsyncLocal allocation if SessionId isn't changed |
| 10 | + |
| 11 | +** Task |
| 12 | + * #1457 Release 5.0.2 |
| 13 | + |
| 14 | +As part of releasing 5.0.2, a missing 5.0.0 possible breaking change has been added about Dialects requiring now |
| 15 | +to be configured. See 5.0.0 possible breaking changes. |
| 16 | + |
| 17 | +Build 5.0.1 |
2 | 18 | =============================
|
3 | 19 |
|
4 | 20 | Release notes - NHibernate - Version 5.0.1
|
@@ -85,6 +101,9 @@ Build 5.0.0
|
85 | 101 | the dialect. They resolve to 4000 length string and (28, 10) precision/scale decimals by default, and are
|
86 | 102 | trimmed down according to dialect. Those defaults can be overridden with query.default_cast_length,
|
87 | 103 | query.default_cast_precision and query.default_cast_scale settings.
|
| 104 | + * Dialects are now configurable. If you instantiate a dialect directly, make sure you call its Configure |
| 105 | + method, with as argument the properties of a NHibernate Configuration object. You may use instead |
| 106 | + Dialect.GetDialect methods, which configure the dialect before returning it. |
88 | 107 | * Transaction scopes handling has undergone a major rework. See NH-4011 for full details.
|
89 | 108 | ** More transaction promotion to distributed may occur if you use the "flush on commit" feature with
|
90 | 109 | transaction scopes. Explicitly flush your session instead. Ensure it does not occur by disabling
|
@@ -156,9 +175,6 @@ Release notes - NHibernate - Version 5.0.0
|
156 | 175 | * [NH-3957] - Second level query cache may yields wrong cache entry
|
157 | 176 | * [NH-4001] - Remove ThreadSafeDictionary
|
158 | 177 |
|
159 |
| - |
160 |
| - |
161 |
| - |
162 | 178 | ** Bug
|
163 | 179 | * [NH-926] - Identity insert fails with SQL Ce dialect and aggressive connection release mode.
|
164 | 180 | * [NH-1752] - NHibernate Date type converts to NULL
|
|
0 commit comments