Skip to content

Commit 9ba709b

Browse files
(DOCS-15259): v4.4.14 changelogs (#989)
1 parent 41cb5d4 commit 9ba709b

File tree

3 files changed

+90
-1
lines changed

3 files changed

+90
-1
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
.. _4.4.14-changelog:
2+
3+
4.4.14 Changelog
4+
----------------
5+
6+
Sharding
7+
~~~~~~~~
8+
9+
:issue:`SERVER-55429` Abort migration earlier when receiver is not cleaning overlapping ranges
10+
11+
TTL
12+
~~~
13+
14+
:issue:`SERVER-52724` Increment TTL passes server status metric after the TTL work has finished
15+
16+
Internals
17+
~~~~~~~~~
18+
19+
- :issue:`SERVER-44847` Clean up explicit 'comment' fields name attached to distinct and count commands in IDL files
20+
- :issue:`SERVER-56003` ninja + icecream with changing compilers doesn't regen run-icecc.sh
21+
- :issue:`SERVER-57000` Fix handling of correlated pipeline with facet
22+
- :issue:`SERVER-57037` Improve precision of operator counters
23+
- :issue:`SERVER-57676` Wait for a checkpoint before releasing the "hangOplogCapMaintainerThread" in oplog_rollover.js
24+
- :issue:`SERVER-58310` ThreadPoolTaskExecutor is memory unsafe when task cancellation occurs around the same time an exhaust network response is received
25+
- :issue:`SERVER-59435` Fix a double free inside DocumentSource::optimizeAt()
26+
- :issue:`SERVER-60412` Host memory limit check does not honor cgroups v2
27+
- :issue:`SERVER-61769` Attempting to run an aggregation with $out or $merge in a transaction on a sharded cluster leaves idle cursors open
28+
- :issue:`SERVER-62229` Fix invariant when applying index build entries while recoverFromOplogAsStandalone=true
29+
- :issue:`SERVER-62242` $indexOfArray does not work with duplicate values in array
30+
- :issue:`SERVER-63315` Count command only accepts a string comment but should accept any BSON type in 4.4
31+
- :issue:`SERVER-63497` Fix icecream debugging
32+
- :issue:`SERVER-63974` Pin version of itsdangerous python dependency
33+
- :issue:`SERVER-64079` $search commands fail on 4.4 binary with FCV 4.2
34+
- :issue:`SERVER-64202` [4.4] initial_sync_aborts_two_phase_index_builds_hide_index.js can fail if the primary can't see a majority of the replica set
35+
- :issue:`SERVER-64304` Using --recoverFromOplogAsStandalone can result in index builds crashing the server
36+
- :issue:`SERVER-64410` Investigate whether we need to sort on searchScore when storedSource is true in $search
37+
- :issue:`SERVER-64554` abortIndexBuild oplog entry has no effect when run with --recoverFromOplogAsStandalone
38+
- :issue:`SERVER-64757` Improve error messages when scons fails to generate-ninja on Windows
39+
- :issue:`SERVER-64772` Don't finish index build before stepdown in index_killop_after_stepdown.js
40+
- :issue:`SERVER-64983` Release Client lock before rolling back WT transaction in TransactionParticipant::_resetTransactionState
41+
- :issue:`SERVER-65032` Pin python package BaseResponse for ocsp suite
42+
- :issue:`SERVER-65421` Fix package test failures on RHEL 6/7
43+
- :issue:`SERVER-65422` Fix package test failures on Ubuntu 16.04
44+
- :issue:`SERVER-65690` [v4.4] Skip backup_restore_abort_and_start_index_build.js for single-phase index build variants
45+
- :issue:`SERVER-65718` Fix mypy error
46+
- :issue:`WT-8074` Panic in reconciliation if inserting content into the history fails
47+
- :issue:`WT-8149` Updating metadata salvage csuite test to handle salvaging table metadata without salvaging file metadata
48+
- :issue:`WT-8198` Switch the bulk load cursor to a scratch buffer
49+
- :issue:`WT-8270` Updating the time window clear obsolete stage of reconciliation to correctly consider global visibility.
50+
- :issue:`WT-8362` Remove or rewrite HS entries of a key when OOO tombstone is written to datastore
51+
- :issue:`WT-8422` Clear the on-disk cell time window if it is obsolete
52+
- :issue:`WT-8450` Report stats in hs_cleanup_stress, don't validate them
53+
- :issue:`WT-8598` Avoid checkpoint cleanup always on shutdown
54+
- :issue:`WT-8649` WT_SESSION methods cannot release scratch buffers unless reset or closing
55+
- :issue:`WT-8708` Fix timestamp usage error in test/checkpoint
56+
- :issue:`WT-8743` Configure hs_cleanup configuration to stress the cache less
57+
- :issue:`WT-8753` Add tombstone when rolling back in-memory, prepared, reconciled updates
58+
- :issue:`WT-8799` Disable documentation update on mongodb-5.0
59+
- :issue:`WT-8824` Disable code coverage measurement on mongodb-4.4
60+
- :issue:`WT-8874` Disable compatibility tests on mongodb-5.0
61+
- :issue:`WT-8879` Set the OOO flag when the selected tombstone is globally visible
62+
- :issue:`WT-8894` Find the path to the mongod executable for many-collection-test
63+
- :issue:`WT-8909` Disable cpp test search_near_01 on 4.4
64+
- :issue:`WT-8924` Don't check against on disk time window if there is an insert list when checking for conflicts in row-store
65+

source/release-notes/4.4-changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
:depth: 1
1111
:class: singlecol
1212

13+
.. include:: /includes/changelogs/releases/4.4.14.rst
14+
1315
.. include:: /includes/changelogs/releases/4.4.13.rst
1416

1517
.. include:: /includes/changelogs/releases/4.4.12.rst

source/release-notes/4.4.txt

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,29 @@ Release Notes for MongoDB 4.4
1313
Patch Releases
1414
--------------
1515

16+
.. _4.4.14-release-notes:
17+
18+
4.4.14 - Upcoming
19+
~~~~~~~~~~~~~~~~~
20+
21+
Issues fixed:
22+
23+
- :issue:`SERVER-64983` Release Client lock before rolling back WT
24+
transaction in TransactionParticipant::_resetTransactionState
25+
- :issue:`SERVER-62229` Fix invariant when applying index build entries
26+
while recoverFromOplogAsStandalone=true
27+
- :issue:`SERVER-60412` Host memory limit check does not honor cgroups
28+
v2
29+
- :issue:`SERVER-55429` Abort migration earlier when receiver is not
30+
cleaning overlapping ranges
31+
- :issue:`WT-8924` Don't check against on disk time window if there is
32+
an insert list when checking for conflicts in row-store
33+
34+
- `All JIRA issues closed in 4.4.14
35+
<https://jira.mongodb.org/issues/?jql=project%20in%20(SERVER%2CTOOLS%2CWT)%20AND%20resolution%3D%27Fixed%27%20and%20fixversion%3D%274.4.14%27>`_
36+
37+
- :ref:`4.4.14-changelog`
38+
1639
.. _4.4.13-release-notes:
1740

1841
4.4.13 - Mar 7, 2022
@@ -2528,4 +2551,3 @@ of the related projects.
25282551
/release-notes/4.4-upgrade-sharded-cluster
25292552
/release-notes/4.4-downgrade
25302553
/release-notes/4.4-changelog
2531-

0 commit comments

Comments
 (0)