From fd6c11259436af9ee530e68d1b247f01e6e0b75e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D1=80=D1=82=D1=8B=D0=BD=D0=BE=D0=B2=20=D0=9C?= =?UTF-8?q?=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=A1=D0=B5=D1=80=D0=B3=D0=B5?= =?UTF-8?q?=D0=B5=D0=B2=D0=B8=D1=87?= Date: Tue, 28 May 2024 07:22:45 +0000 Subject: [PATCH] [DOP-16270] Fix CHANGELOG --- docs/changelog/0.11.1.rst | 2 +- onetl/connection/db_connection/mssql/connection.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/changelog/0.11.1.rst b/docs/changelog/0.11.1.rst index 3f0fd92e..92b936d2 100644 --- a/docs/changelog/0.11.1.rst +++ b/docs/changelog/0.11.1.rst @@ -1,4 +1,4 @@ -0.11.1 (2024-05-27) +0.11.1 (2024-05-28) =================== Features diff --git a/onetl/connection/db_connection/mssql/connection.py b/onetl/connection/db_connection/mssql/connection.py index 94510353..556cb4cb 100644 --- a/onetl/connection/db_connection/mssql/connection.py +++ b/onetl/connection/db_connection/mssql/connection.py @@ -47,9 +47,13 @@ class MSSQL(JDBCConnection): host : str Host of MSSQL database. For example: ``test.mssql.domain.com`` or ``192.168.1.14`` - port : int, default: ``1433`` + port : int, default: ``None`` Port of MSSQL database + .. versionchanged:: 0.11.1 + Default value was changed from ``1433`` to ``None``, + to allow automatic port discovery with ``instanceName``. + user : str User, which have proper access to the database. For example: ``some_user``