diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ed279de..9027db82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.44.1 - 2025-07-23 - Internal tasks will no longer be shown as suggestions since they cannot be called (#2309, #2323 by @maxmzkrcensys) diff --git a/internal/version/version.txt b/internal/version/version.txt index faf0dcbb..01e4ec9b 100644 --- a/internal/version/version.txt +++ b/internal/version/version.txt @@ -1 +1 @@ -3.44.0 +3.44.1 diff --git a/package-lock.json b/package-lock.json index e1eae383..0e34bfe7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.44.0", + "version": "3.44.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 9529436e..474da5ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.44.0", + "version": "3.44.1", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install", diff --git a/website/docs/changelog.mdx b/website/docs/changelog.mdx index 36a1509a..3762f9b6 100644 --- a/website/docs/changelog.mdx +++ b/website/docs/changelog.mdx @@ -5,6 +5,17 @@ sidebar_position: 14 # Changelog +## v3.44.1 - 2025-07-23 + +- Internal tasks will no longer be shown as suggestions since they cannot be + called (#2309, #2323 by @maxmzkrcensys) +- Fixed install script for some ARM platforms (#1516, #2291 by @trulede). +- Fixed a regression where fingerprinting was not working correctly if the path + to you Taskfile contained a space (#2321, #2322 by @pd93). +- Reverted a breaking change to `randInt` (#2312, #2316 by @pd93). +- Made new variables `TEST_NAME` and `TEST_DIR` available in fixture tests + (#2265 by @pd93). + ## v3.44.0 - 2025-06-08 - Added `uuid`, `randInt` and `randIntN` template functions (#1346, #2225 by diff --git a/website/versioned_docs/version-latest/changelog.mdx b/website/versioned_docs/version-latest/changelog.mdx index 36a1509a..3762f9b6 100644 --- a/website/versioned_docs/version-latest/changelog.mdx +++ b/website/versioned_docs/version-latest/changelog.mdx @@ -5,6 +5,17 @@ sidebar_position: 14 # Changelog +## v3.44.1 - 2025-07-23 + +- Internal tasks will no longer be shown as suggestions since they cannot be + called (#2309, #2323 by @maxmzkrcensys) +- Fixed install script for some ARM platforms (#1516, #2291 by @trulede). +- Fixed a regression where fingerprinting was not working correctly if the path + to you Taskfile contained a space (#2321, #2322 by @pd93). +- Reverted a breaking change to `randInt` (#2312, #2316 by @pd93). +- Made new variables `TEST_NAME` and `TEST_DIR` available in fixture tests + (#2265 by @pd93). + ## v3.44.0 - 2025-06-08 - Added `uuid`, `randInt` and `randIntN` template functions (#1346, #2225 by diff --git a/website/versioned_docs/version-latest/installation.mdx b/website/versioned_docs/version-latest/installation.mdx index b216aa3d..59c96ed6 100644 --- a/website/versioned_docs/version-latest/installation.mdx +++ b/website/versioned_docs/version-latest/installation.mdx @@ -36,6 +36,14 @@ repository [[package](https://formulae.brew.sh/formula/go-task)] brew install go-task ``` +### [Macports][macports] ![][macos] ![][community] \{#macports} + +Task repository is tracked by Macports [[package](https://ports.macports.org/port/go-task/details/)] [[source](https://github.com/macports/macports-ports/blob/master/devel/go-task/Portfile)]: + +```shell +port install go-task +``` + ### [Snap][snapcraft] ![][macos] ![][linux] \{#snap} Task is available on [Snapcraft][snapcraft] [[source](https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml)], but keep in mind that your Linux @@ -104,6 +112,14 @@ pacman -S go-task dnf install go-task ``` +### FreeBSD ([Ports][freebsdports]) ![][freebsd] ![][community] \{#freebsd} + +[[package](https://cgit.freebsd.org/ports/tree/devel/task)] [[source](https://cgit.freebsd.org/ports/tree/devel/task/Makefile)] + +```shell +pkg install task +``` + ### NixOS ([nix][nix]) ![][nixos] ![][linux] ![][community] \{#nix} [[source](https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/go/go-task/package.nix)] @@ -304,6 +320,7 @@ task --completion fish > ~/.config/fish/completions/task.fish {/* prettier-ignore-start */} [homebrew]: https://brew.sh +[macports]: https://macports.org [snapcraft]: https://snapcraft.io/task [winget]: https://github.com/microsoft/winget-cli [choco]: https://chocolatey.org @@ -317,6 +334,7 @@ task --completion fish > ~/.config/fish/completions/task.fish [aqua]: https://aquaproj.github.io [pacstall]: https://github.com/pacstall/pacstall [pkgx]: https://pkgx.sh +[freebsdports]: https://ports.freebsd.org/cgi/ports.cgi [go]: https://golang.org [godownloader]: https://github.com/goreleaser/godownloader @@ -332,4 +350,5 @@ task --completion fish > ~/.config/fish/completions/task.fish [nixos]: https://img.shields.io/badge/NixOS-5277C3?logo=nixos&logoColor=fff [debian]: https://img.shields.io/badge/Debian-A81D33?logo=debian&logoColor=fff [ubuntu]: https://img.shields.io/badge/Ubuntu-E95420?logo=ubuntu&logoColor=fff +[freebsd]: https://img.shields.io/badge/FreeBSD-990000?logo=freebsd&logoColor=fff {/* prettier-ignore-end */} diff --git a/website/versioned_docs/version-latest/reference/templating.mdx b/website/versioned_docs/version-latest/reference/templating.mdx index 0cb714a7..5cd75c4f 100644 --- a/website/versioned_docs/version-latest/reference/templating.mdx +++ b/website/versioned_docs/version-latest/reference/templating.mdx @@ -400,7 +400,6 @@ Lastly, Task itself provides a few functions: | `fromYaml`\* | Decodes a YAML string into an object. | | `toYaml`\* | Encodes an object as a YAML string. | | `uuid` | Generates a new pseudo-random UUIDv4 string. | -| `randInt` | Generates a new pseudo-random, non-negative, 32bit integer. Generated numbers are not suitable for security-sensitive work. | | `randIntN` | Generates a new pseudo-random, non-negative, 32bit integer in the half-open interval `[0,n)`. Generated numbers are not suitable for security-sensitive work. | {/* prettier-ignore-start */}