diff --git a/.github/workflows/check-autobuilder.yml b/.github/workflows/check-autobuilder.yml deleted file mode 100644 index 8495db96..00000000 --- a/.github/workflows/check-autobuilder.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Check Autobuilder for Errors - -on: - pull_request: - paths: - - "source/**" - -jobs: - check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: cbush/snooty-autobuilder-check@main diff --git a/source/fundamentals/connection/connection-options.txt b/source/fundamentals/connection/connection-options.txt index 4774a762..4c3d07be 100644 --- a/source/fundamentals/connection/connection-options.txt +++ b/source/fundamentals/connection/connection-options.txt @@ -409,6 +409,14 @@ relevant options. | **Default**: ``null`` | **Connection URI Example**: ``tlsDisableCertificateRevocationCheck=false`` + * - **TranslationOptions** + - | Specifies options, such as the {+mdb-server+} version, for translating LINQ + | queries to the Query API. + | + | **Data Type**: `ExpressionTranslationOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.ExpressionTranslationOptions.html>`__ + | **Default**: ``null`` + | **Connection URI Example**: {+not-available+} + * - **UseTls** - | Specifies whether to require TLS for connections to the server. If you use | a scheme of ``"mongodb+srv"`` or specify other TLS options, diff --git a/source/whats-new.txt b/source/whats-new.txt index c1562bb7..762d8f2c 100644 --- a/source/whats-new.txt +++ b/source/whats-new.txt @@ -49,6 +49,9 @@ The 3.0 driver release includes the following new features: `mongocsharpdriver `__ NuGet package, which implements the v1.x driver API in driver versions 2.x. This package will no longer receive updates. +- Adds the ``MongoClientSettings.TranslationOptions`` connection option, which specifies + options for translating LINQ queries to the Query API. See :ref:`csharp-connection-options` + for more information. .. _csharp-version-2.28: