File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
core/src/main/java/com/datastax/oss/driver/internal/core/context Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<!-- Note: contrary to 3.x, insert new entries *first* in their section -->
4
4
5
- ### 4.12.0 (in progress)
5
+ ### 4.11.1
6
6
7
+ - [ bug] JAVA-2936: Support Protocol V6
7
8
- [ bug] JAVA-2934: Handle empty non-final pages in ReactiveResultSetSubscription
8
9
9
10
### 4.11.0
Original file line number Diff line number Diff line change 91
91
import com .datastax .oss .protocol .internal .PrimitiveCodec ;
92
92
import com .datastax .oss .protocol .internal .ProtocolV3ClientCodecs ;
93
93
import com .datastax .oss .protocol .internal .ProtocolV5ClientCodecs ;
94
+ import com .datastax .oss .protocol .internal .ProtocolV6ClientCodecs ;
94
95
import com .datastax .oss .protocol .internal .SegmentCodec ;
95
96
import edu .umd .cs .findbugs .annotations .NonNull ;
96
97
import edu .umd .cs .findbugs .annotations .Nullable ;
@@ -435,6 +436,7 @@ protected FrameCodec<ByteBuf> buildFrameCodec() {
435
436
new ProtocolV3ClientCodecs (),
436
437
new ProtocolV4ClientCodecsForDse (),
437
438
new ProtocolV5ClientCodecs (),
439
+ new ProtocolV6ClientCodecs (),
438
440
new DseProtocolV1ClientCodecs (),
439
441
new DseProtocolV2ClientCodecs ());
440
442
}
You can’t perform that action at this time.
0 commit comments