You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Version changelog
2
2
3
+
## Release v1.1.0 (2026-05-27)
4
+
5
+
### Bundles
6
+
* The error reported when a direct-only resource (catalogs, external locations, vector search endpoints) is used with the terraform engine now also suggests setting `bundle.engine: direct` in `databricks.yml`, in addition to the `DATABRICKS_BUNDLE_ENGINE` environment variable ([#5295](https://github.com/databricks/cli/pull/5295)).
7
+
8
+
* Added `vector_search_indexes` as a bundle resource (direct engine only). Supports UC grants and prompts for confirmation on recreate or delete since both are destructive ([#5123](https://github.com/databricks/cli/pull/5123)).
9
+
10
+
### Dependency updates
11
+
12
+
* Bump Go toolchain to 1.26.3 ([#5302](https://github.com/databricks/cli/pull/5302)).
13
+
* Bump `github.com/databricks/databricks-sdk-go` from v0.132.0 to v0.136.0.
*`experimental open` now opens every DABs resource type that has a workspace URL, picking up `catalogs`, `schemas`, `volumes`, `database_instances`, `database_catalogs`, `synced_database_tables`, `postgres_catalogs`, `postgres_synced_tables`, `quality_monitors`, `vector_search_endpoints`, and `vector_search_indexes` ([#5346](https://github.com/databricks/cli/pull/5346)).
8
9
9
10
### Bundles
11
+
* Retry transient HTTP 504 Gateway Timeout errors in direct deployment engine ([#5349](https://github.com/databricks/cli/pull/5349)).
# gocritic is disabled because root's ruleguard rules path is cwd-relative
147
138
# and cannot be resolved from this nested module.
148
-
- TMPDIR="{{.TMPDIR}}" {{.GO_TOOL}} golangci-lint run --disable gocritic ./...
139
+
- "{{.GO_TOOL}} golangci-lint run --allow-parallel-runners -j=4 --disable gocritic ./..."
149
140
150
141
lint-q-go-root:
151
142
desc: Lint changed Go files in root module (diff vs main, with --fix). Does not check tools/ or bundle/internal/tf/codegen — use `lint` for full coverage.
152
-
vars:
153
-
TMPDIR: '{{.ROOT_DIR}}/.tmp/golangci-lint-root'
154
143
sources:
155
144
- "**/*.go"
156
145
- exclude: tools/**
@@ -162,9 +151,7 @@ tasks:
162
151
- "{{.EMBED_SOURCES}}"
163
152
- "**/testdata/**"
164
153
cmds:
165
-
- cmd: mkdir -p "{{.TMPDIR}}"
166
-
silent: true
167
-
- TMPDIR="{{.TMPDIR}}" ./tools/lintdiff.py {{.GO_TOOL}} golangci-lint run --fix
154
+
- "./tools/lintdiff.py {{.GO_TOOL}} golangci-lint run --allow-parallel-runners -j=4 --fix"
0 commit comments