Skip to content

Commit 8d4956c

Browse files
committed
refactor: rename DatabaseType.sql_server to mssql
Match the DataMasque server wire value ("mssql") and the sibling mssql_linked member; every other DataMasque repo uses mssql. Enum value unchanged. Patch bump to 1.0.5.
1 parent eb50797 commit 8d4956c

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
History
33
=======
44

5+
1.0.5 (2026-06-18)
6+
------------------
7+
8+
* Renamed the ``DatabaseType.sql_server`` member to ``DatabaseType.mssql`` to match the DataMasque server's wire value and the sibling ``mssql_linked`` member. The value is unchanged (``"mssql"``).
9+
510
1.0.4 (2026-06-09)
611
------------------
712

datamasque/client/models/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DatabaseType(Enum):
3636
mysql = "mysql"
3737
oracle = "oracle"
3838
mariadb = "mariadb"
39-
sql_server = "mssql"
39+
mssql = "mssql"
4040
redshift = "redshift"
4141
dynamodb = "dynamo_db"
4242
db2_luw = "db2_luw"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "datamasque-python"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
description = "Official Python client for the DataMasque data-masking API."
55
authors = [
66
{ name = "DataMasque Ltd" },

0 commit comments

Comments
 (0)