Skip to content

Commit 6177376

Browse files
committed
v3.31.0
1 parent b5f6a23 commit 6177376

4 files changed

Lines changed: 24 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v3.31.0 - 2023-10-07
44

55
- Enabled the `--yes` flag for the
66
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)

docs/docs/changelog.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ sidebar_position: 14
55

66
# Changelog
77

8+
## v3.31.0 - 2023-10-07
9+
10+
- Enabled the `--yes` flag for the
11+
[Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles)
12+
([#1344](https://github.com/go-task/task/issues/1344) by [@pd93](https://github.com/pd93)).
13+
- Add ability to set `watch: true` in a task to automatically run it in watch
14+
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)).
15+
- Fixed a bug on the watch mode where paths that contained `.git` (like
16+
`.github`), for example, were also being ignored ([#1356](https://github.com/go-task/task/issues/1356) by [@butuzov](https://github.com/butuzov)).
17+
- Fixed a nil pointer error when running a Taskfile with no contents ([#1341](https://github.com/go-task/task/issues/1341),
18+
[#1342](https://github.com/go-task/task/issues/1342) by [@pd93](https://github.com/pd93)).
19+
- Added a new [exit code](https://taskfile.dev/api/#exit-codes) (107) for when a
20+
Taskfile does not contain a schema version ([#1342](https://github.com/go-task/task/issues/1342) by [@pd93](https://github.com/pd93)).
21+
- Increased limit of maximum task calls from 100 to 1000 for now, as some people
22+
have been reaching this limit organically now that we have loops. This check
23+
exists to detect recursive calls, but will be removed in favor of a better
24+
algorithm soon ([#1321](https://github.com/go-task/task/issues/1321), [#1332](https://github.com/go-task/task/issues/1332)).
25+
- Fixed templating on descriptions on `task --list` ([#1343](https://github.com/go-task/task/issues/1343) by [@blackjid](https://github.com/blackjid)).
26+
- Fixed a bug where precondition errors were incorrectly being printed when
27+
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).
28+
829
## v3.30.1 - 2023-09-14
930

1031
- Fixed a regression where some special variables weren't being set correctly

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@go-task/cli",
3-
"version": "3.30.1",
3+
"version": "3.31.0",
44
"description": "A task runner / simpler Make alternative written in Go",
55
"scripts": {
66
"postinstall": "go-npm install",

0 commit comments

Comments
 (0)