Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 9c15870

Browse files
committed
minor: Update Changes
1 parent 054f48b commit 9c15870

File tree

1 file changed

+64
-67
lines changed

1 file changed

+64
-67
lines changed

‎Changes

Lines changed: 64 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,27 @@
22

33
{{ $NEXT }}
44

5-
v2.1.2 2019年08月05日 19:29:08-04:00 America/New_York (TRIAL RELEASE)
5+
[!!! END OF LIFE NOTICE !!!]
66

7-
[Bug fixes]
7+
- Version v2.2.0 is the final feature release of the MongoDB Perl
8+
driver. The driver is now in a 12-month "sunset" period and will
9+
receive security patches and critical bug fixes only. The Perl
10+
driver will be end-of-life and unsupported on August 13, 2020.
811

9-
- Work around compilation errors if Role::Tiny 2.000007 is installed.
12+
[*** Deprecations ***]
1013

11-
v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
14+
- PERL-993 Deprecate parallel_scan
1215

1316
[Additions]
1417

18+
- PERL-789 OP_MSG support
19+
20+
- PERL-920 Add option for applications to register a custom server selector
21+
1522
- PERL-989 Implement SDAM monitoring
1623

24+
- PERL-1008 Support index all paths
25+
1726
- PERL-1021 Implement Unified URI Options
1827

1928
- PERL-1022 Implement Convenient API for Transactions
@@ -26,6 +35,8 @@ v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
2635

2736
- PERL-1035 Support sharded transactions recovery token
2837

38+
- PERL-1046 Add database aggregation method
39+
2940
- PERL-1052 Support 'startAfter' option to the $changeStream stage
3041

3142
- PERL-1053 Add support for Zstandard compression
@@ -42,6 +53,8 @@ v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
4253

4354
[Changes]
4455

56+
- PERL-785 Call "ping" on a socket that has been idle for socketCheckIntervalMS
57+
4558
- PERL-1028 Support server connections that survive primary stepdown
4659

4760
- PERL-1054 Disable TLS renegotiation when possible (security)
@@ -57,12 +70,31 @@ v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
5770

5871
[Bug Fixes]
5972

73+
- PERL-927 Ensure hint used with aggregate is string or IxHash or BSON::Doc
74+
75+
- PERL-930 Allow use of BSON::Raw for insert, update, etc.
76+
77+
- PERL-970 Can't use BSON::Doc as sort option in find command
78+
79+
- PERL-988 Index lists should preserve key order in results
80+
81+
- PERL-994 GridFS DownloadStream warns in spec tests on old perls
82+
83+
- PERL-1012 Driver doesn't clear session pool after fork
84+
6085
- PERL-1017 Ignore db and collection read concern in transaction
6186

87+
- PERL-1033 Pod link error
88+
89+
- PERL-1041 Bulk Write Op calls result method on non-object error
90+
6291
- PERL-1057 Use majority write concern when retrying commitTransaction
6392

6493
- PERL-1058 Drivers should ignore batchSize=0 for aggregate with $out
6594

95+
- PERL-1061 The driver fails to parse a URI if mongodb+srv format is
96+
used and the ssl=true option is set
97+
6698
- PERL-1076 Ensure that getMore right after a resume is retried in changestreams
6799

68100
- PERL-1083 Work around StaleDbVersion distinct bug
@@ -73,6 +105,17 @@ v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
73105

74106
[Testing]
75107

108+
- PERL-806 Test Driver Wire Version Overlap logic
109+
110+
- PERL-833 Test QueryResult destructor kills cursor
111+
112+
- PERL-867 Resync GridFS tests to add test for legacy GridFS, where no
113+
filename was set
114+
115+
- PERL-976 Test only the initial command in a transaction includes readConcern
116+
117+
- PERL-996 Resync read write concern tests to add new read concern levels
118+
76119
- PERL-1018 Test deleteMany and updateMany with retryWrites=true
77120

78121
- PERL-1048 Transaction test runner should use "local" read concern
@@ -90,6 +133,12 @@ v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
90133

