Additional SQL Server features and topics not covered by specific categories
you are thinking of the support wrong. the driver protocol is very stable, so a driver works with database versions that are released after the driver. as long as the driver is still supported (end of life) it will work with current database engines.
but new database engines add features (security, datatype, etc). an older driver may not fully support a new feature.
in your case the 12.4 & 12.10 drivers have support for several more years. but they are older and missing the following current features:
- JSON datatype (will see as varchar(max) or nvarchar(max)) (SqlServer 2025+)
- Vector datatype for AI. (will see varchar(max)) (SqlServer 2025+)
https://learn.microsoft.com/en-us/sql/connect/driver-feature-matrix?view=sql-server-ver17#table2
so it depends on if your code needs a feature. you probably don't need the JSON and Vector datatype native support.