From ea67c5040dd567385fa02f429272bf6e64b0ac36 Mon Sep 17 00:00:00 2001 From: Jan Rose Date: Fri, 10 Jul 2026 19:09:55 +0200 Subject: [PATCH] Cut over: remove NEXT_CHANGELOG.md The .nextchanges/ system fully drives the release now (release_tagging.py renders CHANGELOG.md straight from fragments), so NEXT_CHANGELOG.md is no longer read by anything. Remove it, migrating its one pending v1.8.0 entry to a .nextchanges/ fragment (verified it renders identically). Repoint a stale NEXT_CHANGELOG.md reference in an acceptance test comment at CHANGELOG.md. Co-authored-by: Isaac --- .../cli/5888-ssh-connect-env-interpreter.md | 1 + NEXT_CHANGELOG.md | 15 --------------- .../resource_deps/volume_path_job_ref/test.toml | 2 +- 3 files changed, 2 insertions(+), 16 deletions(-) create mode 100644 .nextchanges/cli/5888-ssh-connect-env-interpreter.md delete mode 100644 NEXT_CHANGELOG.md diff --git a/.nextchanges/cli/5888-ssh-connect-env-interpreter.md b/.nextchanges/cli/5888-ssh-connect-env-interpreter.md new file mode 100644 index 00000000000..b33835ae675 --- /dev/null +++ b/.nextchanges/cli/5888-ssh-connect-env-interpreter.md @@ -0,0 +1 @@ +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](https://github.com/databricks/cli/pull/5888)). diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md deleted file mode 100644 index ea05bf2b811..00000000000 --- a/NEXT_CHANGELOG.md +++ /dev/null @@ -1,15 +0,0 @@ -# NEXT CHANGELOG - -## Release v1.8.0 - -### Notable Changes - -### 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](https://github.com/databricks/cli/pull/5888)). - -### Bundles - -### Dependency updates - -### API Changes diff --git a/acceptance/bundle/resource_deps/volume_path_job_ref/test.toml b/acceptance/bundle/resource_deps/volume_path_job_ref/test.toml index 77681b7380c..b53e5e7fbe8 100644 --- a/acceptance/bundle/resource_deps/volume_path_job_ref/test.toml +++ b/acceptance/bundle/resource_deps/volume_path_job_ref/test.toml @@ -3,6 +3,6 @@ RecordRequests = true # Direct-engine only: this scenario embeds a reference to a remote field # (jobs.foo.creator_user_name, known only after deploy) into volume_path. The # direct engine resolves it at deploy; Terraform cannot export that attribute, -# so the case is unsupported there (see NEXT_CHANGELOG.md). Direct is the +# so the case is unsupported there (see CHANGELOG.md). Direct is the # default engine, so the motivating use case works out of the box. EnvMatrix.DATABRICKS_BUNDLE_ENGINE = ["direct"]