go-task-bin 3.40.0__tar.gz → 3.41.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of go-task-bin might be problematic. Click here for more details.
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/PKG-INFO +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/pdm_build.py +2 -2
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/pyproject.toml +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.editorconfig +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/CODE_OF_CONDUCT.md +1 -1
- go_task_bin-3.41.0/task/.github/ISSUE_TEMPLATE/bug_report.yml +69 -0
- go_task_bin-3.41.0/task/.github/ISSUE_TEMPLATE/config.yml +11 -0
- go_task_bin-3.41.0/task/.github/ISSUE_TEMPLATE/feature_request.yml +23 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.golangci.yml +17 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.goreleaser.yml +1 -1
- go_task_bin-3.41.0/task/.nvmrc +1 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/CHANGELOG.md +45 -10
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/README.md +13 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/Taskfile.yml +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/args/args.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/args/args_test.go +52 -34
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/cmd/release/main.go +2 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/cmd/sleepit/sleepit.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/cmd/task/task.go +3 -2
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/go.mod +14 -13
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/go.sum +34 -69
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/compiler/compiler.go +12 -7
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/compiler/env.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/deepcopy/deepcopy.go +17 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/env/env.go +7 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/execext/exec.go +2 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/sources_checksum_test.go +2 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/task_test.go +4 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/flags/flags.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/output/output_test.go +32 -10
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/output/prefixed.go +9 -4
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/sort/sorter_test.go +8 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/summary/summary.go +3 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/summary/summary_test.go +17 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/templater/templater.go +2 -2
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/package-lock.json +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/package.json +2 -2
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/precondition.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/requires.go +4 -8
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/setup.go +4 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/signals.go +4 -4
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/task.go +14 -13
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/task_test.go +439 -52
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/cmd.go +4 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/for.go +2 -3
- go_task_bin-3.41.0/task/taskfile/ast/include.go +191 -0
- go_task_bin-3.41.0/task/taskfile/ast/matrix.go +95 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/platforms_test.go +4 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/precondition_test.go +2 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/taskfile.go +18 -6
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/taskfile_test.go +38 -24
- go_task_bin-3.41.0/task/taskfile/ast/tasks.go +285 -0
- go_task_bin-3.41.0/task/taskfile/ast/var.go +262 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/dotenv.go +2 -2
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_git.go +1 -1
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_git_test.go +10 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_test.go +2 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/reader.go +1 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/taskfile.go +2 -2
- go_task_bin-3.41.0/task/testdata/cmds_vars/Taskfile.yml +10 -0
- go_task_bin-3.41.0/task/testdata/deferred/Taskfile.yml +14 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/env/Taskfile.yml +15 -6
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/exit_immediately/Taskfile.yml +1 -1
- go_task_bin-3.41.0/task/testdata/includes_with_excludes/Taskfile.yml +17 -0
- go_task_bin-3.41.0/task/testdata/includes_with_excludes/included/Taskfile.yml +5 -0
- go_task_bin-3.41.0/task/testdata/requires/Taskfile.yml +35 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/special_vars/Taskfile.yml +3 -0
- go_task_bin-3.41.0/task/testdata/status_vars/source.txt +1 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/summary/Taskfile.yml +5 -5
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/summary/task-with-summary.txt +2 -2
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/variables.go +26 -24
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/changelog.mdx +45 -10
- {go_task_bin-3.40.0/task/website/versioned_docs/version-latest → go_task_bin-3.41.0/task/website/docs}/installation.mdx +80 -84
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/intro.mdx +12 -0
- {go_task_bin-3.40.0/task/website/versioned_docs/version-latest → go_task_bin-3.41.0/task/website/docs}/reference/environment.mdx +1 -1
- go_task_bin-3.41.0/task/website/docs/reference/package.mdx +29 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/reference/schema.mdx +13 -2
- {go_task_bin-3.40.0/task/website/versioned_docs/version-latest → go_task_bin-3.41.0/task/website/docs}/reference/templating.mdx +2 -1
- {go_task_bin-3.40.0/task/website/versioned_docs/version-latest → go_task_bin-3.41.0/task/website/docs}/usage.mdx +96 -56
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docusaurus.config.ts +15 -5
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/src/css/custom.css +4 -0
- go_task_bin-3.41.0/task/website/static/img/devowl.io.svg +1 -0
- go_task_bin-3.41.0/task/website/static/img/icon-bluesky.svg +1 -0
- go_task_bin-3.41.0/task/website/static/img/icon-discord.svg +1 -0
- go_task_bin-3.41.0/task/website/static/img/icon-github.svg +1 -0
- go_task_bin-3.41.0/task/website/static/img/icon-mastodon.svg +1 -0
- go_task_bin-3.41.0/task/website/static/img/icon-twitter.svg +1 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/schema.json +20 -16
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/changelog.mdx +45 -10
- {go_task_bin-3.40.0/task/website/docs → go_task_bin-3.41.0/task/website/versioned_docs/version-latest}/installation.mdx +80 -84
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/intro.mdx +12 -0
- {go_task_bin-3.40.0/task/website/docs → go_task_bin-3.41.0/task/website/versioned_docs/version-latest}/reference/environment.mdx +1 -1
- go_task_bin-3.41.0/task/website/versioned_docs/version-latest/reference/package.mdx +29 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/reference/schema.mdx +13 -2
- {go_task_bin-3.40.0/task/website/docs → go_task_bin-3.41.0/task/website/versioned_docs/version-latest}/reference/templating.mdx +2 -1
- {go_task_bin-3.40.0/task/website/docs → go_task_bin-3.41.0/task/website/versioned_docs/version-latest}/usage.mdx +96 -56
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/yarn.lock +3346 -3658
- go_task_bin-3.40.0/task/.github/ISSUE_TEMPLATE/bug_report.md +0 -20
- go_task_bin-3.40.0/task/.github/ISSUE_TEMPLATE/config.yml +0 -11
- go_task_bin-3.40.0/task/.github/ISSUE_TEMPLATE/feature_request.md +0 -15
- go_task_bin-3.40.0/task/.nvmrc +0 -1
- go_task_bin-3.40.0/task/internal/omap/orderedmap.go +0 -164
- go_task_bin-3.40.0/task/internal/omap/orderedmap_test.go +0 -121
- go_task_bin-3.40.0/task/taskfile/ast/include.go +0 -122
- go_task_bin-3.40.0/task/taskfile/ast/tasks.go +0 -173
- go_task_bin-3.40.0/task/taskfile/ast/var.go +0 -174
- go_task_bin-3.40.0/task/testdata/deferred/Taskfile.yml +0 -12
- go_task_bin-3.40.0/task/testdata/requires/Taskfile.yml +0 -18
- go_task_bin-3.40.0/task/website/static/img/icon-discord.svg +0 -1
- go_task_bin-3.40.0/task/website/static/img/icon-github.svg +0 -1
- go_task_bin-3.40.0/task/website/static/img/icon-mastodon.svg +0 -1
- go_task_bin-3.40.0/task/website/static/img/icon-twitter.svg +0 -21
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/LICENSE +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/README.md +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.git +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.gitattributes +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/CONTRIBUTING.md +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/FUNDING.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/dependabot.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/pull_request_template.md +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/renovate.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/issue-awaiting-response.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/issue-closed.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/issue-experiment.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/issue-needs-triage.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/lint.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/release.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.github/workflows/test.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.mockery.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.prettierrc.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.vscode/extensions.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/.vscode/settings-sample.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/LICENSE +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/bin/.keep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/completion/bash/task.bash +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/completion/fish/task.fish +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/completion/ps/task.ps1 +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/completion/zsh/_task +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/completion.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/concurrency.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/errors/error_taskfile_decode.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/errors/errors.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/errors/errors_task.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/errors/errors_taskfile.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/errors/themes/task.xml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/hash.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/help.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/init.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/install-task.sh +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/editors/output.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/execext/devnull.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/exp/maps.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/experiments/experiments.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/filepathext/filepathext.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/checker.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/glob.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/sources.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/sources_checksum.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/sources_none.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/sources_timestamp.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/status.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/fingerprint/task.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/goext/meta.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/hash/hash.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/logger/logger.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/mocks/sources_checkable.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/mocks/status_checkable.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/output/group.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/output/interleaved.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/output/output.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/slicesext/slicesext.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/sort/sorter.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/sysinfo/uid.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/sysinfo/uid_win.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/templater/funcs.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/term/term.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/internal/version/version.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/signals_test.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/status.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/call.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/dep.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/glob.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/graph.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/location.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/output.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/platforms.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/precondition.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/prompt.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/requires.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/ast/task.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/cache.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_base.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_file.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_http.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/taskfile/node_stdin.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/alias/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/alias/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/alias/alias-summary.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/alias/alias.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/checksum/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/checksum/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/checksum/ignore_me.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/checksum/source.txt +0 -0
- {go_task_bin-3.40.0/task/testdata/status_vars → go_task_bin-3.41.0/task/testdata/cmds_vars}/source.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/concurrency/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/cyclic/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/deps/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/deps/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/desc/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/dynamic_var/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/dynamic_var/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/dynamic_var/subdirectory/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/dynamic_var_on_created_dir/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/explicit_doesnt_exist/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/explicit_exists/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dir/explicit_exists/exists/.keep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/default/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/env_var_in_path/.env.testing +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/env_var_in_path/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/error_included_envs/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/include1/.env +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/include1/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/include1/envs/.env +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/local_env_in_path/.env.testing +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/local_env_in_path/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/local_var_in_path/.env.testing +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/local_var_in_path/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/missing_env/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/parse_error/.env-with-error +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv/parse_error/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv_task/default/.env +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv_task/default/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dotenv_task/default/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dry/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dry_checksum/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/dry_checksum/source.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/empty_task/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/empty_taskfile/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/env/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/error_code/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/evaluate_symlinks_in_paths/shared/b +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/evaluate_symlinks_in_paths/shared/inner_shared/c +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/evaluate_symlinks_in_paths/src/a +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/exit_code/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/expand/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/file_names/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/file_names/Taskfile.dist.yaml/Taskfile.dist.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/file_names/Taskfile.dist.yml/Taskfile.dist.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/file_names/Taskfile.yaml/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/file_names/Taskfile.yml/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/for/cmds/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/for/cmds/bar.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/for/cmds/foo.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/for/deps/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/for/deps/bar.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/for/deps/foo.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/force/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/generates/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/generates/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/generates/sub/.keep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_errors/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_nil_elements/cmds/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_nil_elements/deps/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_nil_elements/includes/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_nil_elements/includes/inc.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_nil_elements/preconditions/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/ignore_signals/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars/include/Taskfile.include1.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars/include/Taskfile.include2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars/include/Taskfile.include3.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars_multi_level/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars_multi_level/bar/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars_multi_level/foo/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/include_with_vars_multi_level/lib/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/included_taskfile_var_merging/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/included_taskfile_var_merging/bar/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/included_taskfile_var_merging/foo/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/Taskfile_darwin.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/Taskfile_linux.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/Taskfile_windows.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/included/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/module1/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes/module2/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_call_root_task/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_call_root_task/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_call_root_task/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_cycle/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_cycle/one/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_cycle/one/two/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_deps/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_deps/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_deps/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_empty/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_empty/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_empty/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_flatten/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_flatten/Taskfile.multiple.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_flatten/Taskfile.with_default.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_flatten/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_flatten/included/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_flatten/nested/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_http/child-taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_http/child-taskfile3.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_http/root-taskfile-remotefile-empty-dir-1st.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_http/root-taskfile-remotefile-empty-dir-2nd.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_incorrect/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_incorrect/incomplete.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_internal/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_internal/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_interpolation/include/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_interpolation/include_with_dir/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_interpolation/include_with_env_variable/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_interpolation/included/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/called_one.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/called_three.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/called_two.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/one/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/one/two/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_multi_level/one/two/three/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_optional/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_optional/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_optional_explicit_false/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_optional_implicit_false/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_rel_path/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_rel_path/common/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_rel_path/included/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_remote/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_remote/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_remote/first/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_remote/first/second/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_shadowed_default/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_shadowed_default/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_shadowed_default/file.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_unshadowed_default/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_unshadowed_default/Taskfile2.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_unshadowed_default/file.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_yaml/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_yaml/Custom.ext +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_yaml/included/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/includes_yaml/included/custom.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/init/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/internal_task/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/label_list/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/label_status/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/label_summary/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/label_uptodate/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/label_var/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/list_desc_interpolation/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/list_mixed_desc/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/output_group/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/output_group_error_only/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/params/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/params/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/platforms/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/precondition/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/precondition/foo.txt +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/prompt/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run_once_shared_deps/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run_once_shared_deps/library/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run_once_shared_deps/service-a/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run_once_shared_deps/service-a/src/imasource.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run_once_shared_deps/service-b/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/run_once_shared_deps/service-b/src/imasource.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/shopts/command_level/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/shopts/global_level/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/shopts/task_level/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/short_task_notation/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/silent/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/single_cmd_dep/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/single_cmd_dep/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/special_vars/included/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/special_vars/subdir/.gitkeep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/split_args/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/status/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/status/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/status_vars/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/status_vars/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/taskfile_walk/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/taskfile_walk/foo/bar/.gitkeep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/user_working_dir/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/user_working_dir_with_includes/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/user_working_dir_with_includes/included/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/user_working_dir_with_includes/somedir/.keep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/var_references/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/.env +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/any/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/any2/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/any2/example.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/vars/any2/example.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/version/v1/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/version/v2/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/version/v3/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/watcher_interval/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/watcher_interval/Taskfile.yaml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/testdata/wildcards/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/watch.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/watch_test.go +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/.gitignore +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/.nojekyll +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/babel.config.ts +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/blog/2023-09-02-introducing-experiments.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/blog/2024-05-09-any-variables.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/blog/authors.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/constants.ts +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/community.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/contributing.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/deprecations/completion_scripts.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/deprecations/deprecations.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/deprecations/template.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/deprecations/template_functions.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/deprecations/version_2_schema.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/experiments/env_precedence.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/experiments/experiments.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/experiments/gentle_force.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/experiments/map_variables.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/experiments/remote_taskfiles.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/experiments/template.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/faq.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/integrations.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/reference/_category_.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/reference/cli.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/releasing.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/styleguide.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/docs/taskfile_versions.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/package.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/prettier.config.js +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/sidebars.ts +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/src/components/.keep +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/src/css/carbon.css +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/src/pages/donate.md +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/src/themes/prismDark.js +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/src/themes/prismLight.js +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/.nojekyll +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/CNAME +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/Taskfile.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/appwrite.svg +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/favicon.ico +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/logo.png +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/logo.svg +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/logo_mono.svg +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/og-image.png +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/img/pix.png +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/install.sh +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/static/js/carbon.js +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/tsconfig.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/community.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/contributing.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/deprecations/completion_scripts.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/deprecations/deprecations.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/deprecations/template.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/deprecations/template_functions.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/deprecations/version_2_schema.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/experiments/env_precedence.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/experiments/experiments.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/experiments/gentle_force.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/experiments/map_variables.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/experiments/remote_taskfiles.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/experiments/template.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/faq.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/integrations.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/reference/_category_.yml +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/reference/cli.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/releasing.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/styleguide.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_docs/version-latest/taskfile_versions.mdx +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versioned_sidebars/version-latest-sidebars.json +0 -0
- {go_task_bin-3.40.0 → go_task_bin-3.41.0}/task/website/versions.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: go-task-bin
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.41.0
|
|
4
4
|
Summary: task - A task runner / simpler Make alternative written in Go
|
|
5
5
|
Keywords: build,build-tool,devops,go,make,makefile,runner,task,task-runner,taskfile,tool
|
|
6
6
|
Author-Email: dowon <ks2515@naver.com>
|
|
@@ -11,7 +11,7 @@ if TYPE_CHECKING:
|
|
|
11
11
|
from pdm.backend.hooks import Context
|
|
12
12
|
|
|
13
13
|
NAME = "task"
|
|
14
|
-
VERSION = "3.
|
|
14
|
+
VERSION = "3.41.0"
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
def is_windows():
|
|
@@ -33,7 +33,7 @@ def build(output: str) -> None:
|
|
|
33
33
|
output,
|
|
34
34
|
"-trimpath",
|
|
35
35
|
"-ldflags",
|
|
36
|
-
f"-s -w -X github.com/go-task/task/v3/internal/version.version={VERSION}",
|
|
36
|
+
f"-s -w -X github.com/go-task/task/v3/internal/version.version={VERSION} -X github.com/go-task/task/v3/internal/version.sum=pypi",
|
|
37
37
|
"./cmd/task",
|
|
38
38
|
]
|
|
39
39
|
|
|
@@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe
|
|
|
34
34
|
|
|
35
35
|
## Enforcement
|
|
36
36
|
|
|
37
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at task@taskfile.dev. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
38
|
|
|
39
39
|
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
|
40
40
|
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
name: '🐞 Bug Report'
|
|
2
|
+
description: Report a bug in Task.
|
|
3
|
+
labels: ['state: needs-triage']
|
|
4
|
+
body:
|
|
5
|
+
- type: markdown
|
|
6
|
+
attributes:
|
|
7
|
+
value: |
|
|
8
|
+
Thanks for your bug report!
|
|
9
|
+
|
|
10
|
+
Before submitting, please check the list of [existing issues](https://github.com/go-task/task/issues) and make sure the same bug was not already reported by someone else.
|
|
11
|
+
|
|
12
|
+
- type: textarea
|
|
13
|
+
id: description
|
|
14
|
+
attributes:
|
|
15
|
+
label: Description
|
|
16
|
+
description: Describe the bug you're seeing.
|
|
17
|
+
placeholder: |
|
|
18
|
+
- What did you do?
|
|
19
|
+
- What did you expect to happen?
|
|
20
|
+
- What happened instead?
|
|
21
|
+
validations:
|
|
22
|
+
required: true
|
|
23
|
+
|
|
24
|
+
- type: input
|
|
25
|
+
id: version
|
|
26
|
+
attributes:
|
|
27
|
+
label: Version
|
|
28
|
+
description: What version(s) of Task is the issue occurring on?
|
|
29
|
+
validations:
|
|
30
|
+
required: true
|
|
31
|
+
|
|
32
|
+
- type: input
|
|
33
|
+
id: os
|
|
34
|
+
attributes:
|
|
35
|
+
label: Operating system
|
|
36
|
+
description: What operating system(s) is the issue occurring on?
|
|
37
|
+
validations:
|
|
38
|
+
required: true
|
|
39
|
+
|
|
40
|
+
- type: dropdown
|
|
41
|
+
id: experiments
|
|
42
|
+
attributes:
|
|
43
|
+
label: Experiments Enabled
|
|
44
|
+
description: Do you have any experiments enabled? You can check by running `task --experiments`.
|
|
45
|
+
multiple: true
|
|
46
|
+
options:
|
|
47
|
+
- Env Precedence
|
|
48
|
+
- Gentle Force
|
|
49
|
+
- Map Variables (1)
|
|
50
|
+
- Map Variables (2)
|
|
51
|
+
- Remote Taskfiles
|
|
52
|
+
validations:
|
|
53
|
+
required: false
|
|
54
|
+
|
|
55
|
+
- type: textarea
|
|
56
|
+
id: logs
|
|
57
|
+
attributes:
|
|
58
|
+
label: Example Taskfile
|
|
59
|
+
description: |
|
|
60
|
+
If you have a Taskfile that reproduces the issue, please paste it here.
|
|
61
|
+
This will be automatically formatted into code, so no need for backticks.
|
|
62
|
+
render: YAML
|
|
63
|
+
placeholder: |
|
|
64
|
+
version: '3'
|
|
65
|
+
|
|
66
|
+
tasks:
|
|
67
|
+
default:
|
|
68
|
+
cmds:
|
|
69
|
+
- 'echo "This Taskfile is buggy :("'
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: '🔌 Task for Visual Studio Code'
|
|
4
|
+
url: https://github.com/go-task/vscode-task
|
|
5
|
+
about: 'Issues related to the Visual Studio Code extension should be opened here.'
|
|
6
|
+
- name: '💬 Help forum on Discord'
|
|
7
|
+
url: https://discord.com/channels/974121106208354339/1025054680289660989
|
|
8
|
+
about: 'The #help channel on our Discord is the best way to get help from the community.'
|
|
9
|
+
- name: '❓ Questions, Ideas and General Discussions'
|
|
10
|
+
url: https://github.com/go-task/task/discussions
|
|
11
|
+
about: 'Ask questions and discuss general ideas with the community.'
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: '✨ Feature Request'
|
|
2
|
+
description: Suggest a new feature or enhancement for Task.
|
|
3
|
+
labels: ['state: needs-triage']
|
|
4
|
+
body:
|
|
5
|
+
- type: markdown
|
|
6
|
+
attributes:
|
|
7
|
+
value: |
|
|
8
|
+
Thanks for your feature request!
|
|
9
|
+
|
|
10
|
+
Before submitting, please check the list of [existing issues](https://github.com/go-task/task/issues) and make sure the same change was not already requested by someone else.
|
|
11
|
+
If your request is more of an idea than a feature request, consider opening a [discussion](https://github.com/go-task/task/discussions) instead.
|
|
12
|
+
|
|
13
|
+
- type: textarea
|
|
14
|
+
id: description
|
|
15
|
+
attributes:
|
|
16
|
+
label: Description
|
|
17
|
+
description: Describe the feature/enhancement you want to see in Task.
|
|
18
|
+
placeholder: |
|
|
19
|
+
- Give a general overview of the feature/enhancement.
|
|
20
|
+
- Explain problem is the change trying to solve.
|
|
21
|
+
- Give examples of how you would use the feature.
|
|
22
|
+
validations:
|
|
23
|
+
required: true
|
|
@@ -5,11 +5,28 @@
|
|
|
5
5
|
|
|
6
6
|
linters:
|
|
7
7
|
enable:
|
|
8
|
+
- depguard
|
|
8
9
|
- goimports
|
|
9
10
|
- gofmt
|
|
10
11
|
- gofumpt
|
|
12
|
+
- misspell
|
|
13
|
+
- noctx
|
|
14
|
+
- paralleltest
|
|
15
|
+
- tenv
|
|
16
|
+
- thelper
|
|
17
|
+
- tparallel
|
|
11
18
|
|
|
12
19
|
linters-settings:
|
|
20
|
+
depguard:
|
|
21
|
+
rules:
|
|
22
|
+
main:
|
|
23
|
+
files:
|
|
24
|
+
- "$all"
|
|
25
|
+
- "!$test"
|
|
26
|
+
- "!**/errors/*.go"
|
|
27
|
+
deny:
|
|
28
|
+
- pkg: "errors"
|
|
29
|
+
desc: "Use github.com/go-task/task/v3/errors instead"
|
|
13
30
|
goimports:
|
|
14
31
|
local-prefixes: github.com/go-task
|
|
15
32
|
gofmt:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
22.12.0
|
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v3.41.0 - 2025-01-18
|
|
4
|
+
|
|
5
|
+
- Fixed an issue where dynamic variables were not properly logged in verbose
|
|
6
|
+
mode (#1920, #1921 by @mgbowman).
|
|
7
|
+
- Support `silent` for defer statements (#1877, #1879 by @danilobuerger).
|
|
8
|
+
- Added an option to exclude some tasks from being included (#1859 by
|
|
9
|
+
@vmaerten).
|
|
10
|
+
- Fixed an issue where a required variable was incorrectly handled in a template
|
|
11
|
+
function (#1950, #1962 by @vmaerten).
|
|
12
|
+
- Expose a new `TASK_DIR` special variable, which will contain the absolute path
|
|
13
|
+
of task directory. (#1959, #1961 by @vmaerten).
|
|
14
|
+
- Fixed fatal bugs that caused concurrent map writes (#1605, #1972, #1974 by
|
|
15
|
+
@pd93, @GrahamDennis and @trim21).
|
|
16
|
+
- Refactored internal ordered map implementation to use
|
|
17
|
+
[github.com/elliotchance/orderedmap](https://github.com/elliotchance/orderedmap)
|
|
18
|
+
(#1797 by @pd93).
|
|
19
|
+
- Fixed a bug where variables defined at the task level were being ignored in
|
|
20
|
+
the `requires` section. (#1960, #1955, #1768 by @vmaerten and @mokeko)
|
|
21
|
+
- The `CHECKSUM` and `TIMESTAMP` variables are now accessible within `cmds`
|
|
22
|
+
(#1872 by @niklasr22).
|
|
23
|
+
- Updated [installation docs](https://taskfile.dev/installation) and added pip
|
|
24
|
+
installation method (#935, #1989 by @pd93).
|
|
25
|
+
- Fixed a bug where dynamic variables could not access environment variables
|
|
26
|
+
(#630, #1869 by @rohm1 and @pd93).
|
|
27
|
+
- Disable version check for use as an external library (#1938 by @leaanthony).
|
|
28
|
+
|
|
29
|
+
## v3.40.1 - 2024-12-06
|
|
30
|
+
|
|
31
|
+
- Fixed a security issue in `git-urls` by switching to the maintained fork
|
|
32
|
+
`chainguard-dev/git-urls` (#1917 by @AlekSi).
|
|
33
|
+
- Added missing `platforms` property to `cmds` that use `for` (#1915 by
|
|
34
|
+
@dkarter).
|
|
35
|
+
- Added misspell linter to check for misspelled English words (#1883 by
|
|
36
|
+
@christiandins).
|
|
37
|
+
|
|
3
38
|
## v3.40.0 - 2024-11-05
|
|
4
39
|
|
|
5
40
|
- Fixed output of some functions (e.g. `splitArgs`/`splitLines`) not working in
|
|
@@ -292,8 +327,8 @@
|
|
|
292
327
|
- Added the
|
|
293
328
|
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
|
|
294
329
|
as a draft (#1152, #1317 by @pd93).
|
|
295
|
-
- Improve performance of content
|
|
296
|
-
[XXH3](https://xxhash.com/) which is much faster. This is a soft breaking
|
|
330
|
+
- Improve performance of content checksumming on `sources:` by replacing md5
|
|
331
|
+
with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking
|
|
297
332
|
change because checksums will be invalidated when upgrading to this release
|
|
298
333
|
(#1325 by @ReillyBrogan).
|
|
299
334
|
|
|
@@ -352,7 +387,7 @@
|
|
|
352
387
|
- Deprecated `version: 2` schema. This will be removed in the next major release
|
|
353
388
|
(#1197, #1198, #1199 by @pd93).
|
|
354
389
|
- Added a new `prompt:` prop to set a warning prompt to be shown before running
|
|
355
|
-
a potential
|
|
390
|
+
a potential dangerous task (#100, #1163 by @MaxCheetham,
|
|
356
391
|
[Documentation](https://taskfile.dev/usage/#warning-prompts)).
|
|
357
392
|
- Added support for single command task syntax. With this change, it's now
|
|
358
393
|
possible to declare just `cmd:` in a task, avoiding the more complex
|
|
@@ -367,7 +402,7 @@
|
|
|
367
402
|
percentage (#1173 by @misitebao).
|
|
368
403
|
- Starting on this release, official binaries for FreeBSD will be available to
|
|
369
404
|
download (#1068 by @andreynering).
|
|
370
|
-
- Fix some errors being unintendedly
|
|
405
|
+
- Fix some errors being unintendedly suppressed (#1134 by @clintmod).
|
|
371
406
|
- Fix a nil pointer error when `version` is omitted from a Taskfile (#1148,
|
|
372
407
|
#1149 by @pd93).
|
|
373
408
|
- Fix duplicate error message when a task does not exists (#1141, #1144 by
|
|
@@ -440,8 +475,8 @@ it a go and let us know what you think via a
|
|
|
440
475
|
- Fixed a bug where tasks were sometimes incorrectly marked as internal (#1007
|
|
441
476
|
by @pd93).
|
|
442
477
|
- Update to Go 1.20 (bump minimum version to 1.19) (#1010 by @pd93)
|
|
443
|
-
- Added environment variable `FORCE_COLOR` support to force color output.
|
|
444
|
-
|
|
478
|
+
- Added environment variable `FORCE_COLOR` support to force color output. Useful
|
|
479
|
+
for environments without TTY (#1003 by @automation-stack)
|
|
445
480
|
|
|
446
481
|
## v3.20.0 - 2023-01-14
|
|
447
482
|
|
|
@@ -796,7 +831,7 @@ it a go and let us know what you think via a
|
|
|
796
831
|
|
|
797
832
|
- Fix error code for the `--help` flag (#300, #330).
|
|
798
833
|
- Print version to stdout instead of stderr (#299, #329).
|
|
799
|
-
-
|
|
834
|
+
- Suppress `context` errors when using the `--watch` flag (#313, #317).
|
|
800
835
|
- Support templating on description (#276, #283).
|
|
801
836
|
|
|
802
837
|
## v2.8.0 - 2019-12-07
|
|
@@ -805,7 +840,7 @@ it a go and let us know what you think via a
|
|
|
805
840
|
parallel (#266).
|
|
806
841
|
- Fixed bug where calling the `task` CLI only informing global vars would not
|
|
807
842
|
execute the `default` task.
|
|
808
|
-
- Add
|
|
843
|
+
- Add ability to silent all tasks by adding `silent: true` a the root of the
|
|
809
844
|
Taskfile.
|
|
810
845
|
|
|
811
846
|
## v2.7.1 - 2019-11-10
|
|
@@ -947,7 +982,7 @@ document, since it describes in depth what changed for this version.
|
|
|
947
982
|
## v1.4.3 - 2017-09-07
|
|
948
983
|
|
|
949
984
|
- Allow assigning variables to tasks at run time via CLI (#33)
|
|
950
|
-
- Added
|
|
985
|
+
- Added support for multiline variables from sh (#64)
|
|
951
986
|
- Fixes env: remove square braces and evaluate shell (#62)
|
|
952
987
|
- Watch: change watch library and few fixes and improvements
|
|
953
988
|
- When use watching, cancel and restart long running process on file change (#59
|
|
@@ -1007,7 +1042,7 @@ document, since it describes in depth what changed for this version.
|
|
|
1007
1042
|
- More tests and Travis integration
|
|
1008
1043
|
- Watch a task (experimental)
|
|
1009
1044
|
- Possibility to call another task
|
|
1010
|
-
- Fix "=" not being
|
|
1045
|
+
- Fix "=" not being recognized in variables/environment variables
|
|
1011
1046
|
- Tasks can now have a description, and help will print them (#10)
|
|
1012
1047
|
- Task dependencies now run concurrently
|
|
1013
1048
|
- Support for a default task (#16)
|
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p>
|
|
13
|
-
<a href="https://taskfile.dev/installation/">Installation</a> | <a href="https://taskfile.dev/usage/">Documentation</a> | <a href="https://twitter.com/taskfiledev">Twitter</a> | <a href="https://fosstodon.org/@task">Mastodon</a> | <a href="https://discord.gg/6TY36E39UK">Discord</a>
|
|
13
|
+
<a href="https://taskfile.dev/installation/">Installation</a> | <a href="https://taskfile.dev/usage/">Documentation</a> | <a href="https://twitter.com/taskfiledev">Twitter</a> | <a href="https://bsky.app/profile/taskfile.dev">Bluesky</a> | <a href="https://fosstodon.org/@task">Mastodon</a> | <a href="https://discord.gg/6TY36E39UK">Discord</a>
|
|
14
14
|
</p>
|
|
15
|
+
|
|
16
|
+
<h1>Gold Sponsors</h1>
|
|
17
|
+
|
|
18
|
+
<table>
|
|
19
|
+
<tr>
|
|
20
|
+
<td align="center" valign="middle">
|
|
21
|
+
<a target="_blank" href="https://devowl.io">
|
|
22
|
+
<img src="/website/static/img/devowl.io.svg" height="100px" title="devowl.io" />
|
|
23
|
+
</a>
|
|
24
|
+
</td>
|
|
25
|
+
</tr>
|
|
26
|
+
</table>
|
|
15
27
|
</div>
|
|
@@ -122,7 +122,7 @@ tasks:
|
|
|
122
122
|
goreleaser:install:
|
|
123
123
|
desc: Installs goreleaser
|
|
124
124
|
cmds:
|
|
125
|
-
- go install github.com/goreleaser/goreleaser@latest
|
|
125
|
+
- go install github.com/goreleaser/goreleaser/v2@latest
|
|
126
126
|
|
|
127
127
|
release:*:
|
|
128
128
|
desc: Prepare the project for a new release
|
|
@@ -9,7 +9,7 @@ import (
|
|
|
9
9
|
// Parse parses command line argument: tasks and global variables
|
|
10
10
|
func Parse(args ...string) ([]*ast.Call, *ast.Vars) {
|
|
11
11
|
calls := []*ast.Call{}
|
|
12
|
-
globals :=
|
|
12
|
+
globals := ast.NewVars()
|
|
13
13
|
|
|
14
14
|
for _, arg := range args {
|
|
15
15
|
if !strings.Contains(arg, "=") {
|
|
@@ -7,11 +7,12 @@ import (
|
|
|
7
7
|
"github.com/stretchr/testify/assert"
|
|
8
8
|
|
|
9
9
|
"github.com/go-task/task/v3/args"
|
|
10
|
-
"github.com/go-task/task/v3/internal/omap"
|
|
11
10
|
"github.com/go-task/task/v3/taskfile/ast"
|
|
12
11
|
)
|
|
13
12
|
|
|
14
13
|
func TestArgs(t *testing.T) {
|
|
14
|
+
t.Parallel()
|
|
15
|
+
|
|
15
16
|
tests := []struct {
|
|
16
17
|
Args []string
|
|
17
18
|
ExpectedCalls []*ast.Call
|
|
@@ -32,30 +33,40 @@ func TestArgs(t *testing.T) {
|
|
|
32
33
|
{Task: "task-b"},
|
|
33
34
|
{Task: "task-c"},
|
|
34
35
|
},
|
|
35
|
-
ExpectedGlobals:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"BAZ": {Value: "foo"},
|
|
36
|
+
ExpectedGlobals: ast.NewVars(
|
|
37
|
+
&ast.VarElement{
|
|
38
|
+
Key: "FOO",
|
|
39
|
+
Value: ast.Var{
|
|
40
|
+
Value: "bar",
|
|
41
41
|
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
},
|
|
43
|
+
&ast.VarElement{
|
|
44
|
+
Key: "BAR",
|
|
45
|
+
Value: ast.Var{
|
|
46
|
+
Value: "baz",
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
&ast.VarElement{
|
|
50
|
+
Key: "BAZ",
|
|
51
|
+
Value: ast.Var{
|
|
52
|
+
Value: "foo",
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
),
|
|
45
56
|
},
|
|
46
57
|
{
|
|
47
58
|
Args: []string{"task-a", "CONTENT=with some spaces"},
|
|
48
59
|
ExpectedCalls: []*ast.Call{
|
|
49
60
|
{Task: "task-a"},
|
|
50
61
|
},
|
|
51
|
-
ExpectedGlobals:
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
62
|
+
ExpectedGlobals: ast.NewVars(
|
|
63
|
+
&ast.VarElement{
|
|
64
|
+
Key: "CONTENT",
|
|
65
|
+
Value: ast.Var{
|
|
66
|
+
Value: "with some spaces",
|
|
55
67
|
},
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
},
|
|
68
|
+
},
|
|
69
|
+
),
|
|
59
70
|
},
|
|
60
71
|
{
|
|
61
72
|
Args: []string{"FOO=bar", "task-a", "task-b"},
|
|
@@ -63,14 +74,14 @@ func TestArgs(t *testing.T) {
|
|
|
63
74
|
{Task: "task-a"},
|
|
64
75
|
{Task: "task-b"},
|
|
65
76
|
},
|
|
66
|
-
ExpectedGlobals:
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
77
|
+
ExpectedGlobals: ast.NewVars(
|
|
78
|
+
&ast.VarElement{
|
|
79
|
+
Key: "FOO",
|
|
80
|
+
Value: ast.Var{
|
|
81
|
+
Value: "bar",
|
|
70
82
|
},
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
},
|
|
83
|
+
},
|
|
84
|
+
),
|
|
74
85
|
},
|
|
75
86
|
{
|
|
76
87
|
Args: nil,
|
|
@@ -83,25 +94,32 @@ func TestArgs(t *testing.T) {
|
|
|
83
94
|
{
|
|
84
95
|
Args: []string{"FOO=bar", "BAR=baz"},
|
|
85
96
|
ExpectedCalls: []*ast.Call{},
|
|
86
|
-
ExpectedGlobals:
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
97
|
+
ExpectedGlobals: ast.NewVars(
|
|
98
|
+
&ast.VarElement{
|
|
99
|
+
Key: "FOO",
|
|
100
|
+
Value: ast.Var{
|
|
101
|
+
Value: "bar",
|
|
91
102
|
},
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
103
|
+
},
|
|
104
|
+
&ast.VarElement{
|
|
105
|
+
Key: "BAR",
|
|
106
|
+
Value: ast.Var{
|
|
107
|
+
Value: "baz",
|
|
108
|
+
},
|
|
109
|
+
},
|
|
110
|
+
),
|
|
95
111
|
},
|
|
96
112
|
}
|
|
97
113
|
|
|
98
114
|
for i, test := range tests {
|
|
99
115
|
t.Run(fmt.Sprintf("TestArgs%d", i+1), func(t *testing.T) {
|
|
116
|
+
t.Parallel()
|
|
117
|
+
|
|
100
118
|
calls, globals := args.Parse(test.Args...)
|
|
101
119
|
assert.Equal(t, test.ExpectedCalls, calls)
|
|
102
120
|
if test.ExpectedGlobals.Len() > 0 || globals.Len() > 0 {
|
|
103
|
-
assert.Equal(t, test.ExpectedGlobals
|
|
104
|
-
assert.Equal(t, test.ExpectedGlobals
|
|
121
|
+
assert.Equal(t, test.ExpectedGlobals, globals)
|
|
122
|
+
assert.Equal(t, test.ExpectedGlobals, globals)
|
|
105
123
|
}
|
|
106
124
|
})
|
|
107
125
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
package main
|
|
2
2
|
|
|
3
3
|
import (
|
|
4
|
-
"errors"
|
|
5
4
|
"fmt"
|
|
6
5
|
"os"
|
|
7
6
|
"os/exec"
|
|
@@ -12,6 +11,8 @@ import (
|
|
|
12
11
|
"github.com/Masterminds/semver/v3"
|
|
13
12
|
"github.com/otiai10/copy"
|
|
14
13
|
"github.com/spf13/pflag"
|
|
14
|
+
|
|
15
|
+
"github.com/go-task/task/v3/errors"
|
|
15
16
|
)
|
|
16
17
|
|
|
17
18
|
const (
|
|
@@ -159,7 +159,7 @@ func worker(
|
|
|
159
159
|
return workerDone
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
// Do some work and then return, so that the caller can decide
|
|
162
|
+
// Do some work and then return, so that the caller can decide whether to continue or not.
|
|
163
163
|
// Return true when all work is done.
|
|
164
164
|
func doSomeWork(deadline time.Time) bool {
|
|
165
165
|
if time.Now().After(deadline) {
|
|
@@ -132,8 +132,9 @@ func run() error {
|
|
|
132
132
|
Stdout: os.Stdout,
|
|
133
133
|
Stderr: os.Stderr,
|
|
134
134
|
|
|
135
|
-
OutputStyle:
|
|
136
|
-
TaskSorter:
|
|
135
|
+
OutputStyle: flags.Output,
|
|
136
|
+
TaskSorter: taskSorter,
|
|
137
|
+
EnableVersionCheck: true,
|
|
137
138
|
}
|
|
138
139
|
listOptions := task.NewListOptions(flags.List, flags.ListAll, flags.ListJson, flags.NoStatus)
|
|
139
140
|
if err := listOptions.Validate(); err != nil {
|
|
@@ -4,13 +4,15 @@ go 1.22.0
|
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
6
|
github.com/Ladicle/tabwriter v1.0.0
|
|
7
|
-
github.com/Masterminds/semver/v3 v3.3.
|
|
7
|
+
github.com/Masterminds/semver/v3 v3.3.1
|
|
8
8
|
github.com/alecthomas/chroma/v2 v2.14.0
|
|
9
|
+
github.com/chainguard-dev/git-urls v1.0.2
|
|
9
10
|
github.com/davecgh/go-spew v1.1.1
|
|
10
11
|
github.com/dominikbraun/graph v0.23.0
|
|
12
|
+
github.com/elliotchance/orderedmap/v2 v2.7.0
|
|
11
13
|
github.com/fatih/color v1.18.0
|
|
12
|
-
github.com/go-git/go-billy/v5 v5.6.
|
|
13
|
-
github.com/go-git/go-git/v5 v5.
|
|
14
|
+
github.com/go-git/go-billy/v5 v5.6.1
|
|
15
|
+
github.com/go-git/go-git/v5 v5.13.1
|
|
14
16
|
github.com/go-task/slim-sprig/v3 v3.0.0
|
|
15
17
|
github.com/go-task/template v0.1.0
|
|
16
18
|
github.com/joho/godotenv v1.5.1
|
|
@@ -20,11 +22,10 @@ require (
|
|
|
20
22
|
github.com/radovskyb/watcher v1.0.7
|
|
21
23
|
github.com/sajari/fuzzy v1.0.0
|
|
22
24
|
github.com/spf13/pflag v1.0.5
|
|
23
|
-
github.com/stretchr/testify v1.
|
|
24
|
-
github.com/whilp/git-urls v1.0.0
|
|
25
|
+
github.com/stretchr/testify v1.10.0
|
|
25
26
|
github.com/zeebo/xxh3 v1.0.2
|
|
26
|
-
golang.org/x/sync v0.
|
|
27
|
-
golang.org/x/term v0.
|
|
27
|
+
golang.org/x/sync v0.10.0
|
|
28
|
+
golang.org/x/term v0.27.0
|
|
28
29
|
gopkg.in/yaml.v3 v3.0.1
|
|
29
30
|
mvdan.cc/sh/v3 v3.10.0
|
|
30
31
|
)
|
|
@@ -32,9 +33,9 @@ require (
|
|
|
32
33
|
require (
|
|
33
34
|
dario.cat/mergo v1.0.0 // indirect
|
|
34
35
|
github.com/Microsoft/go-winio v0.6.1 // indirect
|
|
35
|
-
github.com/ProtonMail/go-crypto v1.
|
|
36
|
+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
|
|
36
37
|
github.com/cloudflare/circl v1.3.7 // indirect
|
|
37
|
-
github.com/cyphar/filepath-securejoin v0.
|
|
38
|
+
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
|
|
38
39
|
github.com/dlclark/regexp2 v1.11.0 // indirect
|
|
39
40
|
github.com/emirpasic/gods v1.18.1 // indirect
|
|
40
41
|
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
|
|
@@ -48,13 +49,13 @@ require (
|
|
|
48
49
|
github.com/pjbgf/sha1cd v0.3.0 // indirect
|
|
49
50
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
50
51
|
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
|
|
51
|
-
github.com/skeema/knownhosts v1.
|
|
52
|
+
github.com/skeema/knownhosts v1.3.0 // indirect
|
|
52
53
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
53
54
|
github.com/xanzy/ssh-agent v0.3.3 // indirect
|
|
54
|
-
golang.org/x/crypto v0.
|
|
55
|
+
golang.org/x/crypto v0.31.0 // indirect
|
|
55
56
|
golang.org/x/mod v0.18.0 // indirect
|
|
56
|
-
golang.org/x/net v0.
|
|
57
|
-
golang.org/x/sys v0.
|
|
57
|
+
golang.org/x/net v0.33.0 // indirect
|
|
58
|
+
golang.org/x/sys v0.28.0 // indirect
|
|
58
59
|
golang.org/x/tools v0.22.0 // indirect
|
|
59
60
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
60
61
|
)
|