|
16 | 16 | Use `trusted_certificates` instead which expects `None` or a `list`. See the |
17 | 17 | API documentation for more details. |
18 | 18 | - `neo4j.time` module: |
19 | | - - `Duration` |
20 | | - - The constructor does not accept `subseconds` anymore. |
21 | | - Use `milliseconds`, `microseconds`, or `nanoseconds` instead. |
22 | | - - The property `subseconds` has been removed. |
23 | | - Use `nanoseconds` instead. |
24 | | - - The property `hours_minutes_seconds` has been removed. |
25 | | - Use `hours_minutes_seconds_nanoseconds` instead. |
26 | | - - For all math operations holds: they are element-wise on |
27 | | - (`months`, `days`, `nanoseconds`). |
28 | | - This affects (i.e., changes) the working of `//`, `%`, `/`, and `*`. |
29 | | - - Years are equal to 12 months. |
30 | | - - Weeks are equal to 7 days. |
31 | | - - `seconds`, `milliseconds`, `microseconds`, and `nanoseconds` are |
32 | | - implicitly converted to `nanoseconds` or `seconds` as fit. |
33 | | - - Multiplication and division allow for floats but will always result in |
34 | | - integer values (round to nearest even). |
35 | | - - `Time` |
36 | | - - The constructor does not accept `float`s for `second` anymore. |
37 | | - Use `nanosecond` instead. |
38 | | - - Ticks are now nanoseconds since midnight (`int`). |
39 | | - - The property `ticks_ns` has been renamed to `ticks`. |
40 | | - The old `ticks` is no longer supported. |
41 | | - - The property`from_ticks_ns` has been renamed to `from_ticks`. |
42 | | - The old `from_ticks` is no longer supported. |
43 | | - - The property `second` returns an `int` instead of a `float`. |
44 | | - Use `nanosecond` to get the sub-second information. |
45 | | - - The property `hour_minute_second` has been removed. |
46 | | - Use `hour_minute_second_nanosecond` instead. |
47 | | - - `DateTime` |
48 | | - - The property `hour_minute_second` has been removed. |
49 | | - Use `hour_minute_second_nanosecond` instead. |
50 | | - - The property `second` returns an `int` instead of a `float`. |
51 | | - Use `nanosecond` to get the sub-second information. |
| 19 | + - `Duration` |
| 20 | + - The constructor does not accept `subseconds` anymore. |
| 21 | + Use `milliseconds`, `microseconds`, or `nanoseconds` instead. |
| 22 | + - The property `subseconds` has been removed. |
| 23 | + Use `nanoseconds` instead. |
| 24 | + - The property `hours_minutes_seconds` has been removed. |
| 25 | + Use `hours_minutes_seconds_nanoseconds` instead. |
| 26 | + - For all math operations holds: they are element-wise on |
| 27 | + (`months`, `days`, `nanoseconds`). |
| 28 | + This affects (i.e., changes) the working of `//`, `%`, `/`, and `*`. |
| 29 | + - Years are equal to 12 months. |
| 30 | + - Weeks are equal to 7 days. |
| 31 | + - `seconds`, `milliseconds`, `microseconds`, and `nanoseconds` are |
| 32 | + implicitly converted to `nanoseconds` or `seconds` as fit. |
| 33 | + - Multiplication and division allow for floats but will always result in |
| 34 | + integer values (round to nearest even). |
| 35 | + - `Time` |
| 36 | + - The constructor does not accept `float`s for `second` anymore. |
| 37 | + Use `nanosecond` instead. |
| 38 | + - Ticks are now nanoseconds since midnight (`int`). |
| 39 | + - The property `ticks_ns` has been renamed to `ticks`. |
| 40 | + The old `ticks` is no longer supported. |
| 41 | + - The property`from_ticks_ns` has been renamed to `from_ticks`. |
| 42 | + The old `from_ticks` is no longer supported. |
| 43 | + - The property `second` returns an `int` instead of a `float`. |
| 44 | + Use `nanosecond` to get the sub-second information. |
| 45 | + - The property `hour_minute_second` has been removed. |
| 46 | + Use `hour_minute_second_nanosecond` instead. |
| 47 | + - `DateTime` |
| 48 | + - The property `hour_minute_second` has been removed. |
| 49 | + Use `hour_minute_second_nanosecond` instead. |
| 50 | + - The property `second` returns an `int` instead of a `float`. |
| 51 | + Use `nanosecond` to get the sub-second information. |
| 52 | +- `Session.last_bookmark` returns `None` until the first bookmark has been |
| 53 | + received from the server. Previously, it returned the last bookmark of all |
| 54 | + the bookmarks passed on session creation. |
52 | 55 |
|
53 | 56 |
|
54 | 57 | ## Version 4.4 |
|
0 commit comments