Skip to content

Commit 8cda62e

Browse files
authored
breaking: Switching default for notebook upload flag (#1248)
### Description Switches the default for the flag for notebook upload path to True ### Checklist - [ ] I have run this code in development and it appears to resolve the stated issue - [ ] This PR includes tests, or tests are not required/relevant for this PR - [ ] I have updated the `CHANGELOG.md` and added information about my change to the "dbt-databricks next" section.
1 parent 870f9cb commit 8cda62e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
- **BREAKING:** Removing the 'use_info_schema_for_columns' behavior flag, as we have a better mechanism for getting complex type information - DESCRIBE EXTENDED ... AS JSON. This is a breaking change because it requires a modern DBR (or SQL Warehouse) in order to function ([1226](https://github.com/databricks/dbt-databricks/pull/1226))
4040
- Use atomic `CREATE OR REPLACE` instead of DROP + CREATE for managed Iceberg tables
4141
- Drop support for python 3.9, adds 3.13 ([1240](https://github.com/databricks/dbt-databricks/pull/1240))
42+
-- **BREAKING:** Flipping the default for USE_USER_FOLDER_FOR_PYTHON to true ([1248](https://github.com/databricks/dbt-databricks/pull/1248))
4243

4344
## dbt-databricks 1.10.14 (October 22, 2025)
4445

dbt/adapters/databricks/impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104

105105
USE_USER_FOLDER_FOR_PYTHON = BehaviorFlag(
106106
name="use_user_folder_for_python",
107-
default=False,
107+
default=True,
108108
description=(
109109
"Use the user's home folder for uploading python notebooks."
110110
" Shared folder use is deprecated due to governance concerns."

0 commit comments

Comments
 (0)