mirror of
https://github.com/go-task/task.git
synced 2025-12-16 11:47:44 +01:00
v3.32.0
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Unreleased
|
## v3.32.0 - 2023-11-29
|
||||||
|
|
||||||
- Added ability to exclude some files from `sources:` by using `exclude:` (#225,
|
- Added ability to exclude some files from `sources:` by using `exclude:` (#225,
|
||||||
#1324 by @pd93 and @andreynering).
|
#1324 by @pd93 and @andreynering).
|
||||||
|
|||||||
@@ -5,11 +5,28 @@ sidebar_position: 14
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v3.32.0 - 2023-11-29
|
||||||
|
|
||||||
|
- Added ability to exclude some files from `sources:` by using `exclude:` ([#225](https://github.com/go-task/task/issues/225),
|
||||||
|
[#1324](https://github.com/go-task/task/issues/1324) by [@pd93](https://github.com/pd93) and [@andreynering](https://github.com/andreynering)).
|
||||||
|
- The
|
||||||
|
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
|
||||||
|
now prefers remote files over cached ones by default ([#1317](https://github.com/go-task/task/issues/1317), [#1345](https://github.com/go-task/task/issues/1345) by [@pd93](https://github.com/pd93)).
|
||||||
|
- Added `--timeout` flag to the
|
||||||
|
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
|
||||||
|
([#1317](https://github.com/go-task/task/issues/1317), [#1345](https://github.com/go-task/task/issues/1345) by [@pd93](https://github.com/pd93)).
|
||||||
|
- Fix bug where dynamic `vars:` and `env:` were being executed when they should
|
||||||
|
actually be skipped by `platforms:` ([#1273](https://github.com/go-task/task/issues/1273), [#1377](https://github.com/go-task/task/issues/1377) by [@andreynering](https://github.com/andreynering)).
|
||||||
|
- Fix `schema.json` to make `silent` valid in `cmds` that use `for` ([#1385](https://github.com/go-task/task/issues/1385),
|
||||||
|
[#1386](https://github.com/go-task/task/issues/1386) by [@iainvm](https://github.com/iainvm)).
|
||||||
|
- Add new `--no-status` flag to skip expensive status checks when running
|
||||||
|
`task --list --json` ([#1348](https://github.com/go-task/task/issues/1348), [#1368](https://github.com/go-task/task/issues/1368) by [@amancevice](https://github.com/amancevice)).
|
||||||
|
|
||||||
## v3.31.0 - 2023-10-07
|
## v3.31.0 - 2023-10-07
|
||||||
|
|
||||||
- Enabled the `--yes` flag for the
|
- Enabled the `--yes` flag for the
|
||||||
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
|
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
|
||||||
([#1344](https://github.com/go-task/task/issues/1344) by [@pd93](https://github.com/pd93)).
|
([#1317](https://github.com/go-task/task/issues/1317), [#1344](https://github.com/go-task/task/issues/1344) by [@pd93](https://github.com/pd93)).
|
||||||
- Add ability to set `watch: true` in a task to automatically run it in watch
|
- Add ability to set `watch: true` in a task to automatically run it in watch
|
||||||
mode ([#231](https://github.com/go-task/task/issues/231), [#1361](https://github.com/go-task/task/issues/1361) by [@andreynering](https://github.com/andreynering)).
|
mode ([#231](https://github.com/go-task/task/issues/231), [#1361](https://github.com/go-task/task/issues/1361) by [@andreynering](https://github.com/andreynering)).
|
||||||
- Fixed a bug on the watch mode where paths that contained `.git` (like
|
- Fixed a bug on the watch mode where paths that contained `.git` (like
|
||||||
@@ -23,8 +40,8 @@ sidebar_position: 14
|
|||||||
exists to detect recursive calls, but will be removed in favor of a better
|
exists to detect recursive calls, but will be removed in favor of a better
|
||||||
algorithm soon ([#1321](https://github.com/go-task/task/issues/1321), [#1332](https://github.com/go-task/task/issues/1332)).
|
algorithm soon ([#1321](https://github.com/go-task/task/issues/1321), [#1332](https://github.com/go-task/task/issues/1332)).
|
||||||
- Fixed templating on descriptions on `task --list` ([#1343](https://github.com/go-task/task/issues/1343) by [@blackjid](https://github.com/blackjid)).
|
- Fixed templating on descriptions on `task --list` ([#1343](https://github.com/go-task/task/issues/1343) by [@blackjid](https://github.com/blackjid)).
|
||||||
- Fixed a bug where precondition errors were incorrectly being printed when
|
- Fixed a bug where precondition errors were incorrectly being printed when task
|
||||||
task execution was aborted ([#1337](https://github.com/go-task/task/issues/1337), [#1338](https://github.com/go-task/task/issues/1338) by [@sylv](https://github.com/sylv)-io).
|
execution was aborted ([#1337](https://github.com/go-task/task/issues/1337), [#1338](https://github.com/go-task/task/issues/1338) by [@sylv](https://github.com/sylv)-io).
|
||||||
|
|
||||||
## v3.30.1 - 2023-09-14
|
## v3.30.1 - 2023-09-14
|
||||||
|
|
||||||
|
|||||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@go-task/cli",
|
"name": "@go-task/cli",
|
||||||
"version": "3.31.0",
|
"version": "3.32.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@go-task/cli",
|
"name": "@go-task/cli",
|
||||||
"version": "3.31.0",
|
"version": "3.32.0",
|
||||||
"description": "A task runner / simpler Make alternative written in Go",
|
"description": "A task runner / simpler Make alternative written in Go",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "go-npm install",
|
"postinstall": "go-npm install",
|
||||||
|
|||||||
Reference in New Issue
Block a user