direct: wildcard-match UC managed property backend defaults#5877
Merged
Conversation
radakam
force-pushed
the
wildcard-uc-managed-property-defaults
branch
from
July 9, 2026 10:58
4db5696 to
ad7c34f
Compare
radakam
marked this pull request as ready for review
July 9, 2026 11:02
Collaborator
Integration test reportCommit: bf06876
8 interesting tests: 4 SKIP, 3 flaky, 1 RECOVERED
Top 10 slowest tests (at least 2 minutes):
|
radakam
force-pushed
the
wildcard-uc-managed-property-defaults
branch
from
July 13, 2026 07:44
ad7c34f to
c68a120
Compare
Replace per-key backend_defaults entries for catalogs and schemas with a single unity.catalog.managed.*.defaults.* pattern so new Auto Upgrade keys are recognized without listing each one explicitly.
radakam
force-pushed
the
wildcard-uc-managed-property-defaults
branch
from
July 13, 2026 08:18
c68a120 to
2323bab
Compare
janniklasrose
approved these changes
Jul 13, 2026
janniklasrose
left a comment
Contributor
There was a problem hiding this comment.
some suggestions to keep the tests focused
Co-authored-by: Jan N Rose <janniklas.rose@gmail.com>
Co-authored-by: Jan N Rose <janniklas.rose@gmail.com>
Co-authored-by: Jan N Rose <janniklas.rose@gmail.com>
Collaborator
Integration test reportCommit: c9a8fb0
29 interesting tests: 13 flaky, 11 FAIL, 2 RECOVERED, 2 SKIP, 1 KNOWN
Top 50 slowest tests (at least 2 minutes):
|
deco-sdk-tagging Bot
added a commit
that referenced
this pull request
Jul 15, 2026
## Release v1.8.0 ### Notable Changes * Auto-migrate a bundle from terraform to the direct engine when `bundle.engine` is `"direct"` (or `DATABRICKS_BUNDLE_ENGINE=direct`) and the post-deploy dry-run migration is clean; a warning is emitted if the dry-run surfaces errors or warnings so the automatic migration is skipped. ### CLI * experimental `ssh connect`: bare `python`/`pip` in an interactive session now resolve to the environment interpreter (`$DATABRICKS_VIRTUAL_ENV`) instead of the system or cluster-libraries interpreter, so packages installed in the environment are importable without extra setup. The interactive shell is now non-login (`bash -i`) and the server seeds a `~/.bashrc` snippet that re-prepends the environment's bin directory to `PATH` ([#5888](#5888)). * When Claude Code runs the CLI without the Databricks AI tooling installed, the CLI now prints a one-line recommendation on stderr to run `databricks aitools install`. The recommendation is shown at most once per hour per Claude session, and never for human callers or `aitools` commands. * Fixed `databricks auth describe` misattributing a profile selected via `DATABRICKS_CONFIG_PROFILE` as `(from bundle)` when run inside a bundle root ([#5904](#5904)). ### Bundles * `bundle generate` now warns when the generated configuration file is not matched by any pattern in the `include` section of `databricks.yml` ([#5868](#5868)). * direct: Match UC Auto Upgrade managed property defaults with a wildcard pattern instead of enumerating each key ([#5877](#5877)). * Recognize `ssh://` template URLs in `databricks bundle init` ([#5891](#5891)). * `databricks bundle init` now reports an actionable error when given a template URL with an unsupported protocol (`http://`, `git://`, `ftp://`, `ftps://`) instead of failing with a confusing "not a bundle template" message ([#5902](#5902)). * Added an `env:` section to `scripts.<name>` for declaring environment variables that may reference `${bundle.*}`, `${workspace.*}`, and `${var.*}` ([#4179](#4179), [#5299](#5299)).
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.
Summary
Use a single wildcard backend-default rule for UC-managed catalog/schema properties:
properties['unity.catalog.managed.*.defaults.*']. This replaces per-key entries and covers current and future Auto Upgrade defaults without listing each property.Why
UC fills these keys after create. If we don't treat them as backend defaults, plans keep trying empty updates and UC rejects them.