go-task-bin 3.33.0__tar.gz → 3.34.1__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.

Files changed (651) hide show
  1. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/PKG-INFO +1 -1
  2. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/pdm_build.py +1 -1
  3. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/pyproject.toml +1 -1
  4. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/issue-experiment.yml +7 -7
  5. go_task_bin-3.34.1/task/.github/workflows/lint.yml +39 -0
  6. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/upload-source-documents.yml +1 -1
  7. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/CHANGELOG.md +44 -1
  8. go_task_bin-3.34.1/task/args/args.go +30 -0
  9. go_task_bin-3.34.1/task/args/args_test.go +108 -0
  10. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/cmd/release/main.go +1 -1
  11. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/cmd/task/task.go +10 -14
  12. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/completion/zsh/_task +1 -1
  13. go_task_bin-3.33.0/task/docs/docs/api_reference.mdx → go_task_bin-3.34.1/task/docs/docs/api_reference.md +3 -2
  14. go_task_bin-3.33.0/task/docs/docs/changelog.mdx → go_task_bin-3.34.1/task/docs/docs/changelog.md +44 -1
  15. go_task_bin-3.33.0/task/docs/docs/deprecations/template.mdx → go_task_bin-3.34.1/task/docs/docs/deprecations/template.md +9 -4
  16. go_task_bin-3.34.1/task/docs/docs/deprecations/version_2_schema.md +33 -0
  17. go_task_bin-3.33.0/task/docs/docs/donate.mdx → go_task_bin-3.34.1/task/docs/docs/donate.md +2 -3
  18. go_task_bin-3.34.1/task/docs/docs/experiments/any_variables.mdx +346 -0
  19. go_task_bin-3.34.1/task/docs/docs/experiments/experiments.md +131 -0
  20. go_task_bin-3.33.0/task/docs/docs/experiments/gentle_force.mdx → go_task_bin-3.34.1/task/docs/docs/experiments/gentle_force.md +28 -5
  21. go_task_bin-3.33.0/task/docs/docs/experiments/remote_taskfiles.mdx → go_task_bin-3.34.1/task/docs/docs/experiments/remote_taskfiles.md +17 -3
  22. go_task_bin-3.34.1/task/docs/docs/experiments/template.md +42 -0
  23. go_task_bin-3.33.0/task/docs/docs/styleguide.mdx → go_task_bin-3.34.1/task/docs/docs/styleguide.md +0 -15
  24. go_task_bin-3.33.0/task/docs/docs/taskfile_versions.mdx → go_task_bin-3.34.1/task/docs/docs/taskfile_versions.md +9 -9
  25. go_task_bin-3.33.0/task/docs/docs/usage.mdx → go_task_bin-3.34.1/task/docs/docs/usage.md +17 -6
  26. {go_task_bin-3.33.0/task/docs/i18n/pt-BR → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  27. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  28. go_task_bin-3.34.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  29. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/community.md +2 -2
  30. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  31. go_task_bin-3.34.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  32. go_task_bin-3.34.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  33. go_task_bin-3.34.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  34. {go_task_bin-3.33.0/task/docs/docs → go_task_bin-3.34.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current}/experiments/any_variables.mdx +69 -12
  35. {go_task_bin-3.33.0/task/docs/i18n/ja-JP → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  36. {go_task_bin-3.33.0/task/docs/i18n/fr-FR → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  37. {go_task_bin-3.33.0/task/docs/i18n/fr-FR → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  38. go_task_bin-3.34.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  39. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/faq.md +1 -1
  40. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  41. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/intro.md +3 -3
  42. {go_task_bin-3.33.0/task/docs/i18n/tr-TR → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  43. {go_task_bin-3.33.0/task/docs/i18n/tr-TR → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  44. {go_task_bin-3.33.0/task/docs/i18n/fr-FR → go_task_bin-3.34.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/usage.md +1 -1
  45. {go_task_bin-3.33.0/task/docs/i18n/ja-JP → go_task_bin-3.34.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  46. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  47. go_task_bin-3.34.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  48. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/community.md +2 -2
  49. {go_task_bin-3.33.0/task/docs/i18n/pt-BR → go_task_bin-3.34.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  50. go_task_bin-3.34.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  51. go_task_bin-3.34.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  52. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/donate.md +1 -1
  53. go_task_bin-3.34.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  54. go_task_bin-3.34.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  55. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  56. {go_task_bin-3.33.0/task/docs/i18n/pt-BR → go_task_bin-3.34.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  57. {go_task_bin-3.33.0/task/docs/i18n/ja-JP → go_task_bin-3.34.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  58. go_task_bin-3.34.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  59. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/faq.md +1 -1
  60. {go_task_bin-3.33.0/task/docs/i18n/pt-BR → go_task_bin-3.34.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  61. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/intro.md +3 -3
  62. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  63. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/taskfile_versions.md +11 -11
  64. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/usage.md +1 -1
  65. {go_task_bin-3.33.0/task/docs/i18n/fr-FR → go_task_bin-3.34.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  66. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md +53 -52
  67. go_task_bin-3.34.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  68. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/community.md +2 -2
  69. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  70. go_task_bin-3.34.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  71. go_task_bin-3.34.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  72. go_task_bin-3.34.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  73. go_task_bin-3.34.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  74. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  75. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  76. {go_task_bin-3.33.0/task/docs/i18n/pt-BR → go_task_bin-3.34.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  77. go_task_bin-3.34.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  78. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq.md +1 -1
  79. {go_task_bin-3.33.0/task/docs/i18n/fr-FR → go_task_bin-3.34.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  80. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/intro.md +3 -3
  81. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  82. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  83. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/usage.md +5 -5
  84. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  85. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  86. go_task_bin-3.34.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  87. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/community.md +2 -2
  88. {go_task_bin-3.33.0/task/docs/i18n/tr-TR → go_task_bin-3.34.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  89. go_task_bin-3.34.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  90. go_task_bin-3.34.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  91. go_task_bin-3.34.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  92. go_task_bin-3.34.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  93. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  94. {go_task_bin-3.33.0/task/docs/i18n/ja-JP → go_task_bin-3.34.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  95. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  96. go_task_bin-3.34.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  97. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/faq.md +1 -1
  98. {go_task_bin-3.33.0/task/docs/i18n/ja-JP → go_task_bin-3.34.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  99. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md +3 -3
  100. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  101. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  102. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/usage.md +1 -1
  103. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  104. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  105. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  106. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/community.md +2 -2
  107. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  108. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  109. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  110. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  111. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  112. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  113. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +36 -0
  114. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +66 -0
  115. go_task_bin-3.34.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  116. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/faq.md +1 -1
  117. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  118. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/intro.md +3 -3
  119. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  120. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md +11 -11
  121. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/usage.md +1 -1
  122. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  123. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  124. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  125. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/community.md +2 -2
  126. {go_task_bin-3.33.0/task/docs/i18n/fr-FR → go_task_bin-3.34.1/task/docs/i18n/tr-TR}/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  127. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  128. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  129. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  130. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  131. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  132. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +36 -0
  133. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +66 -0
  134. go_task_bin-3.34.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  135. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/faq.md +1 -1
  136. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  137. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/intro.md +3 -3
  138. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/tr-TR}/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  139. {go_task_bin-3.33.0/task/docs/i18n/es-ES → go_task_bin-3.34.1/task/docs/i18n/tr-TR}/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  140. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/usage.md +1 -1
  141. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  142. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  143. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  144. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community.md +2 -2
  145. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  146. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  147. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  148. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  149. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  150. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/experiments.md +79 -0
  151. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +36 -0
  152. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +66 -0
  153. go_task_bin-3.34.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  154. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/faq.md +1 -1
  155. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  156. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/intro.md +3 -3
  157. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  158. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md +11 -11
  159. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage.md +1 -1
  160. go_task_bin-3.34.1/task/docs/static/js/carbon.js +31 -0
  161. go_task_bin-3.34.1/task/docs/static/schema.json +665 -0
  162. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/yarn.lock +3 -3
  163. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/errors/errors.go +1 -1
  164. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/errors/errors_taskfile.go +29 -16
  165. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/go.mod +5 -5
  166. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/go.sum +8 -8
  167. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/hash.go +2 -2
  168. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/help.go +3 -3
  169. go_task_bin-3.33.0/task/internal/compiler/v3/compiler_v3.go → go_task_bin-3.34.1/task/internal/compiler/compiler.go +57 -30
  170. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/compiler/env.go +5 -5
  171. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/env/env.go +2 -2
  172. go_task_bin-3.34.1/task/internal/experiments/experiments.go +106 -0
  173. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/checker.go +5 -5
  174. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/glob.go +2 -2
  175. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/sources_checksum.go +6 -6
  176. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/sources_none.go +4 -4
  177. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/sources_timestamp.go +5 -5
  178. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/status.go +2 -2
  179. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/task.go +2 -2
  180. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/task_test.go +17 -17
  181. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/hash/hash.go +5 -5
  182. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/mocks/sources_checkable.go +24 -23
  183. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/mocks/status_checkable.go +10 -10
  184. {go_task_bin-3.33.0/task/internal/orderedmap → go_task_bin-3.34.1/task/internal/omap}/orderedmap.go +2 -2
  185. {go_task_bin-3.33.0/task/internal/orderedmap → go_task_bin-3.34.1/task/internal/omap}/orderedmap_test.go +9 -3
  186. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/output/output.go +4 -4
  187. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/output/output_test.go +4 -4
  188. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/sort/sorter.go +5 -5
  189. go_task_bin-3.34.1/task/internal/sort/sorter_test.go +77 -0
  190. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/summary/summary.go +12 -12
  191. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/summary/summary_test.go +22 -22
  192. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/templater/funcs.go +20 -0
  193. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/templater/templater.go +15 -16
  194. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/package-lock.json +1 -1
  195. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/package.json +1 -1
  196. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/precondition.go +2 -2
  197. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/requires.go +2 -2
  198. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/setup.go +41 -122
  199. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/status.go +3 -3
  200. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/task.go +25 -26
  201. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/task_test.go +141 -219
  202. go_task_bin-3.34.1/task/taskfile/ast/call.go +9 -0
  203. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/cmd.go +1 -1
  204. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/dep.go +4 -3
  205. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/for.go +1 -1
  206. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/glob.go +1 -1
  207. go_task_bin-3.33.0/task/taskfile/included_taskfile.go → go_task_bin-3.34.1/task/taskfile/ast/include.go +47 -61
  208. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/location.go +1 -1
  209. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/output.go +1 -1
  210. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/platforms.go +1 -1
  211. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/platforms_test.go +1 -1
  212. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/precondition.go +1 -1
  213. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/precondition_test.go +10 -10
  214. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/requires.go +1 -1
  215. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/task.go +2 -2
  216. go_task_bin-3.34.1/task/taskfile/ast/taskfile.go +98 -0
  217. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/taskfile_test.go +24 -24
  218. go_task_bin-3.34.1/task/taskfile/ast/tasks.go +116 -0
  219. {go_task_bin-3.33.0/task/taskfile → go_task_bin-3.34.1/task/taskfile/ast}/var.go +56 -13
  220. {go_task_bin-3.33.0/task/taskfile/read → go_task_bin-3.34.1/task/taskfile}/cache.go +1 -1
  221. {go_task_bin-3.33.0/task/taskfile/read → go_task_bin-3.34.1/task/taskfile}/dotenv.go +6 -6
  222. {go_task_bin-3.33.0/task/taskfile/read → go_task_bin-3.34.1/task/taskfile}/node.go +2 -2
  223. {go_task_bin-3.33.0/task/taskfile/read → go_task_bin-3.34.1/task/taskfile}/node_base.go +1 -1
  224. {go_task_bin-3.33.0/task/taskfile/read → go_task_bin-3.34.1/task/taskfile}/node_file.go +1 -1
  225. {go_task_bin-3.33.0/task/taskfile/read → go_task_bin-3.34.1/task/taskfile}/node_http.go +1 -1
  226. go_task_bin-3.34.1/task/taskfile/reader.go +291 -0
  227. go_task_bin-3.34.1/task/taskfile/taskfile.go +85 -0
  228. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/concurrency/Taskfile.yml +1 -1
  229. go_task_bin-3.34.1/task/testdata/special_vars/Taskfile.yml +12 -0
  230. go_task_bin-3.34.1/task/testdata/special_vars/included/Taskfile.yml +7 -0
  231. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/vars/any/Taskfile.yml +30 -2
  232. go_task_bin-3.34.1/task/testdata/vars/any2/Taskfile.yml +91 -0
  233. go_task_bin-3.34.1/task/testdata/vars/any2/example.json +18 -0
  234. go_task_bin-3.34.1/task/testdata/vars/any2/example.yaml +9 -0
  235. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/version/v1/Taskfile.yml +1 -1
  236. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/version/v2/Taskfile.yml +1 -1
  237. go_task_bin-3.34.1/task/testdata/version/v3/Taskfile.yml +9 -0
  238. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/variables.go +71 -53
  239. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/watch.go +7 -7
  240. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/watch_test.go +2 -2
  241. go_task_bin-3.33.0/task/.github/workflows/lint.yml +0 -24
  242. go_task_bin-3.33.0/task/args/args.go +0 -56
  243. go_task_bin-3.33.0/task/args/args_test.go +0 -219
  244. go_task_bin-3.33.0/task/docs/docs/deprecations/version_2_schema.mdx +0 -26
  245. go_task_bin-3.33.0/task/docs/docs/experiments/experiments.mdx +0 -127
  246. go_task_bin-3.33.0/task/docs/docs/experiments/template.mdx +0 -20
  247. go_task_bin-3.33.0/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  248. go_task_bin-3.33.0/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  249. go_task_bin-3.33.0/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  250. go_task_bin-3.33.0/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  251. go_task_bin-3.33.0/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  252. go_task_bin-3.33.0/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  253. go_task_bin-3.33.0/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  254. go_task_bin-3.33.0/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  255. go_task_bin-3.33.0/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  256. go_task_bin-3.33.0/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  257. go_task_bin-3.33.0/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  258. go_task_bin-3.33.0/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  259. go_task_bin-3.33.0/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  260. go_task_bin-3.33.0/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  261. go_task_bin-3.33.0/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  262. go_task_bin-3.33.0/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  263. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +0 -93
  264. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  265. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  266. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  267. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +0 -21
  268. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +0 -57
  269. go_task_bin-3.33.0/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  270. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +0 -93
  271. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  272. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  273. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  274. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +0 -21
  275. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +0 -57
  276. go_task_bin-3.33.0/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  277. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +0 -93
  278. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  279. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  280. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  281. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/experiments.md +0 -78
  282. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +0 -21
  283. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +0 -57
  284. go_task_bin-3.33.0/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  285. go_task_bin-3.33.0/task/docs/static/js/carbon.js +0 -29
  286. go_task_bin-3.33.0/task/docs/static/schema.json +0 -649
  287. go_task_bin-3.33.0/task/internal/compiler/compiler.go +0 -15
  288. go_task_bin-3.33.0/task/internal/compiler/v2/compiler_v2.go +0 -138
  289. go_task_bin-3.33.0/task/internal/experiments/experiments.go +0 -58
  290. go_task_bin-3.33.0/task/internal/sort/sorter_test.go +0 -77
  291. go_task_bin-3.33.0/task/taskfile/call.go +0 -9
  292. go_task_bin-3.33.0/task/taskfile/merge.go +0 -80
  293. go_task_bin-3.33.0/task/taskfile/read/taskfile.go +0 -396
  294. go_task_bin-3.33.0/task/taskfile/read/taskvars.go +0 -45
  295. go_task_bin-3.33.0/task/taskfile/taskfile.go +0 -89
  296. go_task_bin-3.33.0/task/taskfile/tasks.go +0 -54
  297. go_task_bin-3.33.0/task/testdata/incorrect_includes/Taskfile.yml +0 -10
  298. go_task_bin-3.33.0/task/testdata/incorrect_includes/included/Taskfile.yml +0 -6
  299. go_task_bin-3.33.0/task/testdata/special_vars/Taskfile.yml +0 -19
  300. go_task_bin-3.33.0/task/testdata/special_vars/included/Taskfile.yml +0 -9
  301. go_task_bin-3.33.0/task/testdata/vars/v2/Taskfile.yml +0 -58
  302. go_task_bin-3.33.0/task/testdata/vars/v2/Taskvars.yml +0 -14
  303. go_task_bin-3.33.0/task/testdata/vars/v2/multiline/Taskfile.yml +0 -45
  304. go_task_bin-3.33.0/task/testdata/vars/v3/.gitignore +0 -1
  305. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/LICENSE +0 -0
  306. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/README.md +0 -0
  307. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/go_task_bin/__init__.py +0 -0
  308. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.editorconfig +0 -0
  309. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.git +0 -0
  310. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.gitattributes +0 -0
  311. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/CODE_OF_CONDUCT.md +0 -0
  312. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/CONTRIBUTING.md +0 -0
  313. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/FUNDING.yml +0 -0
  314. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  315. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/ISSUE_TEMPLATE/config.yml +0 -0
  316. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  317. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/dependabot.yml +0 -0
  318. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/pull_request_template.md +0 -0
  319. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/issue-awaiting-response.yml +0 -0
  320. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/issue-closed.yml +0 -0
  321. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/issue-needs-triage.yml +0 -0
  322. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/release.yml +0 -0
  323. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/sync-translated-documents.yml +0 -0
  324. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.github/workflows/test.yml +0 -0
  325. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.gitignore +0 -0
  326. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.golangci.yml +0 -0
  327. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.goreleaser.yml +0 -0
  328. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.mockery.yaml +0 -0
  329. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.nvmrc +0 -0
  330. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.prettierrc.yml +0 -0
  331. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/.vscode/settings-sample.json +0 -0
  332. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/LICENSE +0 -0
  333. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/README.md +0 -0
  334. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/Taskfile.yml +0 -0
  335. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/bin/.keep +0 -0
  336. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/cmd/sleepit/sleepit.go +0 -0
  337. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/completion/bash/task.bash +0 -0
  338. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/completion/fish/task.fish +0 -0
  339. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/completion/ps/task.ps1 +0 -0
  340. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/concurrency.go +0 -0
  341. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/.gitignore +0 -0
  342. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/.nojekyll +0 -0
  343. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/Taskfile.yml +0 -0
  344. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/babel.config.ts +0 -0
  345. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/blog/2023-09-02-introducing-experiments.md +0 -0
  346. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/blog/authors.yml +0 -0
  347. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/constants.ts +0 -0
  348. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/crowdin.yml +0 -0
  349. /go_task_bin-3.33.0/task/docs/docs/community.mdx → /go_task_bin-3.34.1/task/docs/docs/community.md +0 -0
  350. /go_task_bin-3.33.0/task/docs/docs/contributing.mdx → /go_task_bin-3.34.1/task/docs/docs/contributing.md +0 -0
  351. /go_task_bin-3.33.0/task/docs/docs/deprecations/deprecations.mdx → /go_task_bin-3.34.1/task/docs/docs/deprecations/deprecations.md +0 -0
  352. /go_task_bin-3.33.0/task/docs/docs/faq.mdx → /go_task_bin-3.34.1/task/docs/docs/faq.md +0 -0
  353. /go_task_bin-3.33.0/task/docs/docs/installation.mdx → /go_task_bin-3.34.1/task/docs/docs/installation.md +0 -0
  354. /go_task_bin-3.33.0/task/docs/docs/integrations.mdx → /go_task_bin-3.34.1/task/docs/docs/integrations.md +0 -0
  355. /go_task_bin-3.33.0/task/docs/docs/intro.mdx → /go_task_bin-3.34.1/task/docs/docs/intro.md +0 -0
  356. /go_task_bin-3.33.0/task/docs/docs/releasing.mdx → /go_task_bin-3.34.1/task/docs/docs/releasing.md +0 -0
  357. /go_task_bin-3.33.0/task/docs/docs/translate.mdx → /go_task_bin-3.34.1/task/docs/docs/translate.md +0 -0
  358. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/docusaurus.config.ts +0 -0
  359. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/en/code.json +0 -0
  360. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/en/docusaurus-plugin-content-docs/current.json +0 -0
  361. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/en/docusaurus-theme-classic/footer.json +0 -0
  362. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/en/docusaurus-theme-classic/navbar.json +0 -0
  363. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/code.json +0 -0
  364. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-blog/authors.yml +0 -0
  365. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  366. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/donate.md +0 -0
  367. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  368. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md +0 -0
  369. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  370. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/translate.md +0 -0
  371. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current.json +0 -0
  372. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-theme-classic/footer.json +0 -0
  373. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/es-ES/docusaurus-theme-classic/navbar.json +0 -0
  374. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/code.json +0 -0
  375. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-blog/authors.yml +0 -0
  376. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  377. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  378. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md +0 -0
  379. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  380. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/translate.md +0 -0
  381. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current.json +0 -0
  382. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-theme-classic/footer.json +0 -0
  383. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/fr-FR/docusaurus-theme-classic/navbar.json +0 -0
  384. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/code.json +0 -0
  385. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-blog/authors.yml +0 -0
  386. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  387. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/donate.md +0 -0
  388. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  389. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md +0 -0
  390. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  391. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/translate.md +0 -0
  392. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current.json +0 -0
  393. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-theme-classic/footer.json +0 -0
  394. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ja-JP/docusaurus-theme-classic/navbar.json +0 -0
  395. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/code.json +0 -0
  396. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-blog/authors.yml +0 -0
  397. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  398. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/donate.md +0 -0
  399. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  400. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md +0 -0
  401. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  402. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/translate.md +0 -0
  403. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json +0 -0
  404. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json +0 -0
  405. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json +0 -0
  406. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/code.json +0 -0
  407. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/authors.yml +0 -0
  408. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  409. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/donate.md +0 -0
  410. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  411. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md +0 -0
  412. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  413. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/translate.md +0 -0
  414. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current.json +0 -0
  415. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-theme-classic/footer.json +0 -0
  416. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/ru-RU/docusaurus-theme-classic/navbar.json +0 -0
  417. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/code.json +0 -0
  418. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/authors.yml +0 -0
  419. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  420. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/donate.md +0 -0
  421. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  422. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md +0 -0
  423. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  424. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/translate.md +0 -0
  425. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current.json +0 -0
  426. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-theme-classic/footer.json +0 -0
  427. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/tr-TR/docusaurus-theme-classic/navbar.json +0 -0
  428. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/code.json +0 -0
  429. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/authors.yml +0 -0
  430. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  431. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/donate.md +0 -0
  432. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  433. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md +0 -0
  434. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  435. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/translate.md +0 -0
  436. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current.json +0 -0
  437. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-theme-classic/footer.json +0 -0
  438. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/i18n/zh-Hans/docusaurus-theme-classic/navbar.json +0 -0
  439. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/package.json +0 -0
  440. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/prettier.config.js +0 -0
  441. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/sidebars.ts +0 -0
  442. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/api/crowdin.js +0 -0
  443. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/components/.keep +0 -0
  444. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/css/carbon.css +0 -0
  445. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/css/custom.css +0 -0
  446. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/pages/.keep +0 -0
  447. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/themes/prismDark.js +0 -0
  448. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/src/themes/prismLight.js +0 -0
  449. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/.nojekyll +0 -0
  450. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/CNAME +0 -0
  451. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/appwrite.svg +0 -0
  452. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/favicon.ico +0 -0
  453. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/logo.png +0 -0
  454. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/logo.svg +0 -0
  455. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/logo_mono.svg +0 -0
  456. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/og-image.png +0 -0
  457. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/img/pix.png +0 -0
  458. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/static/install.sh +0 -0
  459. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/docs/tsconfig.json +0 -0
  460. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/errors/errors_task.go +0 -0
  461. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/init.go +0 -0
  462. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/install-task.sh +0 -0
  463. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/deepcopy/deepcopy.go +0 -0
  464. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/editors/output.go +0 -0
  465. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/execext/devnull.go +0 -0
  466. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/execext/exec.go +0 -0
  467. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/filepathext/filepathext.go +0 -0
  468. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/sources.go +0 -0
  469. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/fingerprint/sources_checksum_test.go +0 -0
  470. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/goext/meta.go +0 -0
  471. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/logger/logger.go +0 -0
  472. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/output/group.go +0 -0
  473. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/output/interleaved.go +0 -0
  474. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/output/prefixed.go +0 -0
  475. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/slicesext/slicesext.go +0 -0
  476. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/sysinfo/uid.go +0 -0
  477. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/sysinfo/uid_win.go +0 -0
  478. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/term/term.go +0 -0
  479. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/internal/version/version.go +0 -0
  480. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/signals.go +0 -0
  481. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/signals_test.go +0 -0
  482. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/alias/Taskfile.yml +0 -0
  483. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/alias/Taskfile2.yml +0 -0
  484. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/alias/alias-summary.txt +0 -0
  485. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/alias/alias.txt +0 -0
  486. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/checksum/.gitignore +0 -0
  487. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/checksum/Taskfile.yml +0 -0
  488. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/checksum/ignore_me.txt +0 -0
  489. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/checksum/source.txt +0 -0
  490. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/cyclic/Taskfile.yml +0 -0
  491. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/deferred/Taskfile.yml +0 -0
  492. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/deps/.gitignore +0 -0
  493. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/deps/Taskfile.yml +0 -0
  494. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/Taskfile.yml +0 -0
  495. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/dynamic_var/.gitignore +0 -0
  496. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/dynamic_var/Taskfile.yml +0 -0
  497. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/dynamic_var/subdirectory/Taskfile.yml +0 -0
  498. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/dynamic_var_on_created_dir/Taskfile.yml +0 -0
  499. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/explicit_doesnt_exist/Taskfile.yml +0 -0
  500. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/explicit_exists/Taskfile.yml +0 -0
  501. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dir/explicit_exists/exists/.keep +0 -0
  502. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/.gitignore +0 -0
  503. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/default/Taskfile.yml +0 -0
  504. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/env_var_in_path/.env.testing +0 -0
  505. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/env_var_in_path/Taskfile.yml +0 -0
  506. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/error_included_envs/Taskfile.yml +0 -0
  507. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/include1/.env +0 -0
  508. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/include1/Taskfile.yml +0 -0
  509. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/include1/envs/.env +0 -0
  510. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/local_env_in_path/.env.testing +0 -0
  511. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/local_env_in_path/Taskfile.yml +0 -0
  512. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/local_var_in_path/.env.testing +0 -0
  513. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/local_var_in_path/Taskfile.yml +0 -0
  514. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv/missing_env/Taskfile.yml +0 -0
  515. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv_task/default/.env +0 -0
  516. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv_task/default/.gitignore +0 -0
  517. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dotenv_task/default/Taskfile.yml +0 -0
  518. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dry/Taskfile.yml +0 -0
  519. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dry_checksum/Taskfile.yml +0 -0
  520. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/dry_checksum/source.txt +0 -0
  521. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/empty_task/Taskfile.yml +0 -0
  522. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/env/.gitignore +0 -0
  523. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/env/Taskfile.yml +0 -0
  524. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/error_code/Taskfile.yml +0 -0
  525. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +0 -0
  526. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/evaluate_symlinks_in_paths/shared/b +0 -0
  527. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/evaluate_symlinks_in_paths/shared/inner_shared/c +0 -0
  528. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/evaluate_symlinks_in_paths/src/a +0 -0
  529. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/exit_immediately/Taskfile.yml +0 -0
  530. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/expand/Taskfile.yml +0 -0
  531. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/file_names/.gitignore +0 -0
  532. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/file_names/Taskfile.dist.yaml/Taskfile.dist.yaml +0 -0
  533. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/file_names/Taskfile.dist.yml/Taskfile.dist.yml +0 -0
  534. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/file_names/Taskfile.yaml/Taskfile.yaml +0 -0
  535. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/file_names/Taskfile.yml/Taskfile.yml +0 -0
  536. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/for/Taskfile.yml +0 -0
  537. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/for/bar.txt +0 -0
  538. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/for/foo.txt +0 -0
  539. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/force/Taskfile.yml +0 -0
  540. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/generates/.gitignore +0 -0
  541. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/generates/Taskfile.yml +0 -0
  542. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/generates/sub/.keep +0 -0
  543. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_errors/Taskfile.yml +0 -0
  544. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_nil_elements/cmds/Taskfile.yml +0 -0
  545. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_nil_elements/deps/Taskfile.yml +0 -0
  546. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_nil_elements/includes/Taskfile.yml +0 -0
  547. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_nil_elements/includes/inc.yml +0 -0
  548. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_nil_elements/preconditions/Taskfile.yml +0 -0
  549. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/ignore_signals/Taskfile.yml +0 -0
  550. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/include_with_vars/Taskfile.yml +0 -0
  551. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/include_with_vars/include/Taskfile.include.yml +0 -0
  552. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/include_with_vars_multi_level/Taskfile.yml +0 -0
  553. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/include_with_vars_multi_level/bar/Taskfile.yml +0 -0
  554. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/include_with_vars_multi_level/foo/Taskfile.yml +0 -0
  555. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/include_with_vars_multi_level/lib/Taskfile.yml +0 -0
  556. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/.gitignore +0 -0
  557. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/Taskfile.yml +0 -0
  558. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/Taskfile2.yml +0 -0
  559. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/Taskfile_darwin.yml +0 -0
  560. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/Taskfile_linux.yml +0 -0
  561. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/Taskfile_windows.yml +0 -0
  562. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/included/Taskfile.yml +0 -0
  563. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/module1/Taskfile.yml +0 -0
  564. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes/module2/Taskfile.yml +0 -0
  565. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_call_root_task/.gitignore +0 -0
  566. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_call_root_task/Taskfile.yml +0 -0
  567. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_call_root_task/Taskfile2.yml +0 -0
  568. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_cycle/Taskfile.yml +0 -0
  569. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_cycle/one/Taskfile.yml +0 -0
  570. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_cycle/one/two/Taskfile.yml +0 -0
  571. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_deps/.gitignore +0 -0
  572. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_deps/Taskfile.yml +0 -0
  573. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_deps/Taskfile2.yml +0 -0
  574. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_empty/.gitignore +0 -0
  575. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_empty/Taskfile.yml +0 -0
  576. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_empty/Taskfile2.yml +0 -0
  577. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_incorrect/Taskfile.yml +0 -0
  578. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_incorrect/incomplete.yml +0 -0
  579. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_internal/Taskfile.yml +0 -0
  580. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_internal/Taskfile2.yml +0 -0
  581. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_interpolation/Taskfile.yml +0 -0
  582. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_interpolation/included/Taskfile.yml +0 -0
  583. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/Taskfile.yml +0 -0
  584. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/called_one.txt +0 -0
  585. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/called_three.txt +0 -0
  586. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/called_two.txt +0 -0
  587. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/one/Taskfile.yml +0 -0
  588. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/one/two/Taskfile.yml +0 -0
  589. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_multi_level/one/two/three/Taskfile.yml +0 -0
  590. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_optional/.gitignore +0 -0
  591. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_optional/Taskfile.yml +0 -0
  592. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_optional_explicit_false/Taskfile.yml +0 -0
  593. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_optional_implicit_false/Taskfile.yml +0 -0
  594. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_rel_path/Taskfile.yml +0 -0
  595. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_rel_path/common/Taskfile.yml +0 -0
  596. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_rel_path/included/Taskfile.yml +0 -0
  597. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_shadowed_default/Taskfile.yml +0 -0
  598. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_shadowed_default/Taskfile2.yml +0 -0
  599. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_shadowed_default/file.txt +0 -0
  600. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_unshadowed_default/Taskfile.yml +0 -0
  601. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_unshadowed_default/Taskfile2.yml +0 -0
  602. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_unshadowed_default/file.txt +0 -0
  603. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_yaml/.gitignore +0 -0
  604. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_yaml/Custom.ext +0 -0
  605. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_yaml/included/Taskfile.yaml +0 -0
  606. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/includes_yaml/included/custom.yaml +0 -0
  607. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/init/.gitignore +0 -0
  608. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/internal_task/Taskfile.yml +0 -0
  609. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/label_list/Taskfile.yml +0 -0
  610. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/label_status/Taskfile.yml +0 -0
  611. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/label_summary/Taskfile.yml +0 -0
  612. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/label_uptodate/Taskfile.yml +0 -0
  613. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/label_var/Taskfile.yml +0 -0
  614. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/list_desc_interpolation/Taskfile.yml +0 -0
  615. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/list_mixed_desc/Taskfile.yml +0 -0
  616. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/output_group/Taskfile.yml +0 -0
  617. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/output_group_error_only/Taskfile.yml +0 -0
  618. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/params/.gitignore +0 -0
  619. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/params/Taskfile.yml +0 -0
  620. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/platforms/Taskfile.yml +0 -0
  621. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/precondition/Taskfile.yml +0 -0
  622. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/precondition/foo.txt +0 -0
  623. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/prompt/Taskfile.yml +0 -0
  624. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/run/.gitignore +0 -0
  625. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/run/Taskfile.yml +0 -0
  626. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/shopts/command_level/Taskfile.yml +0 -0
  627. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/shopts/global_level/Taskfile.yml +0 -0
  628. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/shopts/task_level/Taskfile.yml +0 -0
  629. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/short_task_notation/Taskfile.yml +0 -0
  630. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/silent/Taskfile.yml +0 -0
  631. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/single_cmd_dep/.gitignore +0 -0
  632. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/single_cmd_dep/Taskfile.yml +0 -0
  633. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/split_args/Taskfile.yml +0 -0
  634. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/status/.gitignore +0 -0
  635. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/status/Taskfile.yml +0 -0
  636. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/status_vars/.gitignore +0 -0
  637. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/status_vars/Taskfile.yml +0 -0
  638. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/status_vars/source.txt +0 -0
  639. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/summary/Taskfile.yml +0 -0
  640. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/summary/task-with-summary.txt +0 -0
  641. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/taskfile_walk/Taskfile.yml +0 -0
  642. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/taskfile_walk/foo/bar/.gitkeep +0 -0
  643. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/user_working_dir/Taskfile.yml +0 -0
  644. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/user_working_dir_with_includes/Taskfile.yml +0 -0
  645. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/user_working_dir_with_includes/included/Taskfile.yml +0 -0
  646. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/user_working_dir_with_includes/somedir/.keep +0 -0
  647. {go_task_bin-3.33.0/task/testdata/vars/v3 → go_task_bin-3.34.1/task/testdata/vars}/.env +0 -0
  648. {go_task_bin-3.33.0/task/testdata/vars/v2 → go_task_bin-3.34.1/task/testdata/vars}/.gitignore +0 -0
  649. {go_task_bin-3.33.0/task/testdata/vars/v3 → go_task_bin-3.34.1/task/testdata/vars}/Taskfile.yml +0 -0
  650. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/watcher_interval/.gitignore +0 -0
  651. {go_task_bin-3.33.0 → go_task_bin-3.34.1}/task/testdata/watcher_interval/Taskfile.yaml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: go-task-bin
3
- Version: 3.33.0
3
+ Version: 3.34.1
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>
@@ -5,7 +5,7 @@ import sys
5
5
  from pathlib import Path
6
6
 
7
7
  NAME = "task"
8
- VERSION = "3.33.0"
8
+ VERSION = "3.34.1"
9
9
 
10
10
 
11
11
  def is_windows():
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "go-task-bin"
3
3
  description = "task - A task runner / simpler Make alternative written in Go"
4
- version = "3.33.0"
4
+ version = "3.34.1"
5
5
  authors = [
6
6
  { name = "dowon", email = "ks2515@naver.com" },
7
7
  ]
@@ -17,7 +17,7 @@ jobs:
17
17
  issue_number: context.issue.number,
18
18
  owner: context.repo.owner,
19
19
  repo: context.repo.repo,
20
- body: 'This issue has been marked as an experiment proposal! :test_tube: It will now enter a period of consultation during which we encourage the community to provide feedback on the proposed design. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
20
+ body: 'This issue has been marked as an experiment proposal! :test_tube: It will now enter a period of consultation during which we encourage the community to provide feedback on the proposed design. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
21
21
  })
22
22
  issue-experiment-draft:
23
23
  if: github.event.label.name == format('experiment{0} draft', ':')
@@ -31,7 +31,7 @@ jobs:
31
31
  issue_number: context.issue.number,
32
32
  owner: context.repo.owner,
33
33
  repo: context.repo.repo,
34
- body: 'This experiment has been marked as a draft! :sparkles: This means that an initial implementation has been added to the latest release of Task! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
34
+ body: 'This experiment has been marked as a draft! :sparkles: This means that an initial implementation has been added to the latest release of Task! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
35
35
  })
36
36
  issue-experiment-candidate:
37
37
  if: github.event.label.name == format('experiment{0} candidate', ':')
@@ -45,7 +45,7 @@ jobs:
45
45
  issue_number: context.issue.number,
46
46
  owner: context.repo.owner,
47
47
  repo: context.repo.repo,
48
- body: 'This experiment has been marked as a candidate! :fire: This means that the implementation is nearing completion and we are entering a period for final comments and feedback! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
48
+ body: 'This experiment has been marked as a candidate! :fire: This means that the implementation is nearing completion and we are entering a period for final comments and feedback! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
49
49
  })
50
50
  issue-experiment-stable:
51
51
  if: github.event.label.name == format('experiment{0} stable', ':')
@@ -59,7 +59,7 @@ jobs:
59
59
  issue_number: context.issue.number,
60
60
  owner: context.repo.owner,
61
61
  repo: context.repo.repo,
62
- body: 'This experiment has been marked as stable! :metal: This means that the implementation is now final and ready to be released. No more changes will be made and the experiment is safe to use in production! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
62
+ body: 'This experiment has been marked as stable! :metal: This means that the implementation is now final and ready to be released. No more changes will be made and the experiment is safe to use in production! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
63
63
  })
64
64
  issue-experiment-released:
65
65
  if: github.event.label.name == format('experiment{0} released', ':')
@@ -73,7 +73,7 @@ jobs:
73
73
  issue_number: context.issue.number,
74
74
  owner: context.repo.owner,
75
75
  repo: context.repo.repo,
76
- body: 'This experiment has been released! :rocket: This means that it is no longer an experiment and is available in the latest major version of Task. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
76
+ body: 'This experiment has been released! :rocket: This means that it is no longer an experiment and is available in the latest major version of Task. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
77
77
  })
78
78
  github.rest.issues.update({
79
79
  issue_number: context.issue.number,
@@ -93,7 +93,7 @@ jobs:
93
93
  issue_number: context.issue.number,
94
94
  owner: context.repo.owner,
95
95
  repo: context.repo.repo,
96
- body: 'This experiment has been abandoned. :disappointed: This means that this feature will not be added to Task and any experimental functionality will be removed. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
96
+ body: 'This experiment has been abandoned. :disappointed: This means that this feature will not be added to Task and any experimental functionality will be removed. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
97
97
  })
98
98
  github.rest.issues.update({
99
99
  issue_number: context.issue.number,
@@ -113,7 +113,7 @@ jobs:
113
113
  issue_number: context.issue.number,
114
114
  owner: context.repo.owner,
115
115
  repo: context.repo.repo,
116
- body: 'This experiment has been superseded. :seedling: This means that another experiment has replaced this one. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
116
+ body: 'This experiment has been superseded. :seedling: This means that another experiment has replaced this one. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
117
117
  })
118
118
  github.rest.issues.update({
119
119
  issue_number: context.issue.number,
@@ -0,0 +1,39 @@
1
+ name: Lint
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ tags:
7
+ - v*
8
+ branches:
9
+ - main
10
+
11
+ jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/setup-go@v3
16
+ with:
17
+ go-version: 1.21.x
18
+
19
+ - uses: actions/checkout@v3
20
+
21
+ - name: golangci-lint
22
+ uses: golangci/golangci-lint-action@v3
23
+ with:
24
+ version: v1.55.2
25
+
26
+ lint-jsonschema:
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - uses: actions/setup-python@v5
30
+ with:
31
+ python-version: 3.12
32
+
33
+ - uses: actions/checkout@v3
34
+
35
+ - name: install check-jsonschema
36
+ run: python -m pip install 'check-jsonschema==0.27.3'
37
+
38
+ - name: check-jsonschema (metaschema)
39
+ run: check-jsonschema --check-metaschema docs/static/schema.json
@@ -16,7 +16,7 @@ jobs:
16
16
 
17
17
  - name: Verify changed files
18
18
  id: changed-files
19
- uses: tj-actions/changed-files@v35
19
+ uses: tj-actions/changed-files@v41
20
20
  with:
21
21
  files: |
22
22
  docs/docs
@@ -1,9 +1,52 @@
1
1
  # Changelog
2
2
 
3
+ ## v3.34.1 - 2024-01-27
4
+
5
+ - Fixed prompt regression on
6
+ [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles/)
7
+ (#1486, #1487 by @pd93).
8
+
9
+ ## v3.34.0 - 2024-01-25
10
+
11
+ - Removed support for `version: 2` schemas. See the
12
+ [deprecation notice on our website](https://taskfile.dev/deprecations/version-2-schema)
13
+ (#1197, #1447 by @pd93).
14
+ - Fixed a couple of issues in the JSON Schema + added a CI step to ensure it's
15
+ correct (#1471, #1474, #1476 by @sirosen).
16
+ - Added
17
+ [Any Variables experiment proposal 2](https://taskfile.dev/experiments/any-variables/?proposal=2)
18
+ (#1415, #1444 by @pd93).
19
+ - Updated the experiments and deprecations documentation format (#1445 by
20
+ @pd93).
21
+ - Added new template function: `spew`, which can be used to print variables for
22
+ debugging purposes (#1452 by @pd93).
23
+ - Added new template function: `merge`, which can be used to merge any number of
24
+ map variables (#1438, #1464 by @pd93).
25
+ - Small change on the API when using as a library: `call.Direct` became
26
+ `call.Indirect` (#1459 by @pd93).
27
+ - Refactored the public `read` and `taskfile` packages and introduced
28
+ `taskfile/ast` (#1450 by @pd93).
29
+ - `ast.IncludedTaskfiles` renamed to `ast.Includes` and `orderedmap` package
30
+ renamed to `omap` plus some internal refactor work (#1456 by @pd93).
31
+ - Fix zsh completion script to allow lowercase `taskfile` file names (#1482 by
32
+ @xontab).
33
+ - Improvements on how we check the Taskfile version (#1465 by @pd93).
34
+ - Added a new `ROOT_TASKFILE` special variable (#1468, #1469 by @pd93).
35
+ - Fix experiment flags in `.env` when the `--dir` or `--taskfile` flags were
36
+ used (#1478 by @pd93).
37
+
38
+ ## v3.33.1 - 2023-12-21
39
+
40
+ - Added support for looping over map variables with the
41
+ [Any Variables experiment](https://taskfile.dev/experiments/any-variables)
42
+ enabled (#1435, #1437 by @pd93).
43
+ - Fixed a bug where dynamic variables were causing errors during fast
44
+ compilation (#1435, #1437 by @pd93)
45
+
3
46
  ## v3.33.0 - 2023-12-20
4
47
 
5
48
  - Added
6
- [Any Variables experiment](https://taskfile.dev/experiments/any_variables)
49
+ [Any Variables experiment](https://taskfile.dev/experiments/any-variables)
7
50
  (#1415, #1421 by @pd93).
8
51
  - Updated Docusaurus to v3 (#1432 by @pd93).
9
52
  - Added `aliases` to `--json` flag output (#1430, #1431 by @pd93).
@@ -0,0 +1,30 @@
1
+ package args
2
+
3
+ import (
4
+ "strings"
5
+
6
+ "github.com/go-task/task/v3/taskfile/ast"
7
+ )
8
+
9
+ // Parse parses command line argument: tasks and global variables
10
+ func Parse(args ...string) ([]ast.Call, *ast.Vars) {
11
+ calls := []ast.Call{}
12
+ globals := &ast.Vars{}
13
+
14
+ for _, arg := range args {
15
+ if !strings.Contains(arg, "=") {
16
+ calls = append(calls, ast.Call{Task: arg})
17
+ continue
18
+ }
19
+
20
+ name, value := splitVar(arg)
21
+ globals.Set(name, ast.Var{Value: value})
22
+ }
23
+
24
+ return calls, globals
25
+ }
26
+
27
+ func splitVar(s string) (string, string) {
28
+ pair := strings.SplitN(s, "=", 2)
29
+ return pair[0], pair[1]
30
+ }
@@ -0,0 +1,108 @@
1
+ package args_test
2
+
3
+ import (
4
+ "fmt"
5
+ "testing"
6
+
7
+ "github.com/stretchr/testify/assert"
8
+
9
+ "github.com/go-task/task/v3/args"
10
+ "github.com/go-task/task/v3/internal/omap"
11
+ "github.com/go-task/task/v3/taskfile/ast"
12
+ )
13
+
14
+ func TestArgs(t *testing.T) {
15
+ tests := []struct {
16
+ Args []string
17
+ ExpectedCalls []ast.Call
18
+ ExpectedGlobals *ast.Vars
19
+ }{
20
+ {
21
+ Args: []string{"task-a", "task-b", "task-c"},
22
+ ExpectedCalls: []ast.Call{
23
+ {Task: "task-a"},
24
+ {Task: "task-b"},
25
+ {Task: "task-c"},
26
+ },
27
+ },
28
+ {
29
+ Args: []string{"task-a", "FOO=bar", "task-b", "task-c", "BAR=baz", "BAZ=foo"},
30
+ ExpectedCalls: []ast.Call{
31
+ {Task: "task-a"},
32
+ {Task: "task-b"},
33
+ {Task: "task-c"},
34
+ },
35
+ ExpectedGlobals: &ast.Vars{
36
+ OrderedMap: omap.FromMapWithOrder(
37
+ map[string]ast.Var{
38
+ "FOO": {Value: "bar"},
39
+ "BAR": {Value: "baz"},
40
+ "BAZ": {Value: "foo"},
41
+ },
42
+ []string{"FOO", "BAR", "BAZ"},
43
+ ),
44
+ },
45
+ },
46
+ {
47
+ Args: []string{"task-a", "CONTENT=with some spaces"},
48
+ ExpectedCalls: []ast.Call{
49
+ {Task: "task-a"},
50
+ },
51
+ ExpectedGlobals: &ast.Vars{
52
+ OrderedMap: omap.FromMapWithOrder(
53
+ map[string]ast.Var{
54
+ "CONTENT": {Value: "with some spaces"},
55
+ },
56
+ []string{"CONTENT"},
57
+ ),
58
+ },
59
+ },
60
+ {
61
+ Args: []string{"FOO=bar", "task-a", "task-b"},
62
+ ExpectedCalls: []ast.Call{
63
+ {Task: "task-a"},
64
+ {Task: "task-b"},
65
+ },
66
+ ExpectedGlobals: &ast.Vars{
67
+ OrderedMap: omap.FromMapWithOrder(
68
+ map[string]ast.Var{
69
+ "FOO": {Value: "bar"},
70
+ },
71
+ []string{"FOO"},
72
+ ),
73
+ },
74
+ },
75
+ {
76
+ Args: nil,
77
+ ExpectedCalls: []ast.Call{},
78
+ },
79
+ {
80
+ Args: []string{},
81
+ ExpectedCalls: []ast.Call{},
82
+ },
83
+ {
84
+ Args: []string{"FOO=bar", "BAR=baz"},
85
+ ExpectedCalls: []ast.Call{},
86
+ ExpectedGlobals: &ast.Vars{
87
+ OrderedMap: omap.FromMapWithOrder(
88
+ map[string]ast.Var{
89
+ "FOO": {Value: "bar"},
90
+ "BAR": {Value: "baz"},
91
+ },
92
+ []string{"FOO", "BAR"},
93
+ ),
94
+ },
95
+ },
96
+ }
97
+
98
+ for i, test := range tests {
99
+ t.Run(fmt.Sprintf("TestArgs%d", i+1), func(t *testing.T) {
100
+ calls, globals := args.Parse(test.Args...)
101
+ assert.Equal(t, test.ExpectedCalls, calls)
102
+ if test.ExpectedGlobals.Len() > 0 || globals.Len() > 0 {
103
+ assert.Equal(t, test.ExpectedGlobals.Keys(), globals.Keys())
104
+ assert.Equal(t, test.ExpectedGlobals.Values(), globals.Values())
105
+ }
106
+ })
107
+ }
108
+ }
@@ -14,7 +14,7 @@ import (
14
14
 
15
15
  const (
16
16
  changelogSource = "CHANGELOG.md"
17
- changelogTarget = "docs/docs/changelog.mdx"
17
+ changelogTarget = "docs/docs/changelog.md"
18
18
  )
19
19
 
20
20
  var (
@@ -19,7 +19,7 @@ import (
19
19
  "github.com/go-task/task/v3/internal/logger"
20
20
  "github.com/go-task/task/v3/internal/sort"
21
21
  ver "github.com/go-task/task/v3/internal/version"
22
- "github.com/go-task/task/v3/taskfile"
22
+ "github.com/go-task/task/v3/taskfile/ast"
23
23
  )
24
24
 
25
25
  const usage = `Usage: task [flags...] [task...]
@@ -68,7 +68,7 @@ var flags struct {
68
68
  concurrency int
69
69
  dir string
70
70
  entrypoint string
71
- output taskfile.Output
71
+ output ast.Output
72
72
  color bool
73
73
  interval time.Duration
74
74
  global bool
@@ -140,7 +140,7 @@ func run() error {
140
140
  pflag.BoolVar(&flags.experiments, "experiments", false, "Lists all the available experiments and whether or not they are enabled.")
141
141
 
142
142
  // Gentle force experiment will override the force flag and add a new force-all flag
143
- if experiments.GentleForce {
143
+ if experiments.GentleForce.Enabled {
144
144
  pflag.BoolVarP(&flags.force, "force", "f", false, "Forces execution of the directly called task.")
145
145
  pflag.BoolVar(&flags.forceAll, "force-all", false, "Forces execution of the called task and all its dependant tasks.")
146
146
  } else {
@@ -148,7 +148,7 @@ func run() error {
148
148
  }
149
149
 
150
150
  // Remote Taskfiles experiment will adds the "download" and "offline" flags
151
- if experiments.RemoteTaskfiles {
151
+ if experiments.RemoteTaskfiles.Enabled {
152
152
  pflag.BoolVar(&flags.download, "download", false, "Downloads a cached version of a remote Taskfile.")
153
153
  pflag.BoolVar(&flags.offline, "offline", false, "Forces Task to only use local or cached Taskfiles.")
154
154
  pflag.DurationVar(&flags.timeout, "timeout", time.Second*10, "Timeout for downloading remote Taskfiles.")
@@ -291,8 +291,8 @@ func run() error {
291
291
  }
292
292
 
293
293
  var (
294
- calls []taskfile.Call
295
- globals *taskfile.Vars
294
+ calls []ast.Call
295
+ globals *ast.Vars
296
296
  )
297
297
 
298
298
  tasksAndVars, cliArgs, err := getArgs()
@@ -300,19 +300,15 @@ func run() error {
300
300
  return err
301
301
  }
302
302
 
303
- if e.Taskfile.Version.Compare(taskfile.V3) >= 0 {
304
- calls, globals = args.ParseV3(tasksAndVars...)
305
- } else {
306
- calls, globals = args.ParseV2(tasksAndVars...)
307
- }
303
+ calls, globals = args.Parse(tasksAndVars...)
308
304
 
309
305
  // If there are no calls, run the default task instead
310
306
  if len(calls) == 0 {
311
- calls = append(calls, taskfile.Call{Task: "default", Direct: true})
307
+ calls = append(calls, ast.Call{Task: "default"})
312
308
  }
313
309
 
314
- globals.Set("CLI_ARGS", taskfile.Var{Value: cliArgs})
315
- globals.Set("CLI_FORCE", taskfile.Var{Value: flags.force || flags.forceAll})
310
+ globals.Set("CLI_ARGS", ast.Var{Value: cliArgs})
311
+ globals.Set("CLI_FORCE", ast.Var{Value: flags.force || flags.forceAll})
316
312
  e.Taskfile.Vars.Merge(globals)
317
313
 
318
314
  if !flags.watch {
@@ -18,7 +18,7 @@ function __task_list() {
18
18
  enabled=1
19
19
  cmd+=(--taskfile "$taskfile")
20
20
  else
21
- for taskfile in Taskfile{,.dist}.{yaml,yml}; do
21
+ for taskfile in {T,t}askfile{,.dist}.{yaml,yml}; do
22
22
  if [[ -f "$taskfile" ]]; then
23
23
  enabled=1
24
24
  break
@@ -128,8 +128,9 @@ There are some special variables that is available on the templating system:
128
128
  | `CLI_ARGS` | Contain all extra arguments passed after `--` when calling Task through the CLI. |
129
129
  | `CLI_FORCE` | A boolean containing whether the `--force` or `--force-all` flags were set. |
130
130
  | `TASK` | The name of the current task. |
131
- | `ROOT_DIR` | The absolute path of the root Taskfile. |
132
- | `TASKFILE_DIR` | The absolute path of the included Taskfile. |
131
+ | `ROOT_TASKFILE` | The absolute path of the root Taskfile. |
132
+ | `ROOT_DIR` | The absolute path of the root Taskfile directory. |
133
+ | `TASKFILE_DIR` | The absolute path of the included Taskfile directory. |
133
134
  | `USER_WORKING_DIR` | The absolute path of the directory `task` was called from. |
134
135
  | `CHECKSUM` | The checksum of the files listed in `sources`. Only available within the `status` prop and if method is set to `checksum`. |
135
136
  | `TIMESTAMP` | The date object of the greatest timestamp of the files listed in `sources`. Only available within the `status` prop and if method is set to `timestamp`. |
@@ -5,10 +5,53 @@ sidebar_position: 14
5
5
 
6
6
  # Changelog
7
7
 
8
+ ## v3.34.1 - 2024-01-27
9
+
10
+ - Fixed prompt regression on
11
+ [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles/)
12
+ (#1486, #1487 by @pd93).
13
+
14
+ ## v3.34.0 - 2024-01-25
15
+
16
+ - Removed support for `version: 2` schemas. See the
17
+ [deprecation notice on our website](https://taskfile.dev/deprecations/version-2-schema)
18
+ (#1197, #1447 by @pd93).
19
+ - Fixed a couple of issues in the JSON Schema + added a CI step to ensure it's
20
+ correct (#1471, #1474, #1476 by @sirosen).
21
+ - Added
22
+ [Any Variables experiment proposal 2](https://taskfile.dev/experiments/any-variables/?proposal=2)
23
+ (#1415, #1444 by @pd93).
24
+ - Updated the experiments and deprecations documentation format (#1445 by
25
+ @pd93).
26
+ - Added new template function: `spew`, which can be used to print variables for
27
+ debugging purposes (#1452 by @pd93).
28
+ - Added new template function: `merge`, which can be used to merge any number of
29
+ map variables (#1438, #1464 by @pd93).
30
+ - Small change on the API when using as a library: `call.Direct` became
31
+ `call.Indirect` (#1459 by @pd93).
32
+ - Refactored the public `read` and `taskfile` packages and introduced
33
+ `taskfile/ast` (#1450 by @pd93).
34
+ - `ast.IncludedTaskfiles` renamed to `ast.Includes` and `orderedmap` package
35
+ renamed to `omap` plus some internal refactor work (#1456 by @pd93).
36
+ - Fix zsh completion script to allow lowercase `taskfile` file names (#1482 by
37
+ @xontab).
38
+ - Improvements on how we check the Taskfile version (#1465 by @pd93).
39
+ - Added a new `ROOT_TASKFILE` special variable (#1468, #1469 by @pd93).
40
+ - Fix experiment flags in `.env` when the `--dir` or `--taskfile` flags were
41
+ used (#1478 by @pd93).
42
+
43
+ ## v3.33.1 - 2023-12-21
44
+
45
+ - Added support for looping over map variables with the
46
+ [Any Variables experiment](https://taskfile.dev/experiments/any-variables)
47
+ enabled (#1435, #1437 by @pd93).
48
+ - Fixed a bug where dynamic variables were causing errors during fast
49
+ compilation (#1435, #1437 by @pd93)
50
+
8
51
  ## v3.33.0 - 2023-12-20
9
52
 
10
53
  - Added
11
- [Any Variables experiment](https://taskfile.dev/experiments/any_variables)
54
+ [Any Variables experiment](https://taskfile.dev/experiments/any-variables)
12
55
  (#1415, #1421 by @pd93).
13
56
  - Updated Docusaurus to v3 (#1432 by @pd93).
14
57
  - Added `aliases` to `--json` flag output (#1430, #1431 by @pd93).
@@ -6,11 +6,16 @@ sidebar_position: -1 # Always push to the top
6
6
  draft: true # Hide in production
7
7
  ---
8
8
 
9
- # \{Name of Deprecated Feature\}
9
+ # \{Name of Deprecated Feature\} (#\{Issue\})
10
10
 
11
- - Issue: #\{issue\}
12
- - Breaks:
13
- - \{list any existing functionality that will be broken by this experiment\}
11
+ :::warning
12
+
13
+ This deprecation breaks the following functionality:
14
+
15
+ - \{list any existing functionality that will be broken by this deprecation\}
16
+ - \{if there are no breaking changes, remove this admonition\}
17
+
18
+ :::
14
19
 
15
20
  \{Short description of the feature/behavior and why it is being deprecated\}
16
21
 
@@ -0,0 +1,33 @@
1
+ ---
2
+ slug: /deprecations/version-2-schema/
3
+ ---
4
+
5
+ # Version 2 Schema (#1197)
6
+
7
+ :::warning
8
+
9
+ This deprecation breaks the following functionality:
10
+
11
+ - Any Taskfiles that use the version 2 schema
12
+ - `Taskvar.yml` files
13
+
14
+ :::
15
+
16
+ The Taskfile version 2 schema was introduced in March 2018 and replaced by
17
+ version 3 in August 2019. In May 2023 [we published a deprecation
18
+ notice][deprecation-notice] for the version 2 schema on the basis that the vast
19
+ majority of users had already upgraded to version 3 and removing support for
20
+ version 2 would allow us to tidy up the codebase and focus on new functionality
21
+ instead.
22
+
23
+ In December 2023, the final version of Task that supports the version 2 schema
24
+ ([v3.33.0][v3.33.0]) was published and all legacy code was removed from Task's
25
+ main branch. To use a more recent version of Task, you will need to ensure that
26
+ your Taskfile uses the version 3 schema instead. A list of changes between
27
+ version 2 and version 3 are available in the [Task v3 Release Notes][v3.0.0].
28
+
29
+ <!-- prettier-ignore-start -->
30
+ [v3.0.0]: https://github.com/go-task/task/releases/tag/v3.0.0
31
+ [v3.33.0]: https://github.com/go-task/task/releases/tag/v3.33.0
32
+ [deprecation-notice]: https://github.com/go-task/task/issues/1197
33
+ <!-- prettier-ignore-end -->
@@ -19,9 +19,8 @@ the website homepage and on the GitHub repository README. Make contact with
19
19
  ## GitHub Sponsors
20
20
 
21
21
  The preferred way to donate to the maintainers is via GitHub Sponsors. Just use
22
- the following links to do your donation.
23
- We suggest a 50/50 split to each maintainer of the total amount you plan to
24
- donate to the project.
22
+ the following links to do your donation. We suggest a 50/50 split to each
23
+ maintainer of the total amount you plan to donate to the project.
25
24
 
26
25
  - [@andreynering](https://github.com/sponsors/andreynering)
27
26
  - [@pd93](https://github.com/sponsors/pd93)