[Breaking Change] Remove deprecated path fallback mechanism for jobs and pipelines#3225
Merged
andrewnester merged 10 commits intomainfrom Aug 25, 2025
Merged
[Breaking Change] Remove deprecated path fallback mechanism for jobs and pipelines#3225andrewnester merged 10 commits intomainfrom
andrewnester merged 10 commits intomainfrom
Conversation
Collaborator
|
Contributor
shreyas-goenka
left a comment
There was a problem hiding this comment.
This needs an entry in NEXT_CHANGELOG
0db4578 to
3461407
Compare
shreyas-goenka
approved these changes
Jul 25, 2025
NEXT_CHANGELOG.md
Outdated
| ### CLI | ||
|
|
||
| ### Bundles | ||
| * [Breaking Change] Convert warning about using fallback paths to error ([#3225](https://github.com/databricks/cli/pull/3225)) |
Contributor
There was a problem hiding this comment.
Should we combine the two changelog entries into one? Someone without context might assume that there were two breaking changes.
Contributor
Author
There was a problem hiding this comment.
I don't mind both but I prefer to keep PRs links with titles like we normally do but call out what's notable additionally
4581d2b to
ce5a4ca
Compare
denik
approved these changes
Aug 25, 2025
pietern
reviewed
Aug 27, 2025
| pipeline definition location instead of the configuration file location. Previously, the CLI would show a | ||
| warning and fallback to resolving the path relative to the resource location. Users must update their bundle | ||
| configurations to define all relative paths relative to the configuration file where the path is specified. | ||
| See more details here: ([#3225](https://github.com/databricks/cli/pull/3225)) |
Contributor
There was a problem hiding this comment.
This sounds scary, but it only affects users with a configuration that already displays warnings. It removes behavior that was already considered deprecated. Is it possible to make it sound less scary?
deco-sdk-tagging bot
added a commit
that referenced
this pull request
Aug 27, 2025
## Release v0.266.0 ### Notable Changes * Breaking change: DABs now return an error when paths are incorrectly defined relative to the job or pipeline definition location instead of the configuration file location. Previously, the CLI would show a warning and fallback to resolving the path relative to the resource location. Users must update their bundle configurations to define all relative paths relative to the configuration file where the path is specified. See more details here: ([#3225](#3225)) * Add support volumes in Python support ([#3383])(#3383)) ### Bundles * [Breaking Change] Remove deprecated path fallback mechanism for jobs and pipelines ([#3225](#3225)) * Add support for Lakebase synced database tables in DABs ([#3467](#3467)) * Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-python template ([#3476](#3476)). * Fixed bundle init not working on Standard tier ([#3496](#3496))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Removed deprecated path fallback mechanism for jobs and pipelines
Effectively, it removes an old deprecated behaviour and only relies on the new one introduced here #1273
What's changing?
Assuming there are the following 2 bundle configuration files in your bundle
./resources/my_job.yml- this is where the job is defined./override.yml- this is where the notebook path of the job task is overriddenBefore this change, on
bundle validate / deploythe notebook_path for notebook_example would resolve to./src/notebook.pyrelative to the bundle root because the relative path was relative to where the job is defined (/resources/my_job.yml)After this change, the notebook_path for notebook_example would resolve to
../src/notebook.pyrelative to the bundle root because now the path is calculated relative to where it's defined (./override.yml)Action items
If you are affected by this change, you can do one of the following:
Tests
Covered by existing acceptance tests