Update dependency MongoDB.Driver to 2.19.0 [SECURITY] #29
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.10.3→2.19.0GitHub Vulnerability Alerts
CVE-2022-48282
Under very specific circumstances, a privileged user is able to cause arbitrary code to be executed which may cause further disruption to services. This is specific to applications written in C#. This affects all MongoDB .NET/C# Driver versions prior to and including v2.18.0
Release Notes
mongodb/mongo-csharp-driver (MongoDB.Driver)
v2.19.0: NET Driver Version 2.19.0 Release Notes.NET Driver Version 2.19.0 Release Notes
This is the general availability release for the 2.19.0 version of the driver.
The main new features in 2.19.0 include:
This version addresses CVE-2022-48282.
ObjectSerializer allowed types configuration
The
ObjectSerializerhas been changed to only allow deserialization of types that are considered safe.What types are considered safe is determined by a new configurable
AllowedTypesfunction (of typeFunc<Type, bool>).The default
AllowedTypesfunction isObjectSerializer.DefaultAllowedTypeswhich returns true for a number of well-known framework types that we have deemed safe.A typical example might be to allow all the default allowed types as well as your own types. This could be accomplished as follows:
More information about the
ObjectSerializeris available in our FAQ.Default LinqProvider changed to LINQ3
Default LinqProvider has been changed to LINQ3.
LinqProvider can be changed back to LINQ2 in the following way:
If you encounter a bug in LINQ3 provider, please report it in CSHARP JIRA project.
An online version of these release notes is available here.
The full list of issues resolved in this release is available at CSHARP JIRA project.
Documentation on the .NET driver can be found here.
v2.18.0: .NET Driver Version 2.18.0 Release Notes.NET Driver Version 2.18.0 Release Notes
This is the general availability release for the 2.18.0 version of the driver.
The main new features in 2.18.0 include:
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.18.0.md
The full list of JIRA issues resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.18.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
https://mongodb.github.io/mongo-csharp-driver/
v2.17.1: .NET Driver Version 2.17.1 Release Notes.NET Driver Version 2.17.1 Release Notes
This is a patch release that fixes a potential data corruption bug in
RewrapManyDataKeywhen rotating encrypted data encryption keys backed by GCP or Azure key services.The following conditions will trigger this bug:
The result of this bug is that the key material for all data encryption keys being rewrapped is replaced by new randomly generated material, destroying the original key material.
To mitigate potential data corruption, upgrade to this version or higher before using
RewrapManyDataKeyto rotate Azure-backed or GCP-backed data encryption keys. A backup of the key vault collection should always be taken before key rotation.An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.17.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.17.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.17.0: .NET Driver Version 2.17.0 Release Notes.NET Driver Version 2.17.0 Release Notes
This is the general availability release for the 2.17.0 version of the driver.
The main new features in 2.17.0 include:
IMongoQueryable.AppendStage()method (LINQ3)$topNand related accumulators in$groupaggregation stageEstimatedDocumentCount and Stable API
EstimatedDocumentCountis implemented using thecountserver command. Due to an oversight in versions5.0.0-5.0.8 of MongoDB, the
countcommand, whichEstimatedDocumentCountuses in its implementation,was not included in v1 of the Stable API. If you are using the Stable API with
EstimatedDocumentCount,you must upgrade to server version 5.0.9+ or set
strict: falsewhen configuringServerApito avoidencountering errors.
For more information about the Stable API see:
https://mongodb.github.io/mongo-csharp-driver/2.16/reference/driver/stable_api/
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.17.0.md
The full list of JIRA issues resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.17.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
https://mongodb.github.io/mongo-csharp-driver/
v2.16.1: .NET Driver Version 2.16.1 Release Notes.NET Driver Version 2.16.1 Release Notes
This is a patch release that addresses some issues reported since 2.16.0 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.16.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.16.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.16.0: .NET Driver Version 2.16.0 Release NotesThis is the general availability release for the 2.16.0 version of the driver.
The main new features in 2.16.0 include:
EstimatedDocumentCount and Stable API
EstimatedDocumentCount is implemented using the count server command. Due to an oversight in versions 5.0.0-5.0.8 of MongoDB, the count command, which EstimatedDocumentCount uses in its implementation, was not included in v1 of the Stable API. If you are using the Stable API with EstimatedDocumentCount, you must upgrade to server version 5.0.9+ or set strict: false when configuring ServerApi to avoid encountering errors.
For more information about the Stable API see:
https://mongodb.github.io/mongo-csharp-driver/2.16/reference/driver/stable_api/
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.16.0.md
The full list of JIRA issues resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.16.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
https://mongodb.github.io/mongo-csharp-driver/
v2.15.1: .NET Driver Version 2.15.1 Release NotesThis is a patch release that addresses some issues reported since 2.15.0 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.15.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.15.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.15.0: .NET Driver Version 2.15.0 Release NotesThis is the general availability release for the 2.15.0 version of the driver.
The main new features in 2.15.0 include:
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.15.0.md
The full list of JIRA issues resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.15.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
https://mongodb.github.io/mongo-csharp-driver/
v2.14.1: .NET Driver Version 2.14.1 Release Notes.NET Driver Version 2.14.1 Release Notes
This is a patch release that addresses some issues reported since 2.14.0 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.14.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.14.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.14.0: .NET Driver Version 2.14.0 Release Notes.NET Driver Version 2.14.0 Release Notes
This is the general availability release for the 2.14.0 version of the driver.
The main new features in 2.14.0 include:
srvMaxHostsURI option to limit the number ofmongosnodes used in connecting to sharded clustersAn online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.14.0.md
The full list of JIRA issues resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.14.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
v2.13.3: .NET Driver Version 2.13.3 Release Notes.NET Driver Version 2.13.3 Release Notes
This is a patch release that addresses some issues reported since 2.13.2 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.13.3.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.13.3%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.13.2: .NET Driver Version 2.13.2 Release Notes.NET Driver Version 2.13.2 Release Notes
This is a patch release that addresses some issues reported since 2.13.1 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.13.2.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.13.2%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.13.1: .NET Driver Version 2.13.1 Release Notes.NET Driver Version 2.13.1 Release Notes
This is a patch release that addresses some issues reported since 2.13.0 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.13.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.13.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.13.0: .NET Driver Version 2.13.0 Release Notes.NET Driver Version 2.13.0 Release Notes
This is the general availability release for the 2.13.0 version of the driver.
The main new features in 2.13.0 include:
estimatedDocumentCount()now uses the$collStatsaggregation stage instead of thecountcommandslaveOkconnection string option removed; usereadPreferenceinsteadAn online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.13.0.md
The full list of JIRA issues that are resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.13.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
https://docs.mongodb.com/drivers/csharp/
v2.12.5: .NET Driver Version 2.12.5 Release Notes.NET Driver Version 2.12.5 Release Notes
This is a patch release that addresses some issues reported since 2.12.4 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.12.5.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.12.5%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.12.4: .NET Driver Version 2.12.4 Release Notes.NET Driver Version 2.12.4 Release Notes
This is a patch release that addresses some issues reported since 2.12.3 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.12.4.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.12.4%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.12.3: .NET Driver Version 2.12.3 Release Notes.NET Driver Version 2.12.3 Release Notes
This is a patch release that addresses some issues reported since 2.12.2 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.12.3.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.12.3%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.12.2: .NET Driver Version 2.12.2 Release Notes.NET Driver Version 2.12.2 Release Notes
This is a patch release that addresses some issues reported since 2.12.1 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.12.2.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.12.2%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.12.1: .NET Driver Version 2.12.1 Release Notes.NET Driver Version 2.12.1 Release Notes
This is a patch release that addresses some issues reported since 2.12.0 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.12.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.12.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.12.0: .NET Driver Version 2.12.0 Release Notes.NET Driver Version 2.12.0 Release Notes
This is the general availability release for the 2.12.0 version of the driver.
The main new features in 2.12.0 include:
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.12.0.md
The full list of JIRA issues that are resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.12.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
https://docs.mongodb.com/drivers/csharp/
v2.11.6: .NET Driver Version 2.11.6 Release Notes.NET Driver Version 2.11.6 Release Notes
This is a patch release that addresses some issues reported since 2.11.5 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.6.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.6%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.11.5: .NET Driver Version 2.11.5 Release Notes.NET Driver Version 2.11.5 Release Notes
This is a patch release that addresses some issues reported since 2.11.4 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.5.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.5%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.11.4: .NET Driver Version 2.11.4 Release Notes.NET Driver Version 2.11.4 Release Notes
This is a patch release that addresses some issues reported since 2.11.3 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.4.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.4%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
v2.11.3.NET Driver Version 2.11.3 Release Notes
This is a patch release that addresses an issue reported since 2.11.2 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.3.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.3%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
Since the only change in this patch release is CSHARP-3218 and that issue is specific to Xamarin you only need
to upgrade from 2.11.2 to 2.11.3 if you are using the driver on Xamarin.
There are no known backwards breaking changes in this release.
v2.11.2.NET Driver Version 2.11.2 Release Notes
This is a patch release that fixes a bug reported since 2.11.1 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.2.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.2%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
Everyone using versions 2.11.0 or 2.11.1 of the C# driver with version 4.4.0 or later of the server should upgrade to 2.11.2.
The issue fixed is related to simultaneous authentication of two or more connections, in which case a change introduced
in 2.11.0 can result in authentication failing. Under loads low enough that only one connection is ever opened at the same
time the issue does not happen.
See: https://jira.mongodb.org/browse/CSHARP-3196
There are no known backwards breaking changes in this release.
v2.11.1: .NET Driver Version 2.11.1 Release Notes.NET Driver Version 2.11.1 Release Notes
This is a patch release that fixes a couple of bugs reported since 2.11.0 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.1.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.1%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
If you are writing a WinForms application you will want to upgrade to this version of the driver (see CSHARP-3182).
There are no known backwards breaking changes in this release.
v2.11.0: .NET Driver Version 2.11.0 Release Notes.NET Driver Version 2.11.0 Release Notes
The main new features in 2.11.0 support new features in MongoDB 4.4.0. These features include:
$metaprojections:randVal,searchScore,searchHighlights,geoNearDistance,geoNearPoint,recordId,indexKeyandsortKeyfindAndModifyupdate and replace operationsallowDiskUseon find operationsMONGODB-AWSauthentication using Amazon Web Services(AWS) Identity and Access Management (IAM) credentials
CommitQuorumoption increateIndexesOther new additions and updates in this release include:
to existing support on .NET Framework)
tlsDisableCertificateRevocationCheckto disablecertificate revocation checking.
ExceededTimeLimit,LockTimeoutandClientDisconnectAuthorizedDatabasesoption inListDatabasesAsQueryableAn online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.11.0.md
The full list of JIRA issues resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.11.0%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
v2.10.4: .NET Driver Version 2.10.4 Release Notes.NET Driver Version 2.10.4 Release Notes
This is a patch release that fixes a couple of bugs reported since 2.10.3 was released.
An online version of these release notes is available at:
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.10.4.md
The list of JIRA tickets resolved in this release is available at:
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.10.4%20ORDER%20BY%20key%20ASC
Documentation on the .NET driver can be found at:
http://mongodb.github.io/mongo-csharp-driver/
Upgrading
There are no known backwards breaking changes in this release.
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.