Skip to content

Commit

Permalink
DOCS-6272 3.0.7-rc relnotes
Browse files Browse the repository at this point in the history
  • Loading branch information
kay-kim committed Sep 30, 2015
1 parent 65e2796 commit 1bd7db4
Show file tree
Hide file tree
Showing 5 changed files with 136 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ source/includes/steps/
source/includes/generated/includes-overview.rst
source/includes/generated/
source/includes/option/
source/includes/changelogs/*rst
!source/includes/changelogs/releases/*rst
source/includes/changelogs/*.rst
!source/includes/changelogs/releases/*.rst
primer/source/includes/toc/
primer/source/includes/table/
primer/source/includes/steps/
Expand Down
4 changes: 3 additions & 1 deletion config/jira.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ site:
projects:
- 'SERVER'
- 'TOOLS'
versions: []
versions:
- '3.0.7'
# commenting out since only want to generate for release
changelog:
# this data is in the global configuration store in the
# docs-tools/data directory. Modify it there. This configuration
Expand Down
110 changes: 110 additions & 0 deletions source/includes/changelogs/releases/3.0.7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
.. _3.0.7-changelog:

3.0.7 Changelog
---------------

Security
~~~~~~~~

- :issue:`SERVER-13647` :authrole:`root` role does not contain sufficient privileges for a :program:`mongorestore` of a system with security enabled
- :issue:`SERVER-15893` :authrole:`root` role should be able to run validate on system collections
- :issue:`SERVER-19131` :authrole:`clusterManager` role does not have permission for adding tag ranges
- :issue:`SERVER-19284` Should not be able to create role with same name as builtin role
- :issue:`SERVER-20394` Remove non-integer test case from ``iteration_count_control.js``
- :issue:`SERVER-20401` Publicly expose :setting:`net.ssl.disabledProtocols`

Sharding
~~~~~~~~

- :issue:`SERVER-17886` dbKillCursors op asserts on mongos when at log level 3
- :issue:`SERVER-20191` multi-updates/remove can make successive queries skip shard version checking
- :issue:`SERVER-20460` :dbcommand:`listIndexes` on 3.0 :program:`mongos` with 2.6 :program:`mongod` instances returns erroneous "not authorized"
- :issue:`SERVER-20557` Active window setting is not being processed correctly

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

- :issue:`SERVER-20262` Replica set nodes can get stuck in a state where they will not step themselves down
- :issue:`SERVER-20473` calling setMaintenanceMode(true) while running for election crashes server

Query
~~~~~

- :issue:`SERVER-17895` Server should not clear collection plan cache periodically when write operations are issued
- :issue:`SERVER-19412` NULL PlanStage in getStageByType causes segfault during stageDebug command
- :issue:`SERVER-19725` NULL pointer crash in ``QueryPlanner::plan`` with :query:$near`` operator
- :issue:`SERVER-20139` Enable CachedPlanStage replanning by default in 3.0
- :issue:`SERVER-20219` Add startup warning to 3.0 if have indexes with partialFilterExpression option
- :issue:`SERVER-20347` Document is not found when searching on a field indexed by a hash index using a :query:`$in` clause with regular expression
- :issue:`SERVER-20364` Cursor is not closed when querying ``system.profile`` collection with :authrole:`clusterMonitor` role

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

- :issue:`SERVER-11746` Improve shard version checking for versioned (single) updates after yield
- :issue:`SERVER-19361` Insert of document with duplicate ``_id`` fields should be forbidden
- :issue:`SERVER-20531` Mongodb server crash: Invariant failure res.existing

Storage
~~~~~~~

- :issue:`SERVER-18624` :dbcommand:`listCollections` command should not be O(n^2) on MMAPv1
- :issue:`SERVER-20617` ``wt_nojournal_toggle.js`` failing intermittently in noPassthrough_WT
- :issue:`SERVER-20638` Reading the profiling level shouldn't create databases that don't exist

WiredTiger
``````````

- :issue:`SERVER-18250` Once enabled journal cannot be disabled under WiredTiger
- :issue:`SERVER-20008` Stress test deadlock in WiredTiger
- :issue:`SERVER-20091` Poor query throughput and erratic behavior at high connection counts under WiredTiger
- :issue:`SERVER-20159` Out of memory on index build during initial sync even with low cacheSize parameter
- :issue:`SERVER-20176` Deletes with ``j:true`` slower on WT than MMAPv1
- :issue:`SERVER-20204` Segmentation fault during index build on 3.0 secondary

Operations
~~~~~~~~~~

- :issue:`SERVER-14750` Convert RPM and DEB mongod.conf files to new YAML format
- :issue:`SERVER-18506` Balancer section of printShardingStatus should respect passed-in configDB

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

- :issue:`SERVER-18516` ubuntu/debian packaging : Release files report wrong Codename
- :issue:`SERVER-18581` The Ubuntu package should start the mongod with group=mongodb
- :issue:`SERVER-18749` Ubuntu startup files have an inconsistent directory for dbpath and logs
- :issue:`SERVER-18793` Enterprise RPM build issues
- :issue:`SERVER-19088` The --cache flag should force --build-fast-and-loose=off
- :issue:`SERVER-19509` The nproc ulimits are different across packages
- :issue:`SERVER-19661` Build fails: error: expected expression

Tools
~~~~~

- :issue:`TOOLS-767` :program:`mongorestore`: error parsing metadata: call of reflect.Value.Set on zero Value
- :issue:`TOOLS-847` :program:`mongorestore` exits in response to SIGHUP, even when run under nohup
- :issue:`TOOLS-874` :program:`mongoimport` $date close to epoch not working
- :issue:`TOOLS-916` :program:`mongoexport` throws reflect.Value.Type errors

Internals
~~~~~~~~~

- :issue:`SERVER-18178` Fix ``mr_drop.js`` test to not fail from nondeterministic collection drop timing
- :issue:`SERVER-19819` Update perf.yml to use new mongo-perf release
- :issue:`SERVER-19820` Update perf.yml to use mongo-perf check script
- :issue:`SERVER-19899` Mongo-perf analysis script -- Check for per thread level regressions
- :issue:`SERVER-19901` Mongo-perf analysis script -- Compare to tagged baseline
- :issue:`SERVER-19902` Mongo-perf analysis script -- Use noise data for regression comparison instead of fixed percentage
- :issue:`SERVER-20035` Updated perf_regresison_check.py script to output report.json summarizing results
- :issue:`SERVER-20121` XorShift PRNG should use unsigned arithmetic
- :issue:`SERVER-20216` Extend optional Command properties to SASL
- :issue:`SERVER-20316` Relax thread level comparisons on mongo-perf check script
- :issue:`SERVER-20322` Wiredtiger develop can lose records following stop even with log enabled
- :issue:`SERVER-20383` Cleanup old connections after every ChunkManagerTest
- :issue:`SERVER-20429` Canceled lock attempts should unblock pending requests
- :issue:`SERVER-20464` Add units of measurement to log output of perf regression analysis
- :issue:`SERVER-20691` Improve SASL and SCRAM compatibility
- :issue:`TOOLS-894` ``mongoimport --upsert --type json`` with _id being an object does not work most of the times
- :issue:`TOOLS-898` Mongo tools attempt to connect as ipv6 rather than ipv4 by default, when built with go 1.5

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 @@ -4,6 +4,8 @@

.. default-domain:: mongodb

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

.. _3.0.6-changelog:

3.0.6 Changelog
Expand Down
19 changes: 19 additions & 0 deletions source/release-notes/3.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,25 @@ Minor Releases

/release-notes/3.0-changelog

.. _3.0.7-release-notes:

3.0.7 (Upcoming)
~~~~~~~~~~~~~~~~

- Improvements to WiredTiger memory handling and performance:
:issue:`SERVER-20159`, :issue:`SERVER-20204`, :issue:`SERVER-20091`,
and :issue:`SERVER-20176`.

- Fixed issue where replica set nodes will not step down:
:issue:`SERVER-19464`.

- Additional privileges for built-in roles:
:issue:`SERVER-19131`, :issue:`SERVER-15893`, and
:issue:`SERVER-13647`.

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

.. _3.0.6-release-notes:

3.0.6 -- August 24, 2015
Expand Down

0 comments on commit 1bd7db4

Please sign in to comment.