Skip to content

Commit

Permalink
DOCS-7004 3.0.9 upcoming
Browse files Browse the repository at this point in the history
  • Loading branch information
kay-kim committed Jan 20, 2016
1 parent 3cffd41 commit 7ef677e
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 4 deletions.
81 changes: 81 additions & 0 deletions source/includes/changelogs/releases/3.0.9.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
.. _3.0.9-changelog:

3.0.9 Changelog
---------------

Security
~~~~~~~~

:issue:`SERVER-21724` Backup role can't read system.profile

Sharding
~~~~~~~~

- :issue:`SERVER-19266` An error document is returned with result set
- :issue:`SERVER-21382` Sharding migration transfers all document deletions
- :issue:`SERVER-22114` Mongos can accumulate multiple copies of ChunkManager when a shard restarts

Replication
~~~~~~~~~~~

- :issue:`SERVER-18219` "control reaches end of non-void function" errors in GCC with WCE retry loop
- :issue:`SERVER-21583` ApplyOps background index creation may deadlock
- :issue:`SERVER-22109` Invariant failure when running applyOps to create an index with a bad ns field

Query
~~~~~

- :issue:`SERVER-19128` Fatal assertion during secondary index build
- :issue:`SERVER-19996` Queries which specify sort and batch size can generate results out of order, if documents concurrently updated
- :issue:`SERVER-20083` Add log statement at default log level for when an index filter is set or cleared successfully
- :issue:`SERVER-21602` Reduce execution time of cursor_timeout.js
- :issue:`SERVER-21776` Move per-operation log lines for queries out of the QUERY log component

Write Operations
~~~~~~~~~~~~~~~~

:issue:`SERVER-21647` $rename changes field ordering

Aggregation
~~~~~~~~~~~

:issue:`SERVER-7656` Optimize aggregation on sharded setup if first stage is exact match on shard key

Storage
~~~~~~~

- :issue:`SERVER-20858` Invariant failure in OplogStones for non-capped oplog creation
- :issue:`SERVER-20866` Race condition in oplog insert transaction rollback
- :issue:`SERVER-21545` collMod and invalid parameter triggers fassert on dropCollection on mmapv1
- :issue:`SERVER-22014` index_bigkeys_nofail.js triggers spurious failures when run in parallel with other tests

WiredTiger
``````````

- :issue:`SERVER-20961` Large amounts of create and drop collections can cause listDatabases to be slow under WiredTiger
- :issue:`SERVER-22129` WiredTiger changes for MongoDB 3.0.9

Operations
~~~~~~~~~~

:issue:`SERVER-20358` Usernames can contain NULL characters

Build and Packaging
~~~~~~~~~~~~~~~~~~~

- :issue:`SERVER-17747` FreeBSD 11.0-CURRENT build issue
- :issue:`SERVER-18162` Fail to start with non-existing /var/run/mongodb/
- :issue:`SERVER-18953` Generate debug symbols on OS X

Internals
~~~~~~~~~

- :issue:`SERVER-18373` MONGO_COMPILER_UNREACHABLE should terminate if violated
- :issue:`SERVER-19110` Ignore failed operations in mixed_storage_version_replication.js
- :issue:`SERVER-21934` Add extra information to OSX stack traces to facilitate addr2line translation
- :issue:`SERVER-21960` Include symbol name in stacktrace json when available
- :issue:`SERVER-22013` coll_mod_bad_spec.js tries to pass filter to getCollectionInfos on v3.0 branch
- :issue:`SERVER-22054` Authentication failure reports incorrect IP address
- :issue:`SERVER-22191` Race condition in CurOp constructor (<=3.0 only)
- :issue:`TOOLS-1002` oplog_rollover test is flaky

2 changes: 2 additions & 0 deletions source/release-notes/3.0-changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
:depth: 1
:class: twocols

.. include:: /includes/changelogs/releases/3.0.9.rst

.. include:: /includes/changelogs/releases/3.0.8.rst

.. include:: /includes/changelogs/releases/3.0.7.rst
Expand Down
29 changes: 25 additions & 4 deletions source/release-notes/3.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,38 @@ Minor Releases

/release-notes/3.0-changelog

.. _3.0.9-release-notes:

3.0.9 -- Upcoming
~~~~~~~~~~~~~~~~~

- Fixed issue where queries which specify sort and batch size can
return results out of order if documents are concurrently updated.
:issue:`SERVER-19996`

- Fixed performance issue where large amounts of create and drop
collections can cause ``listDatabases`` to be slow under WiredTiger.
:issue:`SERVER-20961`

- Modified the authentication failure message to include the client IP
address. :issue:`SERVER-22054`

- `All issues closed in 3.0.9
<https://jira.mongodb.org/issues/?jql=project%20in%20(SERVER%2C%20TOOLS)%20AND%20fixVersion%20%3D%203.0.9%20AND%20resolution%20%3D%20Fixed%20>`_

.. _3.0.8-release-notes:

3.0.8 -- Dec 15, 2015
~~~~~~~~~~~~~~~~~~~~~

- :dbcommand:`findAndModify` on :program:`mongos` can upsert to the wrong
shard. :issue:`SERVER-20407`.
- Fixed issue where :dbcommand:`findAndModify` on :program:`mongos` can
upsert to the wrong shard. :issue:`SERVER-20407`.

- Document not found due to WiredTiger commit visibility issue. :issue:`SERVER-21275`.
- Fixed WiredTiger commit visibility issue which caused document not
found. :issue:`SERVER-21275`.

- Oplog can grow to 3x configured size. :issue:`SERVER-21553`
- Fixed issue where the oplog can grow to 3x configured size.
:issue:`SERVER-21553`

- `All issues closed in 3.0.8
<https://jira.mongodb.org/issues/?jql=project%20in%20(SERVER%2C%20TOOLS)%20AND%20fixVersion%20%3D%203.0.8%20AND%20resolution%20%3D%20Fixed%20>`_
Expand Down

0 comments on commit 7ef677e

Please sign in to comment.