From f4e85b071fc1820aca95f0ce20ba1a24c338657d Mon Sep 17 00:00:00 2001 From: AJ Emerich Date: Wed, 2 Sep 2026 11:14:01 +0200 Subject: [PATCH] docs: state connection properties per task instead of plugin defaults pluginDefaults was removed in the latest Kestra release, so the docs must no longer point users at it or at kestra.io/docs/workflow-components/plugin-defaults. Connection properties are now stated on each task. --- src/main/resources/doc/io.kestra.plugin.sqlmesh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/doc/io.kestra.plugin.sqlmesh.md b/src/main/resources/doc/io.kestra.plugin.sqlmesh.md index 224a4de..4fcd2b5 100644 --- a/src/main/resources/doc/io.kestra.plugin.sqlmesh.md +++ b/src/main/resources/doc/io.kestra.plugin.sqlmesh.md @@ -8,4 +8,4 @@ Run SQLMesh CLI commands — plan, apply, test, and audit transformations — fr ## Tasks -`cli.SQLMeshCLI` runs one or more SQLMesh CLI commands set in `commands` (e.g. `sqlmesh plan --auto-apply`, `sqlmesh run`, `sqlmesh test`). Use `beforeCommands` for setup steps. Pass database credentials and other secrets as environment variables via `env` — store sensitive values in [secrets](https://kestra.io/docs/concepts/secret). Pass supporting config files via `inputFiles` or pull them from [namespace files](https://kestra.io/docs/concepts/namespace-files). Apply runner properties globally with [plugin defaults](https://kestra.io/docs/workflow-components/plugin-defaults). +`cli.SQLMeshCLI` runs one or more SQLMesh CLI commands set in `commands` (e.g. `sqlmesh plan --auto-apply`, `sqlmesh run`, `sqlmesh test`). Use `beforeCommands` for setup steps. Pass database credentials and other secrets as environment variables via `env` — store sensitive values in [secrets](https://kestra.io/docs/concepts/secret). Pass supporting config files via `inputFiles` or pull them from [namespace files](https://kestra.io/docs/concepts/namespace-files). Set runner properties on each task.