diff --git a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md index 03611082..a49bba78 100644 --- a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md @@ -68,6 +68,11 @@ A full list of the exit codes and their descriptions can be found below: | 100 | No Taskfile was found | | 101 | A Taskfile already exists when trying to initialize one | | 102 | The Taskfile is invalid or cannot be parsed | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | | 200 | The specified task could not be found | | 201 | An error occurred while executing a command inside of a task | | 202 | The user tried to invoke a task that is internal | diff --git a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md index ff9bd20c..6c0a55b5 100644 --- a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # Changelog +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md index 71bc8ceb..5b4d48eb 100644 --- a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ If you're on macOS or Linux and have [Homebrew][homebrew] installed, getting Tas brew install go-task/tap/go-task ``` -The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb). +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). Recently, Task was also made available [on the official Homebrew repository](https://formulae.brew.sh/formula/go-task), so you also have that option if you prefer: diff --git a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md index 4953713d..3e0d75d7 100644 --- a/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md @@ -43,8 +43,8 @@ Nix is a community owned installation method. Nix package maintainers usually ta [goreleaser]: https://goreleaser.com/ [homebrewtap]: https://github.com/go-task/homebrew-tap -[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 [snappackage]: https://github.com/go-task/snap -[snapcraftyaml]: https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md index cb53f9c2..23e78f57 100644 --- a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md @@ -68,6 +68,11 @@ A full list of the exit codes and their descriptions can be found below: | 100 | No Taskfile was found | | 101 | A Taskfile already exists when trying to initialize one | | 102 | The Taskfile is invalid or cannot be parsed | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | | 200 | The specified task could not be found | | 201 | An error occurred while executing a command inside of a task | | 202 | The user tried to invoke a task that is internal | diff --git a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md index ff9bd20c..6c0a55b5 100644 --- a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # Changelog +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md index 71bc8ceb..5b4d48eb 100644 --- a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ If you're on macOS or Linux and have [Homebrew][homebrew] installed, getting Tas brew install go-task/tap/go-task ``` -The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb). +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). Recently, Task was also made available [on the official Homebrew repository](https://formulae.brew.sh/formula/go-task), so you also have that option if you prefer: diff --git a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md index 4953713d..3e0d75d7 100644 --- a/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md @@ -43,8 +43,8 @@ Nix is a community owned installation method. Nix package maintainers usually ta [goreleaser]: https://goreleaser.com/ [homebrewtap]: https://github.com/go-task/homebrew-tap -[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 [snappackage]: https://github.com/go-task/snap -[snapcraftyaml]: https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md index c699cf10..048dfcf2 100644 --- a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md @@ -68,6 +68,11 @@ A full list of the exit codes and their descriptions can be found below: | 100 | No Taskfile was found | | 101 | A Taskfile already exists when trying to initialize one | | 102 | The Taskfile is invalid or cannot be parsed | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | | 200 | The specified task could not be found | | 201 | An error occurred while executing a command inside of a task | | 202 | The user tried to invoke a task that is internal | diff --git a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md index ff9bd20c..6c0a55b5 100644 --- a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # Changelog +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md index 3f130f5b..221fbf8d 100644 --- a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ macOSやLinuxを使っていて、[Homebrew][homebrew]をインストールし brew install go-task/tap/go-task ``` -上記のFormulaは[私たちが管理しています](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb)。 +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). 最近、Taskは[公式のHomebrewリポジトリ](https://formulae.brew.sh/formula/go-task)でも利用可能になったので、以下の方法でもインストールできます: diff --git a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md index 2d4279be..7ee31b8b 100644 --- a/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md @@ -13,7 +13,7 @@ v3.15.0以降、特定のタグをチェックアウトし、上記のGitHub Act # Homebrew -Goreleaserは新しいバージョンをリリースするために、[Homebrew tap][homebrewtap]リポジトリの[Formula/go-task.rb][gotaskrb]に新しいコミットを自動的にプッシュします。 +Goreleaser will automatically push a new commit to the [Formula/go-task.rb][gotaskrb] file in the [Homebrew tap][homebrewtap] repository to release the new version. # npm @@ -23,7 +23,7 @@ npmにリリースするには、[`package.json`][packagejson]でバージョン [snapパッケージ][snappackage]をリリースするには、マニュアルのステップが必要です: -- [snapcraft.yaml][snapcraftyaml]で現在のバージョンを更新する。 +- Updating the current version on [snapcraft.yaml][snapcraftyaml]. - [Snapcraftダッシュボード][snapcraftdashboard]で、`amd64`、`armhf`、`arm64`の新しい成果物を全てstableチャンネルに移動させる。 # winget @@ -43,8 +43,8 @@ Nixはコミュニティが所有するインストール方法です。 Nixパ [goreleaser]: https://goreleaser.com/ [homebrewtap]: https://github.com/go-task/homebrew-tap -[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 [snappackage]: https://github.com/go-task/snap -[snapcraftyaml]: https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md index 7e6eb98d..faed4272 100644 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md @@ -68,6 +68,11 @@ Uma lista completa dos códigos de saída e suas descrições podem ser encontra | 100 | Nenhum Arquivo foi encontrado | | 101 | Um arquivo Taskfile já existe ao tentar inicializar um | | 102 | O arquivo Taskfile é inválido ou não pode ser analisado | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | | 200 | A tarefa especificada não pôde ser encontrada | | 201 | Ocorreu um erro ao executar um comando dentro de uma tarefa | | 202 | O usuário tentou invocar uma tarefa que é interna | diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md index ff9bd20c..6c0a55b5 100644 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # Changelog +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md index 08d77d42..cc4f9306 100644 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ Se você estiver no macOS ou Linux e tiver o [Homebrew][homebrew] instalado, ins brew install go-task/tap/go-task ``` -A fórmula acima é [mantida por nós mesmos](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb). +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). Recentemente, o Task também foi disponibilizado [no repositório oficial do Homebrew](https://formulae.brew.sh/formula/go-task), então você também tem essa opção, se preferir: diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md index 4953713d..3e0d75d7 100644 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md @@ -43,8 +43,8 @@ Nix is a community owned installation method. Nix package maintainers usually ta [goreleaser]: https://goreleaser.com/ [homebrewtap]: https://github.com/go-task/homebrew-tap -[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 [snappackage]: https://github.com/go-task/snap -[snapcraftyaml]: https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md index da9ad461..12453c03 100644 --- a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md @@ -68,6 +68,11 @@ A full list of the exit codes and their descriptions can be found below: | 100 | No Taskfile was found | | 101 | A Taskfile already exists when trying to initialize one | | 102 | The Taskfile is invalid or cannot be parsed | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | | 200 | The specified task could not be found | | 201 | An error occurred while executing a command inside of a task | | 202 | The user tried to invoke a task that is internal | diff --git a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md index ff9bd20c..6c0a55b5 100644 --- a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # Changelog +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md index d3e6469e..70570491 100644 --- a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ Task имеет множество способов установки. Прос brew install go-task/tap/go-task ``` -Данная Formula [поддерживается нами](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb). +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). Недавно Task стал доступен [в официальном репозитории Homebrew](https://formulae.brew.sh/formula/go-task), поэтому вы можете использовать: diff --git a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md index d493e922..7b8cc2d8 100644 --- a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md @@ -13,7 +13,7 @@ sidebar_position: 13 # Homebrew -Goreleaser автоматически отправит новый коммит в файл [Formula/go-task.rb][gotaskrb] в репозитории [Homebrew tap][homebrewtap] для выпуска новой версии. +Goreleaser will automatically push a new commit to the [Formula/go-task.rb][gotaskrb] file in the [Homebrew tap][homebrewtap] repository to release the new version. # npm @@ -23,7 +23,7 @@ Goreleaser автоматически отправит новый коммит Для выпуска новой версии [Snap пакета][snappackage] необходимо: -- Обновить текущую версию в [snapcraft.yaml][snapcraftyaml]. +- Updating the current version on [snapcraft.yaml][snapcraftyaml]. - Переместить `amd64`, `armhf` и `arm64` артефакты в стабильный канал на панели [Snapcraft][snapcraftdashboard]. # winget @@ -43,8 +43,8 @@ Nix - это метод установки, принадлежащий сооб [goreleaser]: https://goreleaser.com/ [homebrewtap]: https://github.com/go-task/homebrew-tap -[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 [snappackage]: https://github.com/go-task/snap -[snapcraftyaml]: https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md index a993cf82..063956d7 100644 --- a/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md +++ b/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md @@ -21,7 +21,7 @@ sidebar_position: 5 - Добавлена поддержка `.env` файлов - Добавлен параметр `label:`. Появилась возможность переопределить имя задачи в логах - Глобальный параметр `method:` был добавлен для установки метода по умолчанию, а задача по умолчанию изменена на `checksum` -- Добавлены 2 магические переменные, используемые в функции `status:` - `CHECKSUM` и `TIMESTAMP`, которые содержат, контрольную сумму XXH3 и наибольшую отметку времени изменения файлов, перечисленных в `sources:` +- Two magic variables were added when using `status:`: `CHECKSUM` and `TIMESTAMP` which contains, respectively, the XXH3 checksum and greatest modification timestamp of the files listed on `sources:` - Кроме того, переменная `TASK` всегда доступна по имени текущей задачи - Переменные CLI всегда считаются глобальными переменными - Добавлена опция `dir:` в `includes` для того, чтобы выбрать, в каком каталоге Taskfile будет запущен: diff --git a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md index 03611082..a49bba78 100644 --- a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md @@ -68,6 +68,11 @@ A full list of the exit codes and their descriptions can be found below: | 100 | No Taskfile was found | | 101 | A Taskfile already exists when trying to initialize one | | 102 | The Taskfile is invalid or cannot be parsed | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | | 200 | The specified task could not be found | | 201 | An error occurred while executing a command inside of a task | | 202 | The user tried to invoke a task that is internal | diff --git a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md index ff9bd20c..6c0a55b5 100644 --- a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # Changelog +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md index 8538fe9c..b26cdfbd 100644 --- a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ Eğer macOS veya Linux kullanıyorsanız ve [Homebrew][homebrew] yüklüyse, Tas brew install go-task/tap/go-task ``` -Yukarıdaki formül [kendimiz tarafından sürdürülür](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb). +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). Son zamanlarda, Task [resmi Homebrew deposunda](https://formulae.brew.sh/formula/go-task) da kullanıma sunuldu, bu nedenle tercih ederseniz bu seçeneğe de sahipsiniz: diff --git a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md index 4953713d..3e0d75d7 100644 --- a/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md @@ -43,8 +43,8 @@ Nix is a community owned installation method. Nix package maintainers usually ta [goreleaser]: https://goreleaser.com/ [homebrewtap]: https://github.com/go-task/homebrew-tap -[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 [snappackage]: https://github.com/go-task/snap -[snapcraftyaml]: https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md index b40019a7..1416c767 100644 --- a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md +++ b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md @@ -61,20 +61,25 @@ Task 有时会以特定的退出代码退出。 These codes are split into three 可以在下面找到退出代码及其描述的完整列表: -| 代码 | 描述 | -| --- | ---------------------- | -| 0 | 成功 | -| 1 | 出现未知错误 | -| 100 | 找不到 Taskfile | -| 101 | 尝试初始化一个 Taskfile 时已经存在 | -| 102 | Taskfile 无效或无法解析 | -| 200 | 找不到指定的 task | -| 201 | 在 task 中执行命令时出错 | -| 202 | 用户试图调用内部 task | -| 203 | 有多个具有相同名称或别名的 task | -| 204 | 一个 task 被调用了太多次 | -| 205 | 操作被用户取消 | -| 206 | 由于缺少所需变量,任务未执行 | +| 代码 | 描述 | +| --- | -------------------------------------------------------- | +| 0 | 成功 | +| 1 | 出现未知错误 | +| 100 | 找不到 Taskfile | +| 101 | 尝试初始化一个 Taskfile 时已经存在 | +| 102 | Taskfile 无效或无法解析 | +| 103 | A remote Taskfile could not be downlaoded | +| 104 | A remote Taskfile was not trusted by the user | +| 105 | A remote Taskfile was could not be fetched securely | +| 106 | No cache was found for a remote Taskfile in offline mode | +| 107 | No schema version was defined in the Taskfile | +| 200 | 找不到指定的 task | +| 201 | 在 task 中执行命令时出错 | +| 202 | 用户试图调用内部 task | +| 203 | 有多个具有相同名称或别名的 task | +| 204 | 一个 task 被调用了太多次 | +| 205 | 操作被用户取消 | +| 206 | 由于缺少所需变量,任务未执行 | 这些代码也可以在代码库的 [`errors/errors.go`](https://github.com/go-task/task/blob/main/errors/errors.go) 文件中找到。 diff --git a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md index 11c30150..a4027005 100644 --- a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +++ b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md @@ -5,6 +5,16 @@ sidebar_position: 14 # 更新日志 +## v3.30.1 - 2023-09-14 + +- Fixed a regression where some special variables weren't being set correctly ([#1331](https://github.com/go-task/task/issues/1331), [#1334](https://github.com/go-task/task/issues/1334) by [@pd93](https://github.com/pd93)). + +## v3.30.0 - 2023-09-13 + +- Prep work for Remote Taskfiles ([#1316](https://github.com/go-task/task/issues/1316) by [@pd93](https://github.com/pd93)). +- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft ([#1152](https://github.com/go-task/task/issues/1152), [#1317](https://github.com/go-task/task/issues/1317) by [@pd93](https://github.com/pd93)). +- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release ([#1325](https://github.com/go-task/task/issues/1325) by [@ReillyBrogan](https://github.com/ReillyBrogan)). + ## v3.29.1 - 2023-08-26 - Update to Go 1.21 (bump minimum version to 1.20) ([#1302](https://github.com/go-task/task/issues/1302) by [@pd93](https://github.com/pd93)) @@ -29,7 +39,7 @@ sidebar_position: 14 - Allow Taskfiles starting with lowercase characters ([#947](https://github.com/go-task/task/issues/947), [#1221](https://github.com/go-task/task/issues/1221) by [@pd93](https://github.com/pd93)). - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml` - Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). ([#1190](https://github.com/go-task/task/issues/1190), by [@sounisi5011](https://github.com/sounisi5011)). -- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). +- Added the [gentle force experiment](https://taskfile.dev/experiments/gentle-force) as a draft ([#1200](https://github.com/go-task/task/issues/1200), [#1216](https://github.com/go-task/task/issues/1216) by [@pd93](https://github.com/pd93)). - Added an `--experiments` flag to allow you to see which experiments are enabled ([#1242](https://github.com/go-task/task/issues/1242) by [@pd93](https://github.com/pd93)). - Added ability to specify which variables are required in a task ([#1203](https://github.com/go-task/task/issues/1203), [#1204](https://github.com/go-task/task/issues/1204) by [@benc](https://github.com/benc)-uk). diff --git a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md index 71b8f094..cc75d536 100644 --- a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +++ b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md @@ -12,7 +12,7 @@ This experiment allows you to specify a remote Taskfile URL when including a Tas ```yaml version: '3' -include: +includes: my-remote-namespace: https://raw.githubusercontent.com/my-org/my-repo/main/Taskfile.yml ``` diff --git a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md index 43c441af..91136c6f 100644 --- a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md +++ b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md @@ -17,7 +17,7 @@ Task 提供以下多种安装方式。 查看以下可用方法。 brew install go-task/tap/go-task ``` -上面的公式是 [我们自己维护](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb) 的。 +The above Formula is [maintained by ourselves](https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb). 最近,[官方 Homebrew 存储库](https://formulae.brew.sh/formula/go-task) 中也提供了 Task,因此如果您愿意,也可以使用该选项: diff --git a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md index 55fbdcf1..b2fe8b5c 100644 --- a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md +++ b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md @@ -13,7 +13,7 @@ Task 的发布流程是在 [GoReleaser][goreleaser] 的帮助下完成的。 本 # Homebrew -Goreleaser 会自动向 [Homebrew tap](https://github.com/go-task/homebrew-tap) 仓库中的 [Formula/go-task.rb](https://github.com/go-task/homebrew-tap/blob/master/Formula/go-task.rb) 文件推送一个新的提交,以发布新的版本。 +Goreleaser will automatically push a new commit to the [Formula/go-task.rb][gotaskrb] file in the [Homebrew tap][homebrewtap] repository to release the new version. # npm @@ -23,7 +23,7 @@ Goreleaser 会自动向 [Homebrew tap](https://github.com/go-task/homebrew-tap) [snap package](https://github.com/go-task/snap) 发布新版本需要手动执行下面步骤: -- 更新 [snapcraft.yaml](https://github.com/go-task/snap/blob/master/snap/snapcraft.yaml#L2) 文件中的版本。 +- Updating the current version on [snapcraft.yaml][snapcraftyaml]. - 把新的 `amd64`, `armhf` 和 `arm64` 移动到 [Snapcraft dashboard][snapcraftdashboard] 的稳定通道。 # winget @@ -42,5 +42,8 @@ Nix 安装由社区维护。 Nix 包的维护人员通常会在 [这个文件](h [goreleaser]: https://goreleaser.com/ +[homebrewtap]: https://github.com/go-task/homebrew-tap +[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [packagejson]: https://github.com/go-task/task/blob/main/package.json#L3 +[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftdashboard]: https://snapcraft.io/task/releases diff --git a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md index 9ec46da5..fe347d16 100644 --- a/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md +++ b/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md @@ -21,7 +21,7 @@ Taskfile 文件的 `version:` 关键字接受语义化字符串, 所以 `2`, ` - 支持类 `.env` 文件 - 添加 `label:` 设置后可以覆盖任务名称在日志中的显示方式 - 添加了全局 `method:` 允许设置默认方法,Task 的默认值更改为 `checksum` -- 使用 `status:`: `CHECKSUM` 和 `TIMESTAMP` 时新增了两个魔术变量,分别包含 `sources:` 列出的文件的 XXH3 checksum 和最大修改时间戳 +- Two magic variables were added when using `status:`: `CHECKSUM` and `TIMESTAMP` which contains, respectively, the XXH3 checksum and greatest modification timestamp of the files listed on `sources:` - 另外,`TASK` 变量总是可以使用当前的任务名称 - CLI 变量始终被视为全局变量 - 向 `includes` 添加了 `dir:` 选项,以允许选择包含的任务文件将在哪个目录上运行: