From 7c221ef9997d58e5f1a486bd19976409603cd730 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 29 Nov 2023 22:40:04 -0300 Subject: [PATCH] v3.32.0 --- CHANGELOG.md | 2 +- docs/docs/changelog.md | 23 ++++++++++++++++++++--- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f7b71aa..faf09899 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.32.0 - 2023-11-29 - Added ability to exclude some files from `sources:` by using `exclude:` (#225, #1324 by @pd93 and @andreynering). diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index af1c4501..c3d9c58c 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,11 +5,28 @@ sidebar_position: 14 # 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 - Enabled the `--yes` flag for the [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 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 @@ -23,8 +40,8 @@ sidebar_position: 14 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)). - 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 - 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). +- Fixed a bug where precondition errors were incorrectly being printed when 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). ## v3.30.1 - 2023-09-14 diff --git a/package-lock.json b/package-lock.json index 74a4b876..ae5993c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.31.0", + "version": "3.32.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index be3e4fd2..dae75cec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@go-task/cli", - "version": "3.31.0", + "version": "3.32.0", "description": "A task runner / simpler Make alternative written in Go", "scripts": { "postinstall": "go-npm install",