Add default project name and success message to default-scala template#4661
Merged
lennartkats-db merged 6 commits intomainfrom Mar 17, 2026
Merged
Add default project name and success message to default-scala template#4661lennartkats-db merged 6 commits intomainfrom
lennartkats-db merged 6 commits intomainfrom
Conversation
The default-scala template was missing a default value for `project_name` and a `success_message`, unlike all other built-in templates. Co-Authored-By: Claude Opus 4.6 <[email protected]>
Co-Authored-By: Claude Opus 4.6 <[email protected]>
Co-Authored-By: Claude Opus 4.6 <[email protected]>
Collaborator
|
Commit: a3f9c84
17 interesting tests: 9 SKIP, 7 KNOWN, 1 flaky
Top 28 slowest tests (at least 2 minutes):
|
pietern
approved these changes
Mar 5, 2026
Co-Authored-By: Claude Opus 4.6 <[email protected]>
simonfaltum
reviewed
Mar 12, 2026
Member
simonfaltum
left a comment
There was a problem hiding this comment.
Review (automated, 2 agents)
Verdict: Approve | 0 Critical | 0 Major | 1 Gap(Nit) | 1 Nit | 1 Suggestion
Clean, small PR. Consistent with other templates.
[Gap (Nit)] Acceptance test never exercises the default project_name behavior
acceptance/bundle/templates/default-scala/input.json hard-codes project_name, so the new "default": "my_scala_project" is never tested. Consider adding a test case that omits project_name.
[Nit] Inconsistent default project name convention
Most templates use sql_project, dbt_project (no my_ prefix). This PR uses my_scala_project. Consider scala_project for consistency with siblings.
[Suggestion] Verify output.txt was regenerated
Confirm output was generated by make test-update-templates rather than hand-crafted.
Collaborator
|
Commit: 9bed9cb
40 interesting tests: 16 RECOVERED, 11 flaky, 9 KNOWN, 3 FAIL, 1 SKIP
Top 50 slowest tests (at least 2 minutes):
|
deco-sdk-tagging bot
added a commit
that referenced
this pull request
Mar 18, 2026
## Release v0.295.0 ### Notable Changes * Databricks Asset Bundles have been renamed to Declarative Automation Bundles (DABs). This is a non-breaking change; no code or configuration modifications are required. See the [FAQ](https://docs.databricks.com/aws/en/dev-tools/bundles/faqs#why-was-databricks-asset-bundles-renamed-to-declarative-automation-bundles). * Add `bundle.engine` config setting to select the deployment engine (`terraform` or [`direct`](https://docs.databricks.com/aws/en/dev-tools/bundles/direct)). The `bundle.engine` setting takes precedence over the `DATABRICKS_BUNDLE_ENGINE` environment variable. When the configured engine doesn't match existing deployment state, a warning is issued and the existing engine is used ([#4749](#4749), [#4782](#4782)) ### CLI * Add `databricks auth switch` command for setting the default profile ([#4651](#4651)) * Add positional argument support to `auth logout` ([#4744](#4744)) * Strip trailing slash from host in `auth login`, `auth token`, and `configure` commands ([#4633](#4633)) ### Bundles * Standardize `personal_schemas` enum across bundle templates ([#4401](#4401)) * engine/direct: Fix permanent drift on experiment name field ([#4627](#4627)) * engine/direct: Fix permissions state path to match input config schema ([#4703](#4703)) * Add default project name and success message to default-scala template ([#4661](#4661)) * Skip enum validation for unresolved variable references ([#4752](#4752)) * engine/direct: Support references to/from grants ([#4774](#4774))
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
This adds makes the
project_nameand asuccess_messagefields consistent with other templates.