Skip to content

Commit 9df30bd

Browse files
authored
NODEJS-664: Doc updates missed in 4.7.0 release (#414)
1 parent 3c852c6 commit 9df30bd

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
# ChangeLog - DataStax Node.js Driver
22

3+
## 4.7.1
4+
5+
2023-09-18
6+
7+
This release contains only documentation updates; the code is unchanged from version 4.7.0.
8+
9+
### Bug fixes
10+
11+
- [NODEJS-664] - Fix documentation erroneously left out of 4.7.0
12+
313
## 4.7.0
414

515
2023-09-14
616

717
### Features
18+
819
- [NODEJS-653] - Update supported platforms to reflect more modern versions of node.js
920
- [NODEJS-655] - Support vector type
21+
- [NODEJS-659] - Update dependencies in package.json to address CVEs
1022

1123
### Bug fixes
24+
1225
- [PR #391] - Escape column names with quotes (emr)
1326

1427
## 4.6.4

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,13 @@ documentation][doc-logging] for more information.
244244

245245
## Compatibility
246246

247-
- Apache Cassandra versions 2.1 and above.
248-
- DataStax Enterprise versions 4.8 and above.
249-
- Node.js versions 8 and above.
247+
The driver supports all versions of Node.js, Cassandra, and DSE that are not EOL at the time of release. Only LTS eligible branches (i.e. even numbered releases) are supported for Node.js. See the [project documentation] for more information about the Node.js release cycle.
248+
249+
The current version of the driver offers support consistent with this policy for the following:
250+
251+
- Apache Cassandra versions 3.0 and above.
252+
- DataStax Enterprise versions 5.1 and 6.8.
253+
- Node.js versions 18.x and 20.x.
250254

251255
Note: DataStax products do not support big-endian systems.
252256

@@ -284,6 +288,7 @@ Unless required by applicable law or agreed to in writing, software distributed
284288
[pooling]: https://docs.datastax.com/en/developer/nodejs-driver/latest/features/connection-pooling/
285289
[batch]: https://docs.datastax.com/en/developer/nodejs-driver/latest/features/batch/
286290
[old-driver]: https://github.com/jorgebay/node-cassandra-cql
291+
[project documentation]: https://github.com/nodejs/release#release-schedule
287292
[jorgebay]: https://github.com/jorgebay
288293
[drivers]: https://github.com/datastax
289294
[mailinglist]: https://groups.google.com/a/lists.datastax.com/forum/#!forum/nodejs-driver-user

doc/features/datatypes/collections/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ client.execute('SELECT map_val FROM tbl')
7474
### Vector
7575

7676
As of version 4.7.0 the driver also includes support for the vector type available in Cassandra 5.0. Vectors are represented as instances of
77-
the [Float32Array] class. For example, to create and write to a vector with three dimensions you might do something like the following:
77+
the [Float32Array] class. For example, to create and write to a vector with three dimensions you can do the following:
7878

7979
```javascript
8080
await c.connect()

0 commit comments

Comments
 (0)