Skip to content

Commit 547a620

Browse files
committed
release 3.19.0
1 parent 914685d commit 547a620

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
# ChangeLog - DataStax C# Driver
22

3-
## Unreleased
3+
## 3.19.0
44

5-
TBD
5+
2022-12-22
66

77
### Bug fixes
88

99
* [[CSHARP-974](https://datastax-oss.atlassian.net/browse/CSHARP-974)] Race condition in Hashed Wheel Timer causes unhandled exception
10+
* [[CSHARP-981](https://datastax-oss.atlassian.net/browse/CSHARP-981)] Memory leak - Diposed Sessions are still referenced by the Cassandra.Cluster that created them
11+
* [[CSHARP-987](https://datastax-oss.atlassian.net/browse/CSHARP-987)] Race condition in control connection reconnection
12+
13+
### Improvements
14+
15+
* [[CSHARP-977](https://datastax-oss.atlassian.net/browse/CSHARP-977)] Reduce memory allocations on BeConverter by renting arrays from ArrayPool
16+
* [[CSHARP-979](https://datastax-oss.atlassian.net/browse/CSHARP-979)] Improve data reading performance by inlining hot methods in RecyclableMemoryStream
17+
* [[CSHARP-980](https://datastax-oss.atlassian.net/browse/CSHARP-980)] Improve data reading performance by avoiding using ThreadLocal<T> in the hot loop
18+
19+
### New Features
20+
21+
* [[CSHARP-986](https://datastax-oss.atlassian.net/browse/CSHARP-986)] LINQ support for writetime\(\) function
1022

1123
## 3.18.0
1224

docs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,14 @@ api_docs:
5656
'3.16': http://docs.datastax.com/en/drivers/csharp/3.16
5757
'3.17': http://docs.datastax.com/en/drivers/csharp/3.17
5858
'3.18': http://docs.datastax.com/en/drivers/csharp/3.18
59+
'3.19': http://docs.datastax.com/en/drivers/csharp/3.19
5960
checks:
6061
external_links:
6162
exclude:
6263
- 'https://ci.appveyor.com/api/projects/status/ri1olv8bl7b7yk7y/branch/master?svg=true'
6364
versions:
65+
- name: '3.19'
66+
ref: '3.19'
6467
- name: '3.18'
6568
ref: '3.18'
6669
- name: '3.17'

src/Cassandra/Cassandra.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<Copyright>Copyright © by DataStax</Copyright>
55
<AssemblyTitle>DataStax C# Driver for Apache Cassandra</AssemblyTitle>
66
<AssemblyVersion>3.99.0.0</AssemblyVersion>
7-
<FileVersion>3.18.0.0</FileVersion>
8-
<VersionPrefix>3.18.0</VersionPrefix>
7+
<FileVersion>3.19.0.0</FileVersion>
8+
<VersionPrefix>3.19.0</VersionPrefix>
99
<Authors>DataStax</Authors>
1010
<TargetFrameworks Condition="'$(BuildCoreOnly)' != 'True'">net452;netstandard2.0</TargetFrameworks>
1111
<TargetFramework Condition="'$(BuildCoreOnly)' == 'True'">netstandard2.0</TargetFramework>

src/Extensions/Cassandra.AppMetrics/Cassandra.AppMetrics.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<Description>This package builds on the DataStax Enterprise C# driver and DataStax C# Driver for Apache Cassandra, adding a metrics provider implementation using App Metrics.</Description>
55
<Copyright>Copyright © by DataStax</Copyright>
66
<AssemblyVersion>3.99.0.0</AssemblyVersion>
7-
<FileVersion>3.18.0.0</FileVersion>
8-
<VersionPrefix>3.18.0</VersionPrefix>
7+
<FileVersion>3.19.0.0</FileVersion>
8+
<VersionPrefix>3.19.0</VersionPrefix>
99
<Authors>DataStax</Authors>
1010
<TargetFrameworks Condition="'$(BuildCoreOnly)' != 'True'">netstandard2.0;net461</TargetFrameworks>
1111
<TargetFrameworks Condition="'$(BuildCoreOnly)' == 'True'">netstandard2.0</TargetFrameworks>

0 commit comments

Comments
 (0)