Skip to content

Commit 27bae04

Browse files
patiencedaurxuniq
andauthored
Add the 2.10.0-beta2 changelog (#2852)
* Add the 2.10.0-beta2 changelog * Update release table * Update the Major features page * Update the 2.10.0-rc1 and 2.10.0-beta1 changelogs Co-authored-by: Kseniia Antonova <[email protected]>
1 parent 71f0604 commit 27bae04

File tree

7 files changed

+924
-70
lines changed

7 files changed

+924
-70
lines changed

doc/release/1.10.13.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,5 @@ Recovery
103103
from ``snap``/``xlog`` combinations where ``xlog`` covers changes
104104
committed both before and after ``snap`` creation. For example,
105105
``0...0.xlog``, covering everything up to ``vclock {1: 15}`` and
106-
``0...09.snap``, corresponding to ``vclock {1: 9}`` (:tarantool-issue:`6794`).
106+
``0...09.snap``, corresponding to ``vclock {1: 9}`` (:tarantool-issue:`6794`).
107+

doc/release/2.10.0-beta1.rst

+12-11
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Functionality added or changed
4646
Core
4747
~~~~
4848

49-
- The UUID field type is now part of the ``SCALAR`` field type
49+
- The ``UUID`` field type is now part of the ``SCALAR`` field type
5050
(:tarantool-issue:`6042`).
5151

5252
- The ``UUID`` field type is now available in SQL. A new UUID can be generated
@@ -74,7 +74,7 @@ Core
7474

7575
In ``net.box``, a stream is an object above the connection that has the same methods
7676
but allows executing requests sequentially. The ID is generated on the client side automatically.
77-
If a user writes their own connector and wants to use streams, they must transmit the ``stream_id`` over the iproto protocol.
77+
If a user writes his own connector and wants to use streams, they must transmit the ``stream_id`` over the iproto protocol.
7878

7979
The primary purpose of streams is transactions via iproto.
8080
As each stream can start a transaction, several transactions can be multiplexed over one connection.
@@ -187,6 +187,7 @@ Logging
187187
188188
require('log').cfg{level = 'verbose'}
189189
190+
.. _2.10.0-beta1-sql:
190191

191192
SQL
192193
~~~
@@ -321,7 +322,7 @@ Core
321322

322323
- **[Breaking change]** ``fiber.wakeup()`` in Lua and
323324
``fiber_wakeup()`` in C became NOP on the currently running fiber.
324-
Previously they allowed ignoring the next yield or sleep, which
325+
Previously they allowed ignoring the next yield or sleep, which
325326
resulted in unexpected erroneous wake-ups. Calling these functions
326327
right before ``fiber.create()`` in Lua or ``fiber_start()`` in C
327328
could lead to a crash (in debug build) or undefined behaviour (in
@@ -597,27 +598,27 @@ Triggers
597598
SQL
598599
~~~
599600

600-
- User-defined functions can now return a VARBINARY result to SQL
601+
- User-defined functions can now return a ``VARBINARY`` result to SQL
601602
(:tarantool-issue:`6024`).
602603

603-
- Fixed assert when a DOUBLE value greater than -1.0 and less
604-
than 0.0 is cast to INTEGER and UNSIGNED
604+
- Fixed assert when a ``DOUBLE`` value greater than -1.0 and less
605+
than 0.0 is cast to ``INTEGER`` and ``UNSIGNED``
605606
(:tarantool-issue:`6225`).
606607

607-
- Removed spontaneous conversion from INTEGER to DOUBLE in a field of the
608-
NUMBER type
608+
- Removed spontaneous conversion from ``INTEGER`` to ``DOUBLE`` in a field of the
609+
``NUMBER`` type
609610
(:tarantool-issue:`5335`).
610611

611612
- All arithmetic operations can now accept numeric values only
612613
(:tarantool-issue:`5756`).
613614

614-
- Now ``QUOTE()`` returns the argument if the argument is DOUBLE, which is the same behavior as
615+
- Now ``QUOTE()`` returns the argument if the argument is ``DOUBLE``, which is the same behavior as
615616
with other numeric types.
616-
For types different from numeric, the function returns a STRING
617+
For types different from numeric, the function returns a ``STRING``
617618
(:tarantool-issue:`6239`).
618619

619620
- The ``TRIM()`` function now does not lose collation
620-
when executed with the keywords BOTH, LEADING, or TRAILING
621+
when executed with the keywords ``BOTH``, ``LEADING``, or ``TRAILING``
621622
(:tarantool-issue:`6299`).
622623

623624
MVCC

0 commit comments

Comments
 (0)