Skip to content

Commit c860ee1

Browse files
shmel1kasmyasnikov
authored andcommitted
[misc] fix changelog
1 parent 7b41518 commit c860ee1

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
* Fixed `sugar.IsTableExists` with recursive check directory exists
22
* Added `sugar.IsDirectoryExists`
3+
* Added missing `IndexType` for `TableDescription`
34

45
## v3.42.6
56
* Implemented `driver.RowsColumnTypeDatabaseTypeName` interface in `internal/xsql.rows` struct
@@ -9,7 +10,7 @@
910
* Added checks for nil option to all opts range loops
1011
* Moved content of package `internal/ctxlabels` into `internal/xcontext`
1112
* Implemented `GRPCStatus` method in `internal/xerrors/transportError`
12-
* Added different implementations of stacktrace error for grpc errors and other
13+
* Added different implementations of stacktrace error for grpc errors and other
1314
* Dropped `internal/xnet` package as useless
1415
* Fixed default grpc dial options
1516
* Replaced single connection for discovery repeater into connection which creates each time for discovery request
@@ -28,7 +29,7 @@
2829

2930
## v3.42.3
3031
* Added `credentials.NewStaticCredentials()` static credentials constructor
31-
* Changed `internal/credentials.NewStaticCredentials()` signature and behaviour for create grpc connection on each call to auth service
32+
* Changed `internal/credentials.NewStaticCredentials()` signature and behaviour for create grpc connection on each call to auth service
3233
* Downgrade `google.golang.org/grpc` to `v1.49.0`
3334

3435
## v3.42.2
@@ -78,7 +79,7 @@
7879
* Added `types.TupleItem(types.Value)`, `types.StructFields(types.Value)` and `types.DictValues(types.Value)` funcs (extractors of internal fields of tuple, struct and dict values)
7980
* Added `types.Value.Yql()` func for getting values string representation as `YQL` literal
8081
* Added `types.Type.Yql()` func for getting `YQL` representation of type
81-
* Marked `table/types.WriteTypeStringTo` as deprecated
82+
* Marked `table/types.WriteTypeStringTo` as deprecated
8283
* Added `table/options.WithDataColumns` for supporting covering indexes
8384
* Supported `balancer` query string parameter in `DSN`
8485
* Fixed bug with scanning `YSON` value from result set
@@ -105,7 +106,7 @@
105106
* Allowed writing zero messages to topic writer
106107

107108
## v3.38.1
108-
* Fixed deadlock with implicit usage of `internal.table.Client.internalPoolAsyncCloseSession`
109+
* Fixed deadlock with implicit usage of `internal.table.Client.internalPoolAsyncCloseSession`
109110

110111
## v3.38.0
111112
* Fixed commit errors for experimental topic reader
@@ -126,10 +127,10 @@
126127
* Changed type of truncated result error from `StreamExecuteScanQuery` to retryable error
127128
* Added closing sessions if node removed from discovery results
128129
* Moved session status type from `table/options` package to `table`
129-
* Changed session status source type from `uint32` to `string` alias
130+
* Changed session status source type from `uint32` to `string` alias
130131

131132
## v3.37.6
132-
* Added to balancer notifying mechanism for listening in table client event about removing some nodes and closing sessions on them
133+
* Added to balancer notifying mechanism for listening in table client event about removing some nodes and closing sessions on them
133134
* Removed from public client interfaces `closer.Closer` (for exclude undefined behaviour on client-side)
134135

135136
## v3.37.5
@@ -139,7 +140,7 @@
139140
* Revert the marking of context errors as required to delete session
140141

141142
## v3.37.3
142-
* Fixed alter topic request - stop send empty setSupportedCodecs if customer not set them
143+
* Fixed alter topic request - stop send empty setSupportedCodecs if customer not set them
143144
* Marked the context errors as required to delete session
144145
* Added log topic api reader for internal logger
145146

