Skip to content

DOCSP-20256: 4.3 updates #274

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ toc_landing_pages = ["/fundamentals/authentication", "/fundamentals", "/fundamen
sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"

[constants]
version = 4.2
version = "4.3"
package-name-org = "mongodb-org"
pgp-version = "{+version+}"
api = "https://mongodb.github.io/node-mongodb-native/{+version+}"
Expand Down
24 changes: 11 additions & 13 deletions source/includes/mongodb-compatibility-table-node.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@
- MongoDB 3.2
- MongoDB 3.0
- MongoDB 2.6

* - 4.3
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
-
-
-
-
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment: I think the last row header is cut off on the table. All I can see is a "check mark" without a label.
Screen Shot 2022-01-07 at 5 01 55 PM

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, I think a bug in my script added an extra check mark on line 171

* - 4.2
- ✓
- ✓
Expand All @@ -26,7 +36,6 @@
-
-
-

* - 4.1
-
- ✓
Expand All @@ -38,7 +47,6 @@
- ✓
- ✓
- ✓

* - 4.0
-
- ✓
Expand All @@ -50,7 +58,6 @@
- ✓
- ✓
- ✓

* - 3.6
-
-
Expand All @@ -62,7 +69,6 @@
- ✓
- ✓
- ✓

* - 3.5
-
-
Expand All @@ -74,7 +80,6 @@
- ✓
- ✓
- ✓

* - 3.4
-
-
Expand All @@ -86,7 +91,6 @@
- ✓
- ✓
- ✓

* - 3.3
-
-
Expand All @@ -98,7 +102,6 @@
- ✓
- ✓
- ✓

* - 3.2.1
-
-
Expand All @@ -110,7 +113,6 @@
- ✓
- ✓
- ✓

* - 3.1
-
-
Expand All @@ -122,7 +124,6 @@
- ✓
- ✓
- ✓

* - 3.0
-
-
Expand All @@ -134,7 +135,6 @@
- ✓
- ✓
- ✓

* - 2.2.12
-
-
Expand All @@ -146,7 +146,6 @@
- ✓
- ✓
- ✓

* - 2.0.14
-
-
Expand All @@ -158,7 +157,6 @@
-
- ✓
- ✓

* - 1.4.29
-
-
Expand Down
14 changes: 13 additions & 1 deletion source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,23 @@ What's New

Learn what's new in:

* :ref:`Version 4.3 <version-4.3>`
* :ref:`Version 4.2 <version-4.2>`
* :ref:`Version 4.1 <version-4.1>`
* :ref:`Version 4.0 <version-4.0>`
* :ref:`Version 3.6 <version-3.6>`

.. _version-4.3:

What's New in 4.3
-----------------

New features of the 4.3 Node.js driver release include:

- SOCKS5 support
- Option to disable UTF-8 validation
- Type inference for nested documents
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: Is this related to DOCSP-20071? If yes, maybe the wording of this could be changed to stress dot notation. Maybe "supporting type inference in queries written using dot notation"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is directly from the release notes. I would expect this to be updated once those tickets are completed. In this case, the tickets were not completed before release, so there's no content to link to in order to clarify.


.. _version-4.2:

What's New in 4.2
Expand Down Expand Up @@ -252,7 +264,7 @@ File Upload & Download

.. example::

.. code-block:: language
.. code-block:: javascript

await client.connect();
const filename = 'test.txt'; // whatever local file name you want
Expand Down