Skip to content

Commit 2c08b69

Browse files
author
Sam Kleinman
committed
DOCS-5601: 3.0.4-rc0 release notes
1 parent c1bb337 commit 2c08b69

File tree

3 files changed

+109
-1
lines changed

3 files changed

+109
-1
lines changed

config/build_conf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ project:
1010
branched: true
1111
siteroot: true
1212
version:
13-
release: '3.0.3'
13+
release: '3.0.4-rc0'
1414
branch: '3.0'
1515
system:
1616
files:

source/release-notes/3.0-changelog.txt

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,90 @@
44

55
.. default-domain:: mongodb
66

7+
.. _3.0.4-changelog:
8+
9+
3.0.4 Changelog
10+
---------------
11+
12+
Security
13+
~~~~~~~~
14+
15+
- :issue:`SERVER-18475` \ :dbcommand:`authSchemaUpgrade` fails when the :data:`system.users <admin.system.users>` contains non ``MONGODB-CR`` users
16+
- :issue:`SERVER-18312` Upgrade PCRE to latest
17+
18+
Querying
19+
~~~~~~~~
20+
21+
- :issue:`SERVER-18364` Ensure non-negation predicates get chosen over negation predicates for multikey index bounds construction
22+
- :issue:`SERVER-16265` Add query details to getmore entry in profiler and :method:`db.currentOp()`
23+
- :issue:`SERVER-15225` ``CachedPlanStage`` should execute for trial period and re-plan if query performs poorly
24+
- :issue:`SERVER-13875` \ :method:`~db.collection.ensureIndex()` of ``2dsphere`` index breaks after upgrading to 2.6 (with the new :dbcommand:`createIndex` command)
25+
26+
Replication
27+
~~~~~~~~~~~
28+
29+
- :issue:`SERVER-18566` Primary member can trip fatal assertion if stepping down while running findAndModify op resulting in an upsert
30+
- :issue:`SERVER-18511` Report upstream progress when initial sync completes
31+
- :issue:`SERVER-18409` Retry failed heartbeats before marking a node as DOWN
32+
- :issue:`SERVER-18326` Rollback attempted during initial sync is fatal
33+
- :issue:`SERVER-17923` Creating/dropping multiple background indexes on the same collection can cause fatal error on secondaries
34+
- :issue:`SERVER-17913` New primary should log voters at default log level
35+
- :issue:`SERVER-17807` drain ops before restarting initial sync
36+
- :issue:`SERVER-15252` Write unit tests of ScatterGatherRunner
37+
- :issue:`SERVER-15192` Make all logOp listeners rollback-safe
38+
- :issue:`SERVER-18190` Secondary reads block replication
39+
- :issue:`SERVER-18566` Primary member can trip fatal assertion if stepping down while running :dbcommand:`findAndModify` op resulting in an upsert
40+
41+
Sharding
42+
~~~~~~~~
43+
44+
- :issue:`SERVER-18822` Sharded clusters with WiredTiger primaries may lose writes during chunk migration
45+
- :issue:`SERVER-18246` getmore on secondary in recovery mode can crash :program:`mongos`
46+
47+
Storage
48+
~~~~~~~
49+
50+
:issue:`SERVER-18442` better error message when attempting to change storage engine metadata options
51+
52+
WiredTiger
53+
~~~~~~~~~~
54+
55+
- :issue:`SERVER-18647` WiredTiger changes for MongoDB 3.0.4
56+
- :issue:`SERVER-18646` Avoid WiredTiger checkpointing dead handles
57+
- :issue:`SERVER-18629` WiredTiger journal system syncs wrong directory
58+
- :issue:`SERVER-18460` Segfault during eviction under load
59+
- :issue:`SERVER-18316` Database with WT engine fails to recover after system crash
60+
- :issue:`SERVER-18315` Throughput drop during transaction pinned phase of checkpoints under WiredTiger
61+
- :issue:`SERVER-18213` Lots of ``WriteConflict`` during multi-upsert with WiredTiger storage engine
62+
- :issue:`SERVER-18079` Large performance drop with documents > 16k on Windows
63+
- :issue:`SERVER-17944` ``WiredTigerRecordStore::truncate`` spends a lot of time sleeping
64+
65+
HTTP Console
66+
~~~~~~~~~~~~
67+
68+
:issue:`SERVER-18117` Bring back the _replSet page in the html interface
69+
70+
Build and Packaging
71+
~~~~~~~~~~~~~~~~~~~
72+
73+
- :issue:`SERVER-18894` OSX SSL builds should use unique filename
74+
- :issue:`SERVER-18421` Create SSL Builder for OS X
75+
- :issue:`SERVER-18312` Upgrade PCRE to latest
76+
- :issue:`SERVER-13596` Support --prefix rpm installation
77+
78+
Internal Code
79+
~~~~~~~~~~~~~
80+
81+
:issue:`SERVER-6826` Potential memory leak in ``ConnectionString::connect``
82+
83+
Testing
84+
~~~~~~~
85+
86+
- :issue:`SERVER-18318` Disable ``jsCore_small_oplog`` suite in Windows
87+
- :issue:`SERVER-17336` fix ``core/compact_keeps_indexes.js`` in a master/slave test configuration
88+
- :issue:`SERVER-13237` ``benchRun`` should use a thread-safe random number generator
89+
- :issue:`SERVER-18097` Remove ``mongosTest_auth`` and ``mongosTest_WT`` tasks from evergreen.yml
90+
791
.. _3.0.3-changelog:
892

993
3.0.3 Changelog

source/release-notes/3.0.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,30 @@ Minor Releases
2727

2828
/release-notes/3.0-changelog
2929

30+
.. _3.0.4-release-notes:
31+
32+
3.0.4-rc0 -- June 10, 2015
33+
~~~~~~~~~~~~~~~~~~~~~~~~~~
34+
35+
- Fix missed writes with concurrent inserts during chunk migration
36+
from shards with WiredTiger primaries: :issue:`SERVER-18822`
37+
38+
- Resolve write conflicts with multi-update updates with
39+
``upsert=true`` with the Wired Tiger Storage engine:
40+
:issue:`SERVER-18213`
41+
42+
- Fix case where secondary reads could block replication:
43+
:issue:`SERVER-18190`
44+
45+
- Improve performance on Windows with WiredTiger and documents larger
46+
than 16kb: :issue:`SERVER-18079`
47+
48+
- Fix issue where WiredTiger data files are not correctly recovered
49+
following unexpected system restarts: :issue:`SERVER-18316`
50+
51+
- `All issues closed in 3.0.4
52+
<https://jira.mongodb.org/issues/?jql=fixVersion%20%3D%20%223.0.4%22%20AND%20project%20%3D%20SERVER>`_
53+
3054
.. _3.0.3-release-notes:
3155

3256
3.0.3 -- May 12, 2015

0 commit comments

Comments
 (0)