@@ -185,7 +186,7 @@
185186
* Moved implementation `sugar.GenerateDeclareSection` to `internal/table`
186187
* Added transaction trace callbacks and internal logging with them
187188
* Stored context from `BeginTx` to `internal/xsql` transaction
188-
* Added automatically generated declare section to query text in `database/sql` usage
189+
* Added automatically generated declare section to query text in `database/sql` usage
189190
* Removed supports `sql.LevelSerializable`
190191
* Added `retry.Do` helper for retry custom lambda with `database/sql` without transactions
191192
* Removed `retry.WithTxOptions` option (only default isolation supports)
@@ -195,21 +196,21 @@
195196
* Added metadata to `trace.Driver.OnInvoke` and `trace.Driver.OnNewStream` done events
196197

197198
## v3.34.0
198-
* Improved the `xsql` errors mapping to `driver.ErrBadConn`
199+
* Improved the `xsql` errors mapping to `driver.ErrBadConn`
199200
* Extended `retry.DoTx` test for to achieve equivalence with `retry.Retry` behaviour
200201
* Added `database/sql` events for tracing `database/sql` driver events
201202
* Added internal logging for `database/sql` events
202203
* Supports `YDB_LOG_DETAILS` environment variable for specify scope of log messages
203204
* Removed support of `YDB_LOG_NO_COLOR` environment variable
204205
* Changed default behaviour of internal logger to without coloring
205206
* Fixed coloring (to true) with environment variable `YDB_LOG_SEVERITY_LEVEL`
206-
* Added `ydb.WithStaticCredentials(user, password)` option for make static credentials
207+
* Added `ydb.WithStaticCredentials(user, password)` option for make static credentials
207208
* Supports static credentials as part of connection string (dsn - data source name)
208209
* Changed minimal supported version of go from 1.14 to 1.16 (required for jwt library)
209210

210211

211212
## v3.33.0
212-
* Added `retry.DoTx` helper for retrying `database/sql` transactions
213+
* Added `retry.DoTx` helper for retrying `database/sql` transactions
213214
* Implemented `database/sql` driver over `ydb-go-sdk`
214215
* Marked as deprecated `trace.Table.OnPoolSessionNew` and `trace.Table.OnPoolSessionClose` events
215216
* Added `trace.Table.OnPoolSessionAdd` and `trace.Table.OnPoolSessionRemove` events
@@ -223,7 +224,7 @@
223224

224225
## v3.32.0
225226
* Refactored `trace.Topic` (experimental) handlers
226-
* Fixed signature and names of helpers in `topic/topicsugar` package
227+
* Fixed signature and names of helpers in `topic/topicsugar` package
227228
* Allowed parallel reading and committing topic messages
228229

229230
## v3.31.0
@@ -244,10 +245,10 @@
244245
* Added touching of last updated timestamp in existing conns on stage of applying new endpoint list
245246

246247
## v3.29.3
247-
* Reverted `xerrors.IsTransportError(err)` behaviour for raw grpc errors to false
248+
* Reverted `xerrors.IsTransportError(err)` behaviour for raw grpc errors to false
248249

249250
## v3.29.2
250-
* Enabled server-side session balancing for sessions created from internal session pool
251+
* Enabled server-side session balancing for sessions created from internal session pool
251252
* Removed unused public `meta.Meta` methods
252253
* Renamed `meta.Meta.Meta(ctx)` public method to `meta.Meta.Context(ctx)`
253254
* Reverted default balancer to `balancers.RandomChoice()`
@@ -267,12 +268,12 @@
267268

268269
## v3.28.1
269270
* Marked dial errors as retryable
270-
* Supported node pessimization on dialing errors
271+
* Supported node pessimization on dialing errors
271272
* Marked error from `Invoke` and `NewStream` as retryable if request not sended to server
272273

273274
## v3.28.0
274275
* Added `sugar.GenerateDeclareSection()` helper for make declare section in `YQL`
275-
* Added check when parameter name not started from `$` and automatically prepends it to name
276+
* Added check when parameter name not started from `$` and automatically prepends it to name
276277
* Refactored connection closing
277278

278279
## v3.27.0

0 commit comments

Comments
 (0)