Skip to content

Commit 7b8960a

Browse files
(DOCS-15655): 5.0.13 changelog (#1922)
* (DOCS-15655): 5.0.13 changelog (#1921) * update snooty.toml
1 parent fd5010c commit 7b8960a

File tree

4 files changed

+82
-1
lines changed

4 files changed

+82
-1
lines changed

snooty.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ windows-dir-version = "5.0" # wizard
207207
package-name-org = "mongodb-org"
208208
package-name-enterprise = "mongodb-enterprise"
209209
version = "5.0"
210-
release = "5.0.12"
210+
release = "5.0.13"
211211
version-dev = "5.3"
212212
pgp-version = "{+version+}"
213213
rsa-key = "4B7C549A058F8B6B"
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
.. _5.0.13-changelog:
2+
3+
5.0.13 Changelog
4+
----------------
5+
6+
Sharding
7+
~~~~~~~~
8+
9+
- :issue:`SERVER-68094` Resharding with custom generated _id fails with projection error
10+
- :issue:`SERVER-68139` Resharding command fails if the projection sort is bigger than 100MB
11+
- :issue:`SERVER-68869` A retry of _configSvrReshardCollection can succeed causing resharding_coordinator_recovers_abort_decision.js to fail
12+
- :issue:`SERVER-69142` A retry of _shardsvrReshardCollection can cause DuplicateKey error (resharding_nonblocking_coordinator_rebuild.js)
13+
- :issue:`SERVER-69220` refineCollectionShardKey permits toggling current shard key fields between range-based and hashed, leading to data inconsistency
14+
- :issue:`SERVER-69384` Fix v5.0 legacy shardCollection path for implicitCreateIndex parameter
15+
- :issue:`SERVER-69700` Replication rollback fails resharding_coordinator_recovers_abort_decision.js
16+
17+
Write Operations
18+
~~~~~~~~~~~~~~~~
19+
20+
:issue:`SERVER-50454` Avoiding sending the "keyValue" field to drivers on duplicate key error
21+
22+
Internals
23+
~~~~~~~~~
24+
25+
- :issue:`SERVER-58673` Enable featureFlagPerShardCursor
26+
- :issue:`SERVER-60551` Occasionally getting "Initialized wire specification" when connecting
27+
- :issue:`SERVER-61185` Use prefix_search for unique index lookup
28+
- :issue:`SERVER-62400` Add $_passthroughToShard parameter to AggregateCommandRequest
29+
- :issue:`SERVER-62681` Create change streams per shard cursor passthrough suite
30+
- :issue:`SERVER-62738` Give mongos the ability to passthrough to a specific shard
31+
- :issue:`SERVER-63772` Post Batch Resume token not sent on initial batch from per shard cursor change stream
32+
- :issue:`SERVER-63773` Per Shard cursor post batch resume token not set in getMore responses
33+
- :issue:`SERVER-63774` Pass optional dbVersion to runPipelineOnSpecificShard
34+
- :issue:`SERVER-63781` $sortKey not filtered out in initial batch from post batch resume token
35+
- :issue:`SERVER-65006` Write conflict on commitIndexBuild oplog entry insertion can cause multikey to fail to be set
36+
- :issue:`SERVER-66794` Add an in-memory flag for TS collections having dates outside years 1970-2038
37+
- :issue:`SERVER-67402` Linearizable reads can occasionally read with wrong read source
38+
- :issue:`SERVER-67538` Multi-doc transactions should fail if on an old, incompatible snapshot
39+
- :issue:`SERVER-67650` Resharding recipient can return remainingOperationTimeEstimatedSecs=0 when the oplog applier hasn't caught up with the oplog fetcher
40+
- :issue:`SERVER-67653` Resharding coordinator can incorrectly conclude that it can start the critical section although on one recipient the oplog applier hasn't caught up with the oplog fetcher
41+
- :issue:`SERVER-67725` Check catalog consistency on shards as precondition for rename
42+
- :issue:`SERVER-67916` Race during stepdown can trigger invariant in ReshardingMetrics
43+
- :issue:`SERVER-68003` Make experiment_unified_ninja.vars the default
44+
- :issue:`SERVER-68126` Check for negative maxChunkSize input value in AutoSplitVector
45+
- :issue:`SERVER-68691` $graphLookup does not report variable references for 'restrictSearchWithMatch' filter
46+
- :issue:`SERVER-69002` [5.0] backport pm-2419 Per Shard Cursors via mongos
47+
- :issue:`SERVER-69108` SCCL can immediately return config and admin metadata without triggering a refresh
48+
- :issue:`SERVER-69547` Add multiversion_incompatible tag to show_raw_update_description*.js
49+
- :issue:`SERVER-69590` libunwind warnings on clang arm platforms
50+
- :issue:`SERVER-69611` Set the -ffp-contract=off compiler option by default
51+
- :issue:`SERVER-69693` Use lambda instead of repeating code in resharding coordinator
52+
- :issue:`SERVER-69785` robustify change_streams_per_shard_cursor.js
53+
- :issue:`WT-9870` Fix updating pinned timestamp whenever oldest timestamp is updated during recovery
54+

source/release-notes/5.0-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/5.0.13.rst
14+
1315
.. include:: /includes/changelogs/releases/5.0.12.rst
1416

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

source/release-notes/5.0.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,31 @@ Release Notes for MongoDB 5.0
1717
Patch Releases
1818
--------------
1919

20+
.. _5.0.13-release-notes:
21+
22+
5.0.13 - Sep 29, 2022
23+
~~~~~~~~~~~~~~~~~~~~~
24+
25+
Issues fixed:
26+
27+
- :issue:`SERVER-69611` Set the -ffp-contract=off compiler option by
28+
default
29+
- :issue:`SERVER-69220` refineCollectionShardKey permits toggling
30+
current shard key fields between range-based and hashed, leading to
31+
data inconsistency
32+
- :issue:`SERVER-67650` Resharding recipient can return
33+
remainingOperationTimeEstimatedSecs=0 when the oplog applier hasn't
34+
caught up with the oplog fetcher
35+
- :issue:`SERVER-68094` Resharding with custom generated _id fails with
36+
projection error
37+
- :issue:`WT-9870` Fix updating pinned timestamp whenever oldest
38+
timestamp is updated during recovery
39+
40+
- `All JIRA issues closed in 5.0.13
41+
<https://jira.mongodb.org/issues/?jql=project%20in%20(SERVER%2C%20TOOLS%2C%20WT)%20AND%20resolution%20%3D%20Fixed%20AND%20fixVersion%20%3D%205.0.13>`_
42+
43+
- :ref:`5.0.13-changelog`
44+
2045
.. _5.0.12-release-notes:
2146

2247
5.0.12 - Sep 05, 2022

0 commit comments

Comments
 (0)