Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 2 additions & 2 deletions config/redirects
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
define: prefix docs/drivers/go
define: base https://www.mongodb.com/${prefix}
define: versions v1.7 v1.8 v1.9 v1.10 v1.11 v1.12 v1.13 v1.14 v1.15 v1.16 v1.17 v2.0 v2.1 master
define: versions v1.7 v1.8 v1.9 v1.10 v1.11 v1.12 v1.13 v1.14 v1.15 v1.16 v1.17 v2.0 v2.1 v2.2 master

symlink: current -> v2.1
symlink: current -> v2.2
symlink: upcoming -> master

raw: ${prefix}/ -> ${base}/current/
Expand Down
2 changes: 1 addition & 1 deletion source/includes/mongodb-compatibility-table-go.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- ✓
- ✓
- ✓
-
-
Copy link
Contributor

Choose a reason for hiding this comment

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

S: consider asking if this is the case that connecting to 3.6 causes an unfixable error or if its just not tested.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

For technical reviewer: According to the compatibility table legend, should this be an x (version does not work with server version) or left blank (version not tested with server version)?

Copy link
Contributor

Choose a reason for hiding this comment

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

@jtazin Can you provide some context on which mark we should put here?


* - 2.1
- ✓
Expand Down
17 changes: 17 additions & 0 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,23 @@ This release includes the following improvements and fixes:
see the example in the :ref:`BSON Options <golang-bson-options>` section of the
BSON guide.

- Adds support for Kubernetes OIDC authentication. To learn more about how to configure
MongoDB authentication for a Kubernetes cluster, see the Kubernetes section of the
:ref:`golang-enterprise-authentication-mechanisms` guide.

- Adds support to configure the lifetime of the Data Encryption Key (DEK) cache. To learn
more about DEK management, see the
:manual:`Encryption Key Management </csfle/fundamentals/manage-keys>` guide in the
{+mdb-server+} manual.

- Adds support for ``error.Is`` and ``error.As`` in all stable public APIs for improved
error management. To learn more, see the `error.Is <https://pkg.go.dev/errors#Is>`__
and `error.As <https://pkg.go.dev/errors#As>`__ Go API documentation.

For more information about the changes in this version, see the
:github:`v2.2 release notes </mongodb/mongo-go-driver/releases/tag/v2.2.0>`
on GitHub.

.. _golang-version-2.1:

What's New in 2.1
Expand Down
Loading