91134
[Documentation]
92135

136+
- PERL-780 Document that TCP keepalive defaults to true
137+
138+
- PERL-972 Amend transaction examples
139+
140+
- PERL-986 Causal Consistency Examples
141+
93142
- PERL-1056 Update Transactions Retry Example 3 to include read preference
94143

95144
- PERL-1085 Document connection string and URI option precedence rules
@@ -100,79 +149,27 @@ v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
100149

101150
- PERL-1117 Specify effect of client-side errors on in-progress transactions
102151

103-
[~ Internal Changes ~]
104-
105-
- PERL-1078 countDocuments should internally use group with _id: 1
106-
107-
v2.1.0 2019年02月06日 16:59:56-05:00 America/New_York (TRIAL RELEASE)
108-
109-
[*** Deprecations ***]
110-
111-
- PERL-993 Deprecate parallel_scan
112-
113-
[Additions]
114-
115-
- PERL-789 OP_MSG support
116-
117-
- PERL-920 Add option for applications to register a custom server selector
118-
119-
- PERL-1008 Support index all paths
120-
121-
- PERL-1046 Add database aggregation method
122-
123-
[Changes]
124-
125-
- PERL-785 Call "ping" on a socket that has been idle for socketCheckIntervalMS
126-
127-
[Bug fixes]
128-
129-
- PERL-927 Ensure hint used with aggregate is string or IxHash or BSON::Doc
130-
131-
- PERL-930 Allow use of BSON::Raw for insert, update, etc.
132-
133-
- PERL-970 Can't use BSON::Doc as sort option in find command
134-
135-
- PERL-988 Index lists should preserve key order in results
136-
137-
- PERL-994 GridFS DownloadStream warns in spec tests on old perls
138-
139-
- PERL-1012 Driver doesn't clear session pool after fork
140-
141-
- PERL-1033 Pod link error
142-
143-
- PERL-1041 Bulk Write Op calls result method on non-object error
144-
145-
- PERL-1061 The driver fails to parse a URI if mongodb+srv format is used and the ssl=true option is set
146-
147-
[Testing]
148-
149-
- PERL-806 Test Driver Wire Version Overlap logic
150-
151-
- PERL-833 Test QueryResult destructor kills cursor
152-
153-
- PERL-867 Resync GridFS tests to add test for legacy GridFS, where no filename was set
154-
155-
- PERL-976 Test only the initial command in a transaction includes readConcern
152+
[Prerequisites]
156153

157-
- PERL-996 Resync read write concern tests to add new read concern levels
154+
- PERL-841 Remove Try::Tiny as a dependency
158155

159-
[Documentation]
156+
- Bump BSON to v1.12.0 and BSON::XS (optional) to v0.8.0
160157

161-
- PERL-780 Document that TCP keepalive defaults to true
158+
- Bump Path::Tiny to 0.058
162159

163-
- PERL-972 Amend transaction examples
160+
[~ Internal Changes ~]
164161

165-
- PERL-986 Causal Consistency Examples
162+
- PERL-921 Only send bypassDocumentValidation if it's true
166163

167-
[Prerequisites]
164+
- PERL-935 Consolidate session vs retryable write feature detection
168165

169-
- PERL-841 Remove Try::Tiny as a dependency
166+
- PERL-1078 countDocuments should internally use group with _id: 1
170167

171-
[~ Internal changes ~]
168+
v2.1.2 2019年08月05日 19:29:08-04:00 America/New_York (TRIAL RELEASE)
172169

173-
- PERL-921 Only send bypassDocumentValidation if it's true
170+
v2.1.1 2019年08月02日 12:48:13-04:00 America/New_York (TRIAL RELEASE)
174171

175-
- PERL-935 Consolidate session vs retryable write feature detection
172+
v2.1.0 2019年02月06日 16:59:56-05:00 America/New_York (TRIAL RELEASE)
176173

177174
v2.0.3 2019年02月07日 10:43:16-05:00 America/New_York
178175

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /