Skip to content

DOCS-1255 ssl release notes and within index #754

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

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions source/administration/ssl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ private key, use a command that resembles the following:
cd /etc/ssl/
openssl req -new -x509 -days 365 -nodes -out mongodb-cert.crt -keyout mongodb-cert.key

This operation generates a new a self-signed certificate
with no passphrase, that valid for 365 days. Once you have the
certificate, concatenate the certificate and private key to a
:file:`.pem` file, as in the following example:
This operation generates a new, self-signed certificate with no
passphrase that is valid for 365 days. Once you have the certificate,
concatenate the certificate and private key to a :file:`.pem` file, as
in the following example:

.. code-block:: sh

Expand Down
6 changes: 4 additions & 2 deletions source/reference/operator/geoWithin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $geoWithin
:operator:`$geoWithin` operator.

.. versionchanged:: 2.2.3
:operator:`$geoWithin` no longer requires a geospatial
:operator:`$geoWithin` does not require a geospatial
index. However, a geospatial index will improve query
performance.

Expand Down Expand Up @@ -98,4 +98,6 @@ $geoWithin
.. operator:: $within

.. deprecated:: 2.4
:operator:`$geoWithin` replaces :operator:`$within` in MongoDB 2.4.
:operator:`$geoWithin` replaces :operator:`$within` in MongoDB
2.4. In addition, :operator:`$within` no longer requires
a geospatial index in 2.4.
13 changes: 11 additions & 2 deletions source/release-notes/2.4.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ query operator for queries on GeoJSON data:

The operators use the new :operator:`$geometry` parameter.

Additionally, :operator:`$geoWithin` instead no longer requires a
geospatial index.
The :operator:`$within` operator no longer requires a geospatial index.
Additionally, the :operator:`$within` has been deprecated. Use the new
:operator:`$geoWithin` operator instead.

For more information on geospatial indexes in 2.4, see:

Expand Down Expand Up @@ -250,6 +251,14 @@ Use :parameter:`supportCompatibilityFormPrivilegeDocuments` to disable
the legacy privilege documents, which MongoDB continues to support in
2.4.

Enhanced SSL Support
~~~~~~~~~~~~~~~~~~~~

In 2.4, MongoDB instances can be set up to require clients to provide
SSL certificates signed by a Certificate Authority. You must use the
MongoDB distribution that supports SSL, and your client driver must
support SSL. See :doc:`/administration/ssl` for more information.

Administration Changes
++++++++++++++++++++++

Expand Down