From 12a26fa15ee4fc72af5b7637369ffd71751d440c Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 24 Jan 2026 20:49:48 -0300 Subject: [PATCH] v3.47.0 --- CHANGELOG.md | 2 +- internal/version/version.txt | 2 +- website/src/docs/changelog.md | 17 +++++++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de399286..033d1770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.47.0 - 2026-01-24 - Fixed remote git Taskfiles: cloning now works without explicit ref, and directory includes are properly resolved (#2602 by @vmaerten). diff --git a/internal/version/version.txt b/internal/version/version.txt index ee84adb0..5e895b24 100644 --- a/internal/version/version.txt +++ b/internal/version/version.txt @@ -1 +1 @@ -3.46.4 +3.47.0 diff --git a/website/src/docs/changelog.md b/website/src/docs/changelog.md index 39f66ff6..cef1d32d 100644 --- a/website/src/docs/changelog.md +++ b/website/src/docs/changelog.md @@ -7,6 +7,23 @@ outline: deep ::: v-pre +## v3.47.0 - 2026-01-24 + +- Fixed remote git Taskfiles: cloning now works without explicit ref, and + directory includes are properly resolved (#2602 by @vmaerten). +- For `output: prefixed`, print `prefix:` if set instead of task name (#1566, + #2633 by @trulede). +- Ensure no ANSI sequences are printed for `--color=false` (#2560, #2584 by + @trulede). +- Task aliases can now contain wildcards and will match accordingly (e.g., `s-*` + as alias for `start-*`) (#1900, #2234 by @vmaerten). +- Added conditional execution with the `if` field: skip tasks, commands, or task + calls based on shell exit codes or template expressions like + `{{ eq .ENV "prod" }}` (#2564, #608 by @vmaerten). +- Task can now interactively prompt for missing required variables when running + in a TTY, with support for enum selection menus. Enable with `--interactive` + flag or `interactive: true` in `.taskrc.yml` (#2579, #2079 by @vmaerten). + ## v3.46.4 - 2025-12-24 - Fixed regressions in completion script for Fish (#2591, #2604, #2592 by