Skip to content

v1.9.1

Choose a tag to compare

@Benjamin-Knight Benjamin-Knight released this 19 May 13:27
· 48 commits to master since this release
86bbdc7

Headline

This release removes this adapters upstream dependency on the dbt-fabric adapter.

Important schema behavior note

dbt-sqlserver==1.9.0 inherited schema-generation behavior through dbt-fabric. In dbt-fabric>=1.9.3, the Fabric custom schema override was removed, so projects could effectively fall back to dbt-core’s standard schema behavior:

<target.schema>_<custom_schema_name>

Starting with dbt-sqlserver==1.9.1, the Fabric dependency has been removed. SQL Server now keeps its legacy schema behavior by default:

<custom_schema_name>

To opt in to dbt-core’s standard schema concatenation behavior, add:

vars:
  dbt_sqlserver_use_default_schema_concat: true

Projects with a custom generate_schema_name macro should review whether it still matches the intended behavior.

This release also includes development, CI, and packaging updates that should not impact normal users.

What's Changed

Full Changelog: v1.9.0...v1.9.1