dependabot[bot] opened a new pull request, #26111:
URL: https://github.com/apache/beam/pull/26111

   Bumps 
[go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) from 
1.11.2 to 1.11.4.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/mongodb/mongo-go-driver/releases";>go.mongodb.org/mongo-driver's
 releases</a>.</em></p>
   <blockquote>
   <h2>MongoDB Go Driver 1.11.4</h2>
   <p>The MongoDB Go Driver Team is pleased to release version 1.11.4 of the 
official Go driver.</p>
   <h2>Release Notes</h2>
   <p>This release includes optimizations to reduce memory consumption in 
reading compressed wire messages. The release also offers codec support for 
decoding struct container fields as either map or document types, rather than 
an ancestor type.</p>
   <p>Additionally, the mongo package will support a closed approach for 
checking transaction error labels. For example:</p>
   <pre lang="go"><code>err = client.Ping(ctx, nil)
   <p>var le mongo.LabeledError
   if errors.As(err, &amp;le) &amp;&amp; 
le.HasErrorLabel(&quot;TransientTransactionError&quot;) {
   log.Fatalf(&quot;transient transaction error: %v&quot;, le)
   }
   </code></pre></p>
   <hr />
   <p>For a full list of tickets included in this release, please see the links 
below:</p>
   <ul>
   <li>
   <p><a 
href="https://jira.mongodb.org/issues/?jql=project%3Dgodriver%20and%20type%3Dimprovement%20and%20status%20%3D%20Closed%20and%20fixVersion%3D1.11.4";>Improvements</a></p>
   </li>
   <li>
   <p><a 
href="https://jira.mongodb.org/issues/?jql=project%3DGODRIVER%20and%20type%3DBug%20and%20status%3Dclosed%20and%20fixVersion%3D1.11.4";>Bugs</a></p>
   </li>
   </ul>
   <p>Documentation for the Go driver can be found on <a 
href="https://pkg.go.dev/go.mongodb.org/mongo-driver/mongo?tab=doc";>pkg.go.dev</a>
 and the <a href="https://docs.mongodb.com/ecosystem/drivers/go/";>MongoDB 
documentation site</a>. BSON library documentation is also available on <a 
href="https://pkg.go.dev/go.mongodb.org/mongo-driver/bson?tab=doc";>pkg.go.dev</a>.
 Questions and inquiries can be asked on the <a 
href="https://community.mongodb.com/";>MongoDB Developer Community</a>. Bugs can 
be reported in the <a 
href="https://jira.mongodb.org/secure/CreateIssue!default.jspa?pid=14289";>Go 
Driver project in the MongoDB JIRA</a> where a list of <a 
href="https://jira.mongodb.org/browse/GODRIVER";>current issues</a> can be 
found. Your feedback on the Go driver is greatly appreciated!</p>
   <h2>MongoDB Go Driver 1.11.3</h2>
   <p>The MongoDB Go Driver Team is pleased to release version 1.11.3 of the 
official Go driver.</p>
   <h2>Release Notes</h2>
   <p>This release reduces memory usage under some query workloads and fixes a 
bug that can cause undefined behavior when reading the <code>Raw</code> field 
on database error types, including <code>CommandError</code> and 
<code>WriteException</code>.</p>
   <hr />
   <p>For a full list of tickets included in this release, please see the links 
below:</p>
   <ul>
   <li>
   <p><a 
href="https://jira.mongodb.org/issues/?jql=project%3DGODRIVER%20and%20type%3DBug%20and%20status%3Dclosed%20and%20fixVersion%3D1.11.3";>Bugs</a></p>
   </li>
   <li>
   <p><a 
href="https://jira.mongodb.org/issues/?jql=project%3Dgodriver%20and%20type%3D%22task%22%20and%20status%20%3D%20Closed%20and%20fixVersion%3D1.11.3";>Tasks</a></p>
   </li>
   </ul>
   <p>Documentation for the Go driver can be found on <a 
href="https://pkg.go.dev/go.mongodb.org/mongo-driver/mongo?tab=doc";>pkg.go.dev</a>
 and the <a href="https://docs.mongodb.com/ecosystem/drivers/go/";>MongoDB 
documentation site</a>. BSON library documentation is also available on <a 
href="https://pkg.go.dev/go.mongodb.org/mongo-driver/bson?tab=doc";>pkg.go.dev</a>.
 Questions and inquiries can be asked on the <a 
href="https://community.mongodb.com/";>MongoDB Developer Community</a>. Bugs can 
be reported in the <a 
href="https://jira.mongodb.org/secure/CreateIssue!default.jspa?pid=14289";>Go 
Driver project in the MongoDB JIRA</a> where a list of <a 
href="https://jira.mongodb.org/browse/GODRIVER";>current issues</a> can be 
found. Your feedback on the Go driver is greatly appreciated!</p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/92227024410686eb2faf11332f3d01d832ed1d4d";><code>9222702</code></a>
 update version to v1.11.4</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/b1161f45392f251eb4057fcc3fe4ba1326cbbb94";><code>b1161f4</code></a>
 GODRIVER-2761 Skip QE tests against latest servers (<a 
href="https://redirect.github.com/mongodb/mongo-go-driver/issues/1221";>#1221</a>)</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/a46ad91b824ec2a8203c1f2c50ee289cfe919773";><code>a46ad91</code></a>
 GODRIVER-2657 Restrict getNonce spec tests to &lt; 6.2. (<a 
href="https://redirect.github.com/mongodb/mongo-go-driver/issues/1147";>#1147</a>)</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/0351e7faf70f94078fde218e5262dfcccbeaa9c8";><code>0351e7f</code></a>
 GODRIVER-2672 Return ServerError with &quot;TransientTransactionError&quot; 
label for s...</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/6119f96cc9d361264b82f549019046af7ad9980b";><code>6119f96</code></a>
 GODRIVER-2766 support inherited defaultDocumentType (<a 
href="https://redirect.github.com/mongodb/mongo-go-driver/issues/1202";>#1202</a>)</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/b6bdeda3564d13b052679cecac8e4c3cf372d472";><code>b6bdeda</code></a>
 GODRIVER-2778 Reduce memory usage on compressed loads. (<a 
href="https://redirect.github.com/mongodb/mongo-go-driver/issues/1200";>#1200</a>)</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/169f33795f2a29b76dae2aecce728f3d0d84ce21";><code>169f337</code></a>
 Update version to v1.11.4-prerelease</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/20a7983746710f97263c0b93bb80155c542fcc7b";><code>20a7983</code></a>
 Update version to v1.11.3</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/a38beeaf3bfa35c3533808c3dc584b800d593f6f";><code>a38beea</code></a>
 GODRIVER-2773 Retract v1.11.0 through v1.11.2. (<a 
href="https://redirect.github.com/mongodb/mongo-go-driver/issues/1203";>#1203</a>)</li>
   <li><a 
href="https://github.com/mongodb/mongo-go-driver/commit/53b68156c6e2369e40af4c70aa1ea3b2c4664c3d";><code>53b6815</code></a>
 GODRIVER-2730 Remove blocking channel in update recovering. (<a 
href="https://redirect.github.com/mongodb/mongo-go-driver/issues/1196";>#1196</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/mongodb/mongo-go-driver/compare/v1.11.2...v1.11.4";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go.mongodb.org/mongo-driver&package-manager=go_modules&previous-version=1.11.2&new-version=1.11.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to