+
+
+
+
+
+
+
+
Task GitHub Action
+
+
+ A GitHub Actions action that makes the Task task runner / build tool available to use in your workflow.
+
+
+
+## Inputs
+
+### `version`
+
+The version of [Task](https://taskfile.dev) to install.
+Can be an exact version (e.g., `3.4.2`) or a version range (e.g., `3.x`).
+
+**Default**: `3.x`
+
+### `repo-token`
+
+[GitHub access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) used for GitHub API requests.
+
+**Default**: [`GITHUB_TOKEN`](https://docs.github.com/actions/security-guides/automatic-token-authentication)
+
+## Usage
+
+To get the action's default version of Task just add this step:
+
+```yaml
+- name: Install Task
+ uses: step-security/go-task-setup-task@v2
+```
+
+If you want to pin a major or minor version you can use the `.x` wildcard:
+
+```yaml
+- name: Install Task
+ uses: step-security/go-task-setup-task@v2
+ with:
+ version: 2.x
+```
+
+To pin the exact version:
+
+```yaml
+- name: Install Task
+ uses: step-security/go-task-setup-task@v2
+ with:
+ version: 2.6.1
+```
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000..77568b2
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,5 @@
+# Security Policy
+
+## Reporting a Vulnerability
+
+Please report security vulnerabilities to security@stepsecurity.io
diff --git a/Taskfile.yml b/Taskfile.yml
new file mode 100644
index 0000000..a3b3768
--- /dev/null
+++ b/Taskfile.yml
@@ -0,0 +1,359 @@
+version: "3"
+
+vars:
+ # Last version of ajv-cli with support for the JSON schema "Draft 4" specification
+ SCHEMA_DRAFT_4_AJV_CLI_VERSION: 3.3.0
+
+tasks:
+ build:
+ desc: Build the project
+ deps:
+ - task: ts:build
+
+ check:
+ desc: Check for problems with the project
+ deps:
+ - task: action:validate
+ - task: general:check-spelling
+ - task: markdown:check-links
+ - task: markdown:lint
+ - task: npm:validate
+ - task: ts:lint
+ - task: ts:test
+ - task: ts:validate
+ vars:
+ TSCONFIG_PATH: "./tsconfig.json"
+
+ fix:
+ desc: Make automated corrections to the project's files
+ deps:
+ - task: general:correct-spelling
+ - task: general:format
+ - task: markdown:fix
+ - task: ts:build
+ - task: ts:fix-lint
+
+ action:validate:
+ desc: Validate GitHub Actions metadata against JSON schema
+ vars:
+ ACTION_METADATA_SCHEMA_PATH:
+ sh: mktemp -t github-action-schema-XXXXXXXXXX.json
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - wget --quiet --output-document="{{.ACTION_METADATA_SCHEMA_PATH}}" https://json.schemastore.org/github-action
+ - npx ajv validate --strict=false -s "{{.ACTION_METADATA_SCHEMA_PATH}}" -d "action.yml"
+
+ docs:generate:
+ desc: Create all generated documentation content
+ # This is an "umbrella" task used to call any documentation generation processes the project has.
+ # It can be left empty if there are none.
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
+ general:check-spelling:
+ desc: Check for commonly misspelled words
+ deps:
+ - task: poetry:install-deps
+ cmds:
+ - poetry run codespell
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
+ general:correct-spelling:
+ desc: Correct commonly misspelled words where possible
+ deps:
+ - task: poetry:install-deps
+ cmds:
+ - poetry run codespell --write-changes
+
+ general:format:
+ desc: Format all supported files with oxfmt
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx oxfmt --write .
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-npm-dependencies-task/Taskfile.yml
+ general:install-deps:
+ desc: Install project dependencies
+ deps:
+ - task: npm:install-deps
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown-task/Taskfile.yml
+ markdown:check-links:
+ desc: Check for broken links
+ deps:
+ - task: docs:generate
+ - task: npm:install-deps
+ cmds:
+ - |
+ if [[ "{{.OS}}" == "Windows_NT" ]]; then
+ if ! which markdown-link-check &>/dev/null; then
+ echo "markdown-link-check not found or not in PATH. Please install: https://github.com/tcort/markdown-link-check#readme"
+ exit 1
+ fi
+ set +o errexit
+ STATUS=0
+ for file in \
+ $(find . -type d -name node_modules -prune -o -regex ".*[.]md" -print); do
+ markdown-link-check \
+ --quiet \
+ --config "./.markdown-link-check.json" \
+ "$file"
+ STATUS=$(( $STATUS + $? ))
+ done
+ exit $STATUS
+ else
+ STATUS=0
+ for file in \
+ $(find . -type d -name node_modules -prune -o -regex ".*[.]md" -print); do
+ npx markdown-link-check \
+ --quiet \
+ --config "./.markdown-link-check.json" \
+ "$file"
+ STATUS=$(( $STATUS + $? ))
+ done
+ exit $STATUS
+ fi
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown-task/Taskfile.yml
+ markdown:fix:
+ desc: Automatically correct linting violations in Markdown files where possible
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx markdownlint --fix "**/*.md"
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown-task/Taskfile.yml
+ markdown:lint:
+ desc: Check for problems in Markdown files
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx markdownlint "**/*.md"
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
+ npm:install-deps:
+ desc: Install dependencies managed by npm
+ cmds:
+ - npm ci
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-npm-task/Taskfile.yml
+ npm:validate:
+ desc: Validate npm configuration files against their JSON schema
+ vars:
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/package.json
+ SCHEMA_URL: https://json.schemastore.org/package.json
+ SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="package-json-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/ava.json
+ AVA_SCHEMA_URL: https://json.schemastore.org/ava.json
+ AVA_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="ava-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/base.json
+ BASE_SCHEMA_URL: https://json.schemastore.org/base.json
+ BASE_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="base-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/eslintrc.json
+ ESLINTRC_SCHEMA_URL: https://json.schemastore.org/eslintrc.json
+ ESLINTRC_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="eslintrc-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/jscpd.json
+ JSCPD_SCHEMA_URL: https://json.schemastore.org/jscpd.json
+ JSCPD_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="jscpd-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/npm-badges.json
+ NPM_BADGES_SCHEMA_URL: https://json.schemastore.org/npm-badges.json
+ NPM_BADGES_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="npm-badges-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/nodemon.json
+ NODEMON_SCHEMA_URL: https://json.schemastore.org/nodemon.json
+ NODEMON_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="nodemon-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/partial-eslint-plugins.json
+ PARTIAL_ESLINT_PLUGINS_SCHEMA_URL: https://json.schemastore.org/partial-eslint-plugins.json
+ PARTIAL_ESLINT_PLUGINS_PATH:
+ sh: task utility:mktemp-file TEMPLATE="partial-eslint-plugins-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/prettierrc.json
+ PRETTIERRC_SCHEMA_URL: https://json.schemastore.org/prettierrc.json
+ PRETTIERRC_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="prettierrc-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/semantic-release.json
+ SEMANTIC_RELEASE_SCHEMA_URL: https://json.schemastore.org/semantic-release.json
+ SEMANTIC_RELEASE_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="semantic-release-schema-XXXXXXXXXX.json"
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/stylelintrc.json
+ STYLELINTRC_SCHEMA_URL: https://json.schemastore.org/stylelintrc.json
+ STYLELINTRC_SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="stylelintrc-schema-XXXXXXXXXX.json"
+ INSTANCE_PATH: >-
+ {{default "." .PROJECT_PATH}}/package.json
+ PROJECT_FOLDER:
+ sh: pwd
+ WORKING_FOLDER:
+ sh: task utility:mktemp-folder TEMPLATE="dependabot-validate-XXXXXXXXXX"
+ cmds:
+ - wget --quiet --output-document="{{.SCHEMA_PATH}}" {{.SCHEMA_URL}}
+ - wget --quiet --output-document="{{.AVA_SCHEMA_PATH}}" {{.AVA_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.BASE_SCHEMA_PATH}}" {{.BASE_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.ESLINTRC_SCHEMA_PATH}}" {{.ESLINTRC_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.JSCPD_SCHEMA_PATH}}" {{.JSCPD_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.NPM_BADGES_SCHEMA_PATH}}" {{.NPM_BADGES_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.NODEMON_SCHEMA_PATH}}" {{.NODEMON_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.PARTIAL_ESLINT_PLUGINS_PATH}}" {{.PARTIAL_ESLINT_PLUGINS_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.PRETTIERRC_SCHEMA_PATH}}" {{.PRETTIERRC_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.SEMANTIC_RELEASE_SCHEMA_PATH}}" {{.SEMANTIC_RELEASE_SCHEMA_URL}}
+ - wget --quiet --output-document="{{.STYLELINTRC_SCHEMA_PATH}}" {{.STYLELINTRC_SCHEMA_URL}}
+ - |
+ cd "{{.WORKING_FOLDER}}" # Workaround for https://github.com/npm/cli/issues/3210
+ npx ajv-cli@{{.SCHEMA_DRAFT_4_AJV_CLI_VERSION}} validate \
+ --all-errors \
+ -s "{{.SCHEMA_PATH}}" \
+ -r "{{.AVA_SCHEMA_PATH}}" \
+ -r "{{.BASE_SCHEMA_PATH}}" \
+ -r "{{.ESLINTRC_SCHEMA_PATH}}" \
+ -r "{{.JSCPD_SCHEMA_PATH}}" \
+ -r "{{.NPM_BADGES_SCHEMA_PATH}}" \
+ -r "{{.NODEMON_SCHEMA_PATH}}" \
+ -r "{{.PARTIAL_ESLINT_PLUGINS_PATH}}" \
+ -r "{{.PRETTIERRC_SCHEMA_PATH}}" \
+ -r "{{.SEMANTIC_RELEASE_SCHEMA_PATH}}" \
+ -r "{{.STYLELINTRC_SCHEMA_PATH}}" \
+ -d "{{.PROJECT_FOLDER}}/{{.INSTANCE_PATH}}"
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
+ poetry:install-deps:
+ desc: Install dependencies managed by Poetry
+ cmds:
+ - poetry install --no-root
+
+ release:
+ desc: "Tag and push a new release. Usage: task release VERSION=X.Y.Z"
+ vars:
+ MAJOR: '{{splitList "." .VERSION | first}}'
+ DATE: '{{dateInZone "2006-01-02" now "UTC"}}'
+ RELEASE_NOTES_PATH:
+ sh: task utility:mktemp-file TEMPLATE="release-notes.XXXXXXXXXX"
+ preconditions:
+ - sh: '[[ "{{.VERSION}}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]'
+ msg: 'VERSION must be X.Y.Z (no "v" prefix). Got: "{{.VERSION}}"'
+ - sh: '[[ -z "$(git status --porcelain)" ]]'
+ msg: "Working tree must be clean."
+ - sh: '[[ "$(git rev-parse --abbrev-ref HEAD)" == "main" ]]'
+ msg: "Must be on main branch."
+ - sh: 'git fetch origin main && [[ "$(git rev-parse HEAD)" == "$(git rev-parse origin/main)" ]]'
+ msg: "main must be up to date with origin/main."
+ - sh: 'grep -q "^## Unreleased$" CHANGELOG.md'
+ msg: 'CHANGELOG.md must contain an "## Unreleased" section.'
+ - sh: '! git rev-parse "v{{.VERSION}}" >/dev/null 2>&1'
+ msg: "Tag v{{.VERSION}} already exists."
+ - sh: "command -v gh >/dev/null 2>&1"
+ msg: "gh CLI is required. Install: https://cli.github.com/"
+ cmds:
+ - node scripts/promote-changelog.mjs "{{.VERSION}}" "{{.DATE}}"
+ - git add CHANGELOG.md
+ - 'git commit -m "chore: release v{{.VERSION}}"'
+ - git tag "v{{.VERSION}}"
+ - git tag -f "v{{.MAJOR}}"
+ - git push origin main
+ - git push origin "v{{.VERSION}}"
+ - git push origin "v{{.MAJOR}}" --force
+ - node scripts/extract-changelog-section.mjs "{{.VERSION}}" > "{{.RELEASE_NOTES_PATH}}"
+ - gh release create "v{{.VERSION}}" --title "v{{.VERSION}}" --draft --notes-file "{{.RELEASE_NOTES_PATH}}"
+
+ ts:build:
+ desc: Build the action's TypeScript code.
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx tsc
+ - npx ncc build
+
+ ts:fix-lint:
+ desc: Fix TypeScript code linting violations
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx oxlint src/ __tests__/ --fix
+
+ ts:lint:
+ desc: Lint TypeScript code
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx oxlint src/ __tests__/
+
+ ts:test:
+ desc: Test the action's TypeScript code.
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - npx vitest run
+
+ ts:validate:
+ desc: Validate TypeScript configuration file against its JSON schema
+ vars:
+ # Source: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/tsconfig.json
+ SCHEMA_URL: https://json.schemastore.org/tsconfig.json
+ SCHEMA_PATH:
+ sh: task utility:mktemp-file TEMPLATE="tsconfig-schema-XXXXXXXXXX.json"
+ INSTANCE_PATH: '{{default "./tsconfig.json" .TSCONFIG_PATH}}'
+ WORKING_FOLDER:
+ sh: task utility:mktemp-folder TEMPLATE="ts-validate-XXXXXXXXXX"
+ WORKING_INSTANCE_PATH:
+ sh: echo "{{.WORKING_FOLDER}}/$(basename "{{.INSTANCE_PATH}}")"
+ deps:
+ - task: npm:install-deps
+ cmds:
+ - |
+ # TypeScript allows comments in tsconfig.json.
+ # ajv-cli did not support comments in JSON at the 3.x version in use (support was added in a later version).
+ npx strip-json-comments \
+ --no-whitespace \
+ "{{.INSTANCE_PATH}}" \
+ > "{{.WORKING_INSTANCE_PATH}}"
+ - |
+ wget \
+ --quiet \
+ --output-document="{{.SCHEMA_PATH}}" \
+ {{.SCHEMA_URL}}
+ - |
+ cd "{{.WORKING_FOLDER}}" # Workaround for https://github.com/npm/cli/issues/3210
+ npx ajv-cli@{{.SCHEMA_DRAFT_4_AJV_CLI_VERSION}} validate \
+ --all-errors \
+ -s "{{.SCHEMA_PATH}}" \
+ -d "{{.WORKING_INSTANCE_PATH}}"
+
+ # Make a temporary file named according to the passed TEMPLATE variable and print the path passed to stdout
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/windows-task/Taskfile.yml
+ utility:mktemp-file:
+ vars:
+ RAW_PATH:
+ sh: mktemp "${TMPDIR:-/tmp}/{{.TEMPLATE}}"
+ cmds:
+ - task: utility:normalize-path
+ vars:
+ RAW_PATH: "{{.RAW_PATH}}"
+
+ # Make a temporary folder named according to the passed TEMPLATE variable and print the path passed to stdout
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/windows-task/Taskfile.yml
+ utility:mktemp-folder:
+ vars:
+ RAW_PATH:
+ sh: mktemp -d "${TMPDIR:-/tmp}/{{.TEMPLATE}}"
+ cmds:
+ - task: utility:normalize-path
+ vars:
+ RAW_PATH: "{{.RAW_PATH}}"
+
+ # Print a normalized version of the path passed via the RAW_PATH variable to stdout
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/windows-task/Taskfile.yml
+ utility:normalize-path:
+ cmds:
+ - |
+ if [[ "{{.OS}}" == "Windows_NT" ]] && which cygpath &>/dev/null; then
+ # Even though the shell handles POSIX format absolute paths as expected, external applications do not.
+ # So paths passed to such applications must first be converted to Windows format.
+ cygpath -w "{{.RAW_PATH}}"
+ else
+ echo "{{.RAW_PATH}}"
+ fi
diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts
new file mode 100644
index 0000000..527757b
--- /dev/null
+++ b/__tests__/main.test.ts
@@ -0,0 +1,107 @@
+// Copyright (c) 2019 ARDUINO SA
+// Copyright (c) 2026 StepSecurity
+// The software is released under the GNU General Public License, which covers the main body
+// of the arduino/setup-task code. The terms of this license can be found at:
+// https://www.gnu.org/licenses/gpl-3.0.en.html
+//
+// You can be released from the requirements of the above licenses by purchasing
+// a commercial license. Buying such a license is mandatory if you want to modify or
+// otherwise use the software for commercial activities involving the Arduino
+// software without disclosing the source code of your own applications. To purchase
+// a commercial license, send an email to license@arduino.cc
+
+import { join } from "node:path";
+import { arch } from "node:os";
+import { existsSync } from "node:fs";
+import { mkdirP, rmRF } from "@actions/io";
+import nock from "nock";
+
+const testDir = import.meta.dirname;
+const toolDir = join(testDir, "runner", "tools");
+const tempDir = join(testDir, "runner", "temp");
+const dataDir = join(testDir, "testdata");
+const IS_WINDOWS = process.platform === "win32";
+
+process.env.RUNNER_TEMP = tempDir;
+process.env.RUNNER_TOOL_CACHE = toolDir;
+import { getTask } from "../src/installer.js";
+
+describe("installer tests", () => {
+ beforeEach(async () => {
+ await rmRF(toolDir);
+ await rmRF(tempDir);
+ await mkdirP(toolDir);
+ await mkdirP(tempDir);
+ });
+
+ afterAll(async () => {
+ try {
+ await rmRF(toolDir);
+ await rmRF(tempDir);
+ } catch {
+ console.log("Failed to remove test directories");
+ }
+ });
+
+ it("Downloads version of Task if no matching version is installed", async () => {
+ await getTask("3.37.1", "");
+ const taskDir = join(toolDir, "task", "3.37.1", arch());
+
+ expect(existsSync(`${taskDir}.complete`)).toBe(true);
+
+ if (IS_WINDOWS) {
+ expect(existsSync(join(taskDir, "bin", "task.exe"))).toBe(true);
+ } else {
+ expect(existsSync(join(taskDir, "bin", "task"))).toBe(true);
+ }
+ }, 100000);
+
+ describe("Gets the latest release of Task", () => {
+ beforeEach(() => {
+ nock("https://api.github.com")
+ .get("/repos/go-task/task/releases?per_page=100")
+ .replyWithFile(200, join(dataDir, "releases.json"));
+ });
+
+ afterEach(() => {
+ nock.cleanAll();
+ nock.enableNetConnect();
+ });
+
+ it("Gets the latest version of Task 3.36 using 3.36 and no matching version is installed", async () => {
+ await getTask("3.36", "");
+ const taskDir = join(toolDir, "task", "3.36.0", arch());
+
+ expect(existsSync(`${taskDir}.complete`)).toBe(true);
+ if (IS_WINDOWS) {
+ expect(existsSync(join(taskDir, "bin", "task.exe"))).toBe(true);
+ } else {
+ expect(existsSync(join(taskDir, "bin", "task"))).toBe(true);
+ }
+ });
+
+ it("Gets latest version of Task using 3.x and no matching version is installed", async () => {
+ await getTask("3.x", "");
+ const taskdir = join(toolDir, "task", "3.43.2", arch());
+
+ expect(existsSync(`${taskdir}.complete`)).toBe(true);
+ if (IS_WINDOWS) {
+ expect(existsSync(join(taskdir, "bin", "task.exe"))).toBe(true);
+ } else {
+ expect(existsSync(join(taskdir, "bin", "task"))).toBe(true);
+ }
+ });
+
+ it("Skips version computing when a valid semver is provided", async () => {
+ await getTask("3.37.0", "");
+ const taskdir = join(toolDir, "task", "3.37.0", arch());
+
+ expect(existsSync(`${taskdir}.complete`)).toBe(true);
+ if (IS_WINDOWS) {
+ expect(existsSync(join(taskdir, "bin", "task.exe"))).toBe(true);
+ } else {
+ expect(existsSync(join(taskdir, "bin", "task"))).toBe(true);
+ }
+ });
+ });
+});
diff --git a/__tests__/testdata/releases.json b/__tests__/testdata/releases.json
new file mode 100644
index 0000000..5f37469
--- /dev/null
+++ b/__tests__/testdata/releases.json
@@ -0,0 +1,64525 @@
+[
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/213754056",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/213754056/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/213754056/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.43.2",
+ "id": 213754056,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984MvaDI",
+ "tag_name": "v3.43.2",
+ "target_commitish": "main",
+ "name": "v3.43.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2025-04-21T19:35:01Z",
+ "published_at": "2025-04-21T19:41:35Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228820",
+ "id": 248228820,
+ "node_id": "RA_kwDOBPZW984Oy6vU",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:17Z",
+ "updated_at": "2025-04-21T19:40:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228807",
+ "id": 248228807,
+ "node_id": "RA_kwDOBPZW984Oy6vH",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6909811,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228800",
+ "id": 248228800,
+ "node_id": "RA_kwDOBPZW984Oy6vA",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6492985,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228801",
+ "id": 248228801,
+ "node_id": "RA_kwDOBPZW984Oy6vB",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6459013,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:15Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228808",
+ "id": 248228808,
+ "node_id": "RA_kwDOBPZW984Oy6vI",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6774426,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228802",
+ "id": 248228802,
+ "node_id": "RA_kwDOBPZW984Oy6vC",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6446301,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:15Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228795",
+ "id": 248228795,
+ "node_id": "RA_kwDOBPZW984Oy6u7",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6224867,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228819",
+ "id": 248228819,
+ "node_id": "RA_kwDOBPZW984Oy6vT",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6497092,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:17Z",
+ "updated_at": "2025-04-21T19:40:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228818",
+ "id": 248228818,
+ "node_id": "RA_kwDOBPZW984Oy6vS",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6774145,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:17Z",
+ "updated_at": "2025-04-21T19:40:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228798",
+ "id": 248228798,
+ "node_id": "RA_kwDOBPZW984Oy6u-",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6482697,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228813",
+ "id": 248228813,
+ "node_id": "RA_kwDOBPZW984Oy6vN",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6813740,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228812",
+ "id": 248228812,
+ "node_id": "RA_kwDOBPZW984Oy6vM",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 7073502,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228794",
+ "id": 248228794,
+ "node_id": "RA_kwDOBPZW984Oy6u6",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6791797,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228810",
+ "id": 248228810,
+ "node_id": "RA_kwDOBPZW984Oy6vK",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6480508,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228815",
+ "id": 248228815,
+ "node_id": "RA_kwDOBPZW984Oy6vP",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6698704,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:17Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228797",
+ "id": 248228797,
+ "node_id": "RA_kwDOBPZW984Oy6u9",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6465892,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228809",
+ "id": 248228809,
+ "node_id": "RA_kwDOBPZW984Oy6vJ",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6265778,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228814",
+ "id": 248228814,
+ "node_id": "RA_kwDOBPZW984Oy6vO",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6501368,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:17Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228793",
+ "id": 248228793,
+ "node_id": "RA_kwDOBPZW984Oy6u5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6245741,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228811",
+ "id": 248228811,
+ "node_id": "RA_kwDOBPZW984Oy6vL",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6445862,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228816",
+ "id": 248228816,
+ "node_id": "RA_kwDOBPZW984Oy6vQ",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6723223,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:17Z",
+ "updated_at": "2025-04-21T19:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228806",
+ "id": 248228806,
+ "node_id": "RA_kwDOBPZW984Oy6vG",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6426211,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:16Z",
+ "updated_at": "2025-04-21T19:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228796",
+ "id": 248228796,
+ "node_id": "RA_kwDOBPZW984Oy6u8",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6774533,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228799",
+ "id": 248228799,
+ "node_id": "RA_kwDOBPZW984Oy6u_",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 7002973,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:14Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228803",
+ "id": 248228803,
+ "node_id": "RA_kwDOBPZW984Oy6vD",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6637632,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:15Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248228805",
+ "id": 248228805,
+ "node_id": "RA_kwDOBPZW984Oy6vF",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6354834,
+ "download_count": 0,
+ "created_at": "2025-04-21T19:40:15Z",
+ "updated_at": "2025-04-21T19:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.2/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.43.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.43.2",
+ "body": "## Changelog\r\n\r\n- Fixed regresion of `CLI_ARGS` being exposed as the wrong type (#2190, #2191 by @vmaerten).\r\n\r\n",
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/213722488",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/213722488/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/213722488/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.43.1",
+ "id": 213722488,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984MvSV4",
+ "tag_name": "v3.43.1",
+ "target_commitish": "main",
+ "name": "v3.43.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2025-04-21T16:57:43Z",
+ "published_at": "2025-04-21T17:13:30Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197587",
+ "id": 248197587,
+ "node_id": "RA_kwDOBPZW984OyzHT",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 753,
+ "created_at": "2025-04-21T17:03:04Z",
+ "updated_at": "2025-04-21T17:03:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197551",
+ "id": 248197551,
+ "node_id": "RA_kwDOBPZW984OyzGv",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6909788,
+ "download_count": 10,
+ "created_at": "2025-04-21T17:02:59Z",
+ "updated_at": "2025-04-21T17:03:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197565",
+ "id": 248197565,
+ "node_id": "RA_kwDOBPZW984OyzG9",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6493166,
+ "download_count": 107,
+ "created_at": "2025-04-21T17:03:02Z",
+ "updated_at": "2025-04-21T17:03:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197547",
+ "id": 248197547,
+ "node_id": "RA_kwDOBPZW984OyzGr",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6459037,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:02:59Z",
+ "updated_at": "2025-04-21T17:03:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197569",
+ "id": 248197569,
+ "node_id": "RA_kwDOBPZW984OyzHB",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6774422,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:02Z",
+ "updated_at": "2025-04-21T17:03:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197555",
+ "id": 248197555,
+ "node_id": "RA_kwDOBPZW984OyzGz",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6446351,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:00Z",
+ "updated_at": "2025-04-21T17:03:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197563",
+ "id": 248197563,
+ "node_id": "RA_kwDOBPZW984OyzG7",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6224799,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:01Z",
+ "updated_at": "2025-04-21T17:03:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197574",
+ "id": 248197574,
+ "node_id": "RA_kwDOBPZW984OyzHG",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6497082,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:03Z",
+ "updated_at": "2025-04-21T17:03:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197584",
+ "id": 248197584,
+ "node_id": "RA_kwDOBPZW984OyzHQ",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6759958,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:04Z",
+ "updated_at": "2025-04-21T17:03:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197567",
+ "id": 248197567,
+ "node_id": "RA_kwDOBPZW984OyzG_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6482681,
+ "download_count": 4,
+ "created_at": "2025-04-21T17:03:02Z",
+ "updated_at": "2025-04-21T17:03:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197576",
+ "id": 248197576,
+ "node_id": "RA_kwDOBPZW984OyzHI",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6813982,
+ "download_count": 4,
+ "created_at": "2025-04-21T17:03:03Z",
+ "updated_at": "2025-04-21T17:03:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197577",
+ "id": 248197577,
+ "node_id": "RA_kwDOBPZW984OyzHJ",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 7073789,
+ "download_count": 4,
+ "created_at": "2025-04-21T17:03:03Z",
+ "updated_at": "2025-04-21T17:03:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197548",
+ "id": 248197548,
+ "node_id": "RA_kwDOBPZW984OyzGs",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6792009,
+ "download_count": 1945,
+ "created_at": "2025-04-21T17:02:59Z",
+ "updated_at": "2025-04-21T17:03:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197585",
+ "id": 248197585,
+ "node_id": "RA_kwDOBPZW984OyzHR",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6480526,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:04Z",
+ "updated_at": "2025-04-21T17:03:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197578",
+ "id": 248197578,
+ "node_id": "RA_kwDOBPZW984OyzHK",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6712468,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:03Z",
+ "updated_at": "2025-04-21T17:03:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197557",
+ "id": 248197557,
+ "node_id": "RA_kwDOBPZW984OyzG1",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6465932,
+ "download_count": 4,
+ "created_at": "2025-04-21T17:03:00Z",
+ "updated_at": "2025-04-21T17:03:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197570",
+ "id": 248197570,
+ "node_id": "RA_kwDOBPZW984OyzHC",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6265804,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:02Z",
+ "updated_at": "2025-04-21T17:03:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197579",
+ "id": 248197579,
+ "node_id": "RA_kwDOBPZW984OyzHL",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6481382,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:03Z",
+ "updated_at": "2025-04-21T17:03:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197558",
+ "id": 248197558,
+ "node_id": "RA_kwDOBPZW984OyzG2",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6245654,
+ "download_count": 54,
+ "created_at": "2025-04-21T17:03:01Z",
+ "updated_at": "2025-04-21T17:03:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197573",
+ "id": 248197573,
+ "node_id": "RA_kwDOBPZW984OyzHF",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6446018,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:02Z",
+ "updated_at": "2025-04-21T17:03:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197583",
+ "id": 248197583,
+ "node_id": "RA_kwDOBPZW984OyzHP",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6708175,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:04Z",
+ "updated_at": "2025-04-21T17:03:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197561",
+ "id": 248197561,
+ "node_id": "RA_kwDOBPZW984OyzG5",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6426382,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:01Z",
+ "updated_at": "2025-04-21T17:03:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197556",
+ "id": 248197556,
+ "node_id": "RA_kwDOBPZW984OyzG0",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6774793,
+ "download_count": 8,
+ "created_at": "2025-04-21T17:03:00Z",
+ "updated_at": "2025-04-21T17:03:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197564",
+ "id": 248197564,
+ "node_id": "RA_kwDOBPZW984OyzG8",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 7003269,
+ "download_count": 45,
+ "created_at": "2025-04-21T17:03:01Z",
+ "updated_at": "2025-04-21T17:03:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197554",
+ "id": 248197554,
+ "node_id": "RA_kwDOBPZW984OyzGy",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6637560,
+ "download_count": 3,
+ "created_at": "2025-04-21T17:03:00Z",
+ "updated_at": "2025-04-21T17:03:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/248197550",
+ "id": 248197550,
+ "node_id": "RA_kwDOBPZW984OyzGu",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6354994,
+ "download_count": 6,
+ "created_at": "2025-04-21T17:02:59Z",
+ "updated_at": "2025-04-21T17:03:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.43.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.43.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.43.1",
+ "body": "## Changelog\r\n\r\n- Significant improvements were made to the watcher. We migrated from [watcher](https://github.com/radovskyb/watcher) to [fsnotify](https://github.com/fsnotify/fsnotify). The former library used polling, which means Task had a high CPU usage when watching too many files. `fsnotify` uses proper the APIs from each operating system to watch files, which means a much better performance. The default interval changed from 5 seconds to 100 milliseconds, because now it configures the wait time for duplicated events, instead of the polling time (#2048 by @andreynering, #1508, #985, #1179).\r\n- The [Map Variables experiment](https://github.com/go-task/task/issues/1585) was made generally available so you can now [define map variables in your Taskfiles!](https://taskfile.dev/usage/#variables) (#1585, #1547, #2081 by @pd93).\r\n- Wildcards can now [match multiple tasks](https://taskfile.dev/usage/#wildcard-arguments) (#2072, #2121 by @pd93).\r\n- Added the ability to [loop over the files specified by the `generates` keyword](https://taskfile.dev/usage/#looping-over-your-tasks-sources-or-generated-files). This works the same way as looping over sources (#2151 by @sedyh).\r\n- Added the ability to resolve variables when defining an include variable (#2108, #2113 by @pd93).\r\n- A few changes have been made to the [Remote Taskfiles experiment](https://github.com/go-task/task/issues/1317) (#1402, #2176 by @pd93):\r\n - Cached files are now prioritized over remote ones.\r\n - Added an `--expiry` flag which sets the TTL for a remote file cache. By default the value will be 0 (caching disabled). If Task is running in offline mode or fails to make a connection, it will fallback on the cache.\r\n- `.taskrc` files can now be used from subdirectories and will be searched for recursively up the file tree in the same way that Taskfiles are (#2159, #2166 by @pd93).\r\n- The default taskfile (output when using the `--init` flag) is now an embedded file in the binary instead of being stored in the code (#2112 by @pd93).\r\n- Improved the way we report the Task version when using the `--version` flag or `{{.TASK_VERSION}}` variable. This should now be more consistent and easier for package maintainers to use (#2131 by @pd93).\r\n- Fixed a bug where globstar (`**`) matching in `sources` only resolved the first result (#2073, #2075 by @pd93).\r\n- Fixed a bug where sorting tasks by \"none\" would use the default sorting instead of leaving tasks in the order they were defined (#2124, #2125 by @trulede).\r\n- Fixed Fish completion on newer Fish versions (#2130 by @atusy).\r\n- Fixed a bug where undefined/null variables resolved to an empty string instead of `nil` (#1911, #2144 by @pd93).\r\n- The `USER_WORKING_DIR` special now will now properly account for the `--dir` (`-d`) flag, if given (#2102, #2103 by @jaynis, #2186 by @andreynering).\r\n- Fix Fish completions when `--global` (`-g`) is given (#2134 by @atusy).\r\n- Fixed variables not available when using `defer:` (#1909, #2173 by @vmaerten).\r\n\r\n## Contribute\r\n\r\nLove Task? If you or your company benefit from our work, consider [becoming a sponsor](https://taskfile.dev/donate)!",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/213722488/reactions",
+ "total_count": 5,
+ "+1": 4,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 1,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 7
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/204835692",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/204835692/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/204835692/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.42.1",
+ "id": 204835692,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984MNYts",
+ "tag_name": "v3.42.1",
+ "target_commitish": "main",
+ "name": "v3.42.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2025-03-10T20:18:58Z",
+ "published_at": "2025-03-10T20:29:28Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262439",
+ "id": 236262439,
+ "node_id": "RA_kwDOBPZW984OFRQn",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 285161,
+ "created_at": "2025-03-10T20:23:50Z",
+ "updated_at": "2025-03-10T20:23:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262409",
+ "id": 236262409,
+ "node_id": "RA_kwDOBPZW984OFRQJ",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6576567,
+ "download_count": 2609,
+ "created_at": "2025-03-10T20:23:46Z",
+ "updated_at": "2025-03-10T20:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262407",
+ "id": 236262407,
+ "node_id": "RA_kwDOBPZW984OFRQH",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6188105,
+ "download_count": 20348,
+ "created_at": "2025-03-10T20:23:46Z",
+ "updated_at": "2025-03-10T20:23:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262419",
+ "id": 236262419,
+ "node_id": "RA_kwDOBPZW984OFRQT",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6078067,
+ "download_count": 53,
+ "created_at": "2025-03-10T20:23:47Z",
+ "updated_at": "2025-03-10T20:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262400",
+ "id": 236262400,
+ "node_id": "RA_kwDOBPZW984OFRQA",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6450183,
+ "download_count": 64,
+ "created_at": "2025-03-10T20:23:45Z",
+ "updated_at": "2025-03-10T20:23:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262401",
+ "id": 236262401,
+ "node_id": "RA_kwDOBPZW984OFRQB",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6069699,
+ "download_count": 40,
+ "created_at": "2025-03-10T20:23:45Z",
+ "updated_at": "2025-03-10T20:23:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262402",
+ "id": 236262402,
+ "node_id": "RA_kwDOBPZW984OFRQC",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5936752,
+ "download_count": 42,
+ "created_at": "2025-03-10T20:23:45Z",
+ "updated_at": "2025-03-10T20:23:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262426",
+ "id": 236262426,
+ "node_id": "RA_kwDOBPZW984OFRQa",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6120600,
+ "download_count": 110,
+ "created_at": "2025-03-10T20:23:48Z",
+ "updated_at": "2025-03-10T20:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262432",
+ "id": 236262432,
+ "node_id": "RA_kwDOBPZW984OFRQg",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6351888,
+ "download_count": 164,
+ "created_at": "2025-03-10T20:23:49Z",
+ "updated_at": "2025-03-10T20:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262421",
+ "id": 236262421,
+ "node_id": "RA_kwDOBPZW984OFRQV",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6106600,
+ "download_count": 174,
+ "created_at": "2025-03-10T20:23:47Z",
+ "updated_at": "2025-03-10T20:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262428",
+ "id": 236262428,
+ "node_id": "RA_kwDOBPZW984OFRQc",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6491784,
+ "download_count": 3491,
+ "created_at": "2025-03-10T20:23:48Z",
+ "updated_at": "2025-03-10T20:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262435",
+ "id": 236262435,
+ "node_id": "RA_kwDOBPZW984OFRQj",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6755649,
+ "download_count": 197,
+ "created_at": "2025-03-10T20:23:49Z",
+ "updated_at": "2025-03-10T20:23:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262408",
+ "id": 236262408,
+ "node_id": "RA_kwDOBPZW984OFRQI",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6468672,
+ "download_count": 698969,
+ "created_at": "2025-03-10T20:23:46Z",
+ "updated_at": "2025-03-10T20:23:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262437",
+ "id": 236262437,
+ "node_id": "RA_kwDOBPZW984OFRQl",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6105754,
+ "download_count": 35,
+ "created_at": "2025-03-10T20:23:49Z",
+ "updated_at": "2025-03-10T20:23:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262431",
+ "id": 236262431,
+ "node_id": "RA_kwDOBPZW984OFRQf",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6346303,
+ "download_count": 35,
+ "created_at": "2025-03-10T20:23:49Z",
+ "updated_at": "2025-03-10T20:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262422",
+ "id": 236262422,
+ "node_id": "RA_kwDOBPZW984OFRQW",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6094499,
+ "download_count": 54,
+ "created_at": "2025-03-10T20:23:47Z",
+ "updated_at": "2025-03-10T20:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262424",
+ "id": 236262424,
+ "node_id": "RA_kwDOBPZW984OFRQY",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5985930,
+ "download_count": 217,
+ "created_at": "2025-03-10T20:23:48Z",
+ "updated_at": "2025-03-10T20:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262430",
+ "id": 236262430,
+ "node_id": "RA_kwDOBPZW984OFRQe",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6214957,
+ "download_count": 37,
+ "created_at": "2025-03-10T20:23:48Z",
+ "updated_at": "2025-03-10T20:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262423",
+ "id": 236262423,
+ "node_id": "RA_kwDOBPZW984OFRQX",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5968123,
+ "download_count": 48387,
+ "created_at": "2025-03-10T20:23:48Z",
+ "updated_at": "2025-03-10T20:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262425",
+ "id": 236262425,
+ "node_id": "RA_kwDOBPZW984OFRQZ",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6040914,
+ "download_count": 46,
+ "created_at": "2025-03-10T20:23:48Z",
+ "updated_at": "2025-03-10T20:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262434",
+ "id": 236262434,
+ "node_id": "RA_kwDOBPZW984OFRQi",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6268045,
+ "download_count": 45,
+ "created_at": "2025-03-10T20:23:49Z",
+ "updated_at": "2025-03-10T20:23:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262403",
+ "id": 236262403,
+ "node_id": "RA_kwDOBPZW984OFRQD",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6019881,
+ "download_count": 54,
+ "created_at": "2025-03-10T20:23:45Z",
+ "updated_at": "2025-03-10T20:23:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262410",
+ "id": 236262410,
+ "node_id": "RA_kwDOBPZW984OFRQK",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6385506,
+ "download_count": 128,
+ "created_at": "2025-03-10T20:23:46Z",
+ "updated_at": "2025-03-10T20:23:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262418",
+ "id": 236262418,
+ "node_id": "RA_kwDOBPZW984OFRQS",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6676855,
+ "download_count": 13135,
+ "created_at": "2025-03-10T20:23:47Z",
+ "updated_at": "2025-03-10T20:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262416",
+ "id": 236262416,
+ "node_id": "RA_kwDOBPZW984OFRQQ",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6255252,
+ "download_count": 45,
+ "created_at": "2025-03-10T20:23:47Z",
+ "updated_at": "2025-03-10T20:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/236262420",
+ "id": 236262420,
+ "node_id": "RA_kwDOBPZW984OFRQU",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6065834,
+ "download_count": 121,
+ "created_at": "2025-03-10T20:23:47Z",
+ "updated_at": "2025-03-10T20:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.42.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.42.1",
+ "body": "- Fixed a bug where some special variables caused a type error when used in global variables (#2106, #2107 by @pd93).\r\n",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/204835692/reactions",
+ "total_count": 9,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 1,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/204563288",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/204563288/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/204563288/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.42.0",
+ "id": 204563288,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984MMWNY",
+ "tag_name": "v3.42.0",
+ "target_commitish": "main",
+ "name": "v3.42.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2025-03-09T01:34:07Z",
+ "published_at": "2025-03-09T01:43:34Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832871",
+ "id": 235832871,
+ "node_id": "RA_kwDOBPZW984ODoYn",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 16201,
+ "created_at": "2025-03-09T01:39:44Z",
+ "updated_at": "2025-03-09T01:39:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832847",
+ "id": 235832847,
+ "node_id": "RA_kwDOBPZW984ODoYP",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6576764,
+ "download_count": 175,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832831",
+ "id": 235832831,
+ "node_id": "RA_kwDOBPZW984ODoX_",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6187724,
+ "download_count": 1408,
+ "created_at": "2025-03-09T01:39:40Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832852",
+ "id": 235832852,
+ "node_id": "RA_kwDOBPZW984ODoYU",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6077936,
+ "download_count": 17,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832846",
+ "id": 235832846,
+ "node_id": "RA_kwDOBPZW984ODoYO",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6450071,
+ "download_count": 17,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832845",
+ "id": 235832845,
+ "node_id": "RA_kwDOBPZW984ODoYN",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6069535,
+ "download_count": 6,
+ "created_at": "2025-03-09T01:39:41Z",
+ "updated_at": "2025-03-09T01:39:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832843",
+ "id": 235832843,
+ "node_id": "RA_kwDOBPZW984ODoYL",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5936680,
+ "download_count": 6,
+ "created_at": "2025-03-09T01:39:41Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832857",
+ "id": 235832857,
+ "node_id": "RA_kwDOBPZW984ODoYZ",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6120530,
+ "download_count": 21,
+ "created_at": "2025-03-09T01:39:43Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832861",
+ "id": 235832861,
+ "node_id": "RA_kwDOBPZW984ODoYd",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6351723,
+ "download_count": 21,
+ "created_at": "2025-03-09T01:39:43Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832829",
+ "id": 235832829,
+ "node_id": "RA_kwDOBPZW984ODoX9",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6106493,
+ "download_count": 25,
+ "created_at": "2025-03-09T01:39:40Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832859",
+ "id": 235832859,
+ "node_id": "RA_kwDOBPZW984ODoYb",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6491392,
+ "download_count": 249,
+ "created_at": "2025-03-09T01:39:43Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832862",
+ "id": 235832862,
+ "node_id": "RA_kwDOBPZW984ODoYe",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6755474,
+ "download_count": 44,
+ "created_at": "2025-03-09T01:39:43Z",
+ "updated_at": "2025-03-09T01:39:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832842",
+ "id": 235832842,
+ "node_id": "RA_kwDOBPZW984ODoYK",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6468470,
+ "download_count": 32489,
+ "created_at": "2025-03-09T01:39:41Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832858",
+ "id": 235832858,
+ "node_id": "RA_kwDOBPZW984ODoYa",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6105622,
+ "download_count": 5,
+ "created_at": "2025-03-09T01:39:43Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832864",
+ "id": 235832864,
+ "node_id": "RA_kwDOBPZW984ODoYg",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6346610,
+ "download_count": 5,
+ "created_at": "2025-03-09T01:39:44Z",
+ "updated_at": "2025-03-09T01:39:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832851",
+ "id": 235832851,
+ "node_id": "RA_kwDOBPZW984ODoYT",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6094316,
+ "download_count": 8,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832856",
+ "id": 235832856,
+ "node_id": "RA_kwDOBPZW984ODoYY",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5985876,
+ "download_count": 43,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832863",
+ "id": 235832863,
+ "node_id": "RA_kwDOBPZW984ODoYf",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6214827,
+ "download_count": 8,
+ "created_at": "2025-03-09T01:39:44Z",
+ "updated_at": "2025-03-09T01:39:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832840",
+ "id": 235832840,
+ "node_id": "RA_kwDOBPZW984ODoYI",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5968065,
+ "download_count": 2030,
+ "created_at": "2025-03-09T01:39:41Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832869",
+ "id": 235832869,
+ "node_id": "RA_kwDOBPZW984ODoYl",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6040554,
+ "download_count": 17,
+ "created_at": "2025-03-09T01:39:44Z",
+ "updated_at": "2025-03-09T01:39:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832867",
+ "id": 235832867,
+ "node_id": "RA_kwDOBPZW984ODoYj",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6267978,
+ "download_count": 17,
+ "created_at": "2025-03-09T01:39:44Z",
+ "updated_at": "2025-03-09T01:39:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832830",
+ "id": 235832830,
+ "node_id": "RA_kwDOBPZW984ODoX-",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6019599,
+ "download_count": 20,
+ "created_at": "2025-03-09T01:39:40Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832841",
+ "id": 235832841,
+ "node_id": "RA_kwDOBPZW984ODoYJ",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6385281,
+ "download_count": 147,
+ "created_at": "2025-03-09T01:39:41Z",
+ "updated_at": "2025-03-09T01:39:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832850",
+ "id": 235832850,
+ "node_id": "RA_kwDOBPZW984ODoYS",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6676743,
+ "download_count": 1644,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832828",
+ "id": 235832828,
+ "node_id": "RA_kwDOBPZW984ODoX8",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6255191,
+ "download_count": 6,
+ "created_at": "2025-03-09T01:39:40Z",
+ "updated_at": "2025-03-09T01:39:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/235832854",
+ "id": 235832854,
+ "node_id": "RA_kwDOBPZW984ODoYW",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6065663,
+ "download_count": 130,
+ "created_at": "2025-03-09T01:39:42Z",
+ "updated_at": "2025-03-09T01:39:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.42.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.42.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.42.0",
+ "body": "- Made `--init` less verbose by default and respect `--silent` and `--verbose` flags (#2009, #2011 by @HeCorr).\r\n- `--init` now accepts a file name or directory as an argument (#2008, #2018 by @HeCorr).\r\n- Fix a bug where an HTTP node's location was being mutated incorrectly (#2007 by @jeongukjae).\r\n- Fixed a bug where allowed values didn't work with dynamic var (#2032, #2033 by @vmaerten).\r\n- Use only the relevant checker (timestamp or checksum) to improve performance (#2029, #2031 by @vmaerten).\r\n- Print warnings when attempting to enable an inactive experiment or an active experiment with an invalid value (#1979, #2049 by @pd93).\r\n- Refactored the experiments package and added tests (#2049 by @pd93).\r\n- Show allowed values when a variable with an enum is missing (#2027, #2052 by @vmaerten).\r\n- Refactored how snippets in error work and added tests (#2068 by @pd93).\r\n- Fixed a bug where errors decoding commands were sometimes unhelpful (#2068 by @pd93).\r\n- Fixed a bug in the Taskfile schema where `defer` statements in the shorthand `cmds` syntax were not considered valid (#2068 by @pd93).\r\n- Refactored how task sorting functions work (#1798 by @pd93).\r\n- Added a new `.taskrc.yml` (or `.taskrc.yaml`) file to let users enable experiments (similar to `.env`) (#1982 by @vmaerten).\r\n- Added new [Getting Started docs](https://taskfile.dev/getting-started) (#2086 by @pd93).\r\n- Allow `matrix` to use references to other variables (#2065, #2069 by @pd93).\r\n- Fixed a bug where, when a dynamic variable is provided, even if it is not used, all other variables become unavailable in the templating system within the include (#2092 by @vmaerten).\r\n\r\n#### Package API\r\n\r\nUnlike our CLI tool, [Task's package API is not currently stable](https://taskfile.dev/reference/package). In an effort to ease the pain of breaking changes for our users, we will be providing changelogs for our package API going forwards. The hope is that these changes will provide a better long-term experience for our users and allow to stabilize the API in the future. #121 now tracks this piece of work.\r\n\r\n- Bumped the minimum required Go version to 1.23 (#2059 by @pd93).\r\n- [`task.InitTaskfile`](https://pkg.go.dev/github.com/go-task/task/v3#InitTaskfile) (#2011, ff8c913 by @HeCorr and @pd93)\r\n - No longer accepts an `io.Writer` (output is now the caller's responsibility).\r\n - The path argument can now be a filename OR a directory.\r\n - The function now returns the full path of the generated file.\r\n- [`TaskfileDecodeError.WithFileInfo`](https://pkg.go.dev/github.com/go-task/task/v3/errors#TaskfileDecodeError.WithFileInfo) now accepts a string instead of the arguments required to generate a snippet (#2068 by @pd93).\r\n - The caller is now expected to create the snippet themselves (see below).\r\n- [`TaskfileSnippet`](https://pkg.go.dev/github.com/go-task/task/v3/taskfile#Snippet) and related code moved from the `errors` package to the `taskfile` package (#2068 by @pd93).\r\n- Renamed `TaskMissingRequiredVars` to [`TaskMissingRequiredVarsError`](https://pkg.go.dev/github.com/go-task/task/v3/errors#TaskMissingRequiredVarsError) (#2052 by @vmaerten).\r\n- Renamed `TaskNotAllowedVars` to [`TaskNotAllowedVarsError`](https://pkg.go.dev/github.com/go-task/task/v3/errors#TaskNotAllowedVarsError) (#2052 by @vmaerten).\r\n- The [`taskfile.Reader`](https://pkg.go.dev/github.com/go-task/task/v3/taskfile#Reader) is now constructed using the functional options pattern (#2082 by @pd93).\r\n- Removed our internal `logger.Logger` from the entire `taskfile` package (#2082 by @pd93).\r\n - Users are now expected to pass a custom debug/prompt functions into [`taskfile.Reader`](https://pkg.go.dev/github.com/go-task/task/v3/taskfile#Reader) if they want this functionality by using the new [`WithDebugFunc`](https://pkg.go.dev/github.com/go-task/task/v3/taskfile#WithDebugFunc) and [`WithPromptFunc`](https://pkg.go.dev/github.com/go-task/task/v3/taskfile#WithPromptFunc) functional options.\r\n- Remove `Range` functions in the `taskfile/ast` package in favour of new iterator functions (#1798 by @pd93).\r\n- `ast.Call` was moved from the `taskfile/ast` package to the main `task` package (#2084 by @pd93).\r\n- `ast.Tasks.FindMatchingTasks` was moved from the `taskfile/ast` package to the `task.Executor.FindMatchingTasks` in the main `task` package (#2084 by @pd93).\r\n- The `Compiler` and its `GetVariables` and `FastGetVariables` methods were moved from the `internal/compiler` package to the main `task` package (#2084 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/204563288/reactions",
+ "total_count": 9,
+ "+1": 2,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 1,
+ "rocket": 6,
+ "eyes": 0
+ },
+ "mentions_count": 4
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/195464501",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/195464501/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/195464501/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.41.0",
+ "id": 195464501,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Lpo01",
+ "tag_name": "v3.41.0",
+ "target_commitish": "main",
+ "name": "v3.41.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2025-01-18T14:15:57Z",
+ "published_at": "2025-01-18T14:22:48Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404434",
+ "id": 221404434,
+ "node_id": "RA_kwDOBPZW984NMl0S",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 337878,
+ "created_at": "2025-01-18T14:20:35Z",
+ "updated_at": "2025-01-18T14:20:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404419",
+ "id": 221404419,
+ "node_id": "RA_kwDOBPZW984NMl0D",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6364786,
+ "download_count": 2053,
+ "created_at": "2025-01-18T14:20:32Z",
+ "updated_at": "2025-01-18T14:20:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404416",
+ "id": 221404416,
+ "node_id": "RA_kwDOBPZW984NMl0A",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5997745,
+ "download_count": 24658,
+ "created_at": "2025-01-18T14:20:32Z",
+ "updated_at": "2025-01-18T14:20:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404408",
+ "id": 221404408,
+ "node_id": "RA_kwDOBPZW984NMlz4",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5877894,
+ "download_count": 63,
+ "created_at": "2025-01-18T14:20:30Z",
+ "updated_at": "2025-01-18T14:20:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404413",
+ "id": 221404413,
+ "node_id": "RA_kwDOBPZW984NMlz9",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6245682,
+ "download_count": 73,
+ "created_at": "2025-01-18T14:20:31Z",
+ "updated_at": "2025-01-18T14:20:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404418",
+ "id": 221404418,
+ "node_id": "RA_kwDOBPZW984NMl0C",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5892560,
+ "download_count": 43,
+ "created_at": "2025-01-18T14:20:32Z",
+ "updated_at": "2025-01-18T14:20:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404412",
+ "id": 221404412,
+ "node_id": "RA_kwDOBPZW984NMlz8",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5754274,
+ "download_count": 43,
+ "created_at": "2025-01-18T14:20:31Z",
+ "updated_at": "2025-01-18T14:20:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404426",
+ "id": 221404426,
+ "node_id": "RA_kwDOBPZW984NMl0K",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5917222,
+ "download_count": 151,
+ "created_at": "2025-01-18T14:20:34Z",
+ "updated_at": "2025-01-18T14:20:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404429",
+ "id": 221404429,
+ "node_id": "RA_kwDOBPZW984NMl0N",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6143630,
+ "download_count": 313,
+ "created_at": "2025-01-18T14:20:34Z",
+ "updated_at": "2025-01-18T14:20:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404415",
+ "id": 221404415,
+ "node_id": "RA_kwDOBPZW984NMlz_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5902274,
+ "download_count": 334,
+ "created_at": "2025-01-18T14:20:32Z",
+ "updated_at": "2025-01-18T14:20:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404427",
+ "id": 221404427,
+ "node_id": "RA_kwDOBPZW984NMl0L",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6282610,
+ "download_count": 5555,
+ "created_at": "2025-01-18T14:20:34Z",
+ "updated_at": "2025-01-18T14:20:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404430",
+ "id": 221404430,
+ "node_id": "RA_kwDOBPZW984NMl0O",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6517782,
+ "download_count": 177,
+ "created_at": "2025-01-18T14:20:34Z",
+ "updated_at": "2025-01-18T14:20:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404423",
+ "id": 221404423,
+ "node_id": "RA_kwDOBPZW984NMl0H",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6260461,
+ "download_count": 854756,
+ "created_at": "2025-01-18T14:20:33Z",
+ "updated_at": "2025-01-18T14:20:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404425",
+ "id": 221404425,
+ "node_id": "RA_kwDOBPZW984NMl0J",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5920296,
+ "download_count": 50,
+ "created_at": "2025-01-18T14:20:33Z",
+ "updated_at": "2025-01-18T14:20:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404431",
+ "id": 221404431,
+ "node_id": "RA_kwDOBPZW984NMl0P",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6113658,
+ "download_count": 44,
+ "created_at": "2025-01-18T14:20:35Z",
+ "updated_at": "2025-01-18T14:20:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404409",
+ "id": 221404409,
+ "node_id": "RA_kwDOBPZW984NMlz5",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5905586,
+ "download_count": 96,
+ "created_at": "2025-01-18T14:20:30Z",
+ "updated_at": "2025-01-18T14:20:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404424",
+ "id": 221404424,
+ "node_id": "RA_kwDOBPZW984NMl0I",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5792262,
+ "download_count": 229,
+ "created_at": "2025-01-18T14:20:33Z",
+ "updated_at": "2025-01-18T14:20:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404432",
+ "id": 221404432,
+ "node_id": "RA_kwDOBPZW984NMl0Q",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6000244,
+ "download_count": 52,
+ "created_at": "2025-01-18T14:20:35Z",
+ "updated_at": "2025-01-18T14:20:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404407",
+ "id": 221404407,
+ "node_id": "RA_kwDOBPZW984NMlz3",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5773752,
+ "download_count": 60989,
+ "created_at": "2025-01-18T14:20:30Z",
+ "updated_at": "2025-01-18T14:20:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404433",
+ "id": 221404433,
+ "node_id": "RA_kwDOBPZW984NMl0R",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5857170,
+ "download_count": 66,
+ "created_at": "2025-01-18T14:20:35Z",
+ "updated_at": "2025-01-18T14:20:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404428",
+ "id": 221404428,
+ "node_id": "RA_kwDOBPZW984NMl0M",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6097170,
+ "download_count": 65,
+ "created_at": "2025-01-18T14:20:34Z",
+ "updated_at": "2025-01-18T14:20:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404411",
+ "id": 221404411,
+ "node_id": "RA_kwDOBPZW984NMlz7",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5835269,
+ "download_count": 71,
+ "created_at": "2025-01-18T14:20:31Z",
+ "updated_at": "2025-01-18T14:20:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404422",
+ "id": 221404422,
+ "node_id": "RA_kwDOBPZW984NMl0G",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6169458,
+ "download_count": 302,
+ "created_at": "2025-01-18T14:20:33Z",
+ "updated_at": "2025-01-18T14:20:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404414",
+ "id": 221404414,
+ "node_id": "RA_kwDOBPZW984NMlz-",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6457689,
+ "download_count": 15417,
+ "created_at": "2025-01-18T14:20:31Z",
+ "updated_at": "2025-01-18T14:20:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404405",
+ "id": 221404405,
+ "node_id": "RA_kwDOBPZW984NMlz1",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6065797,
+ "download_count": 43,
+ "created_at": "2025-01-18T14:20:30Z",
+ "updated_at": "2025-01-18T14:20:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/221404420",
+ "id": 221404420,
+ "node_id": "RA_kwDOBPZW984NMl0E",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 5874681,
+ "download_count": 269,
+ "created_at": "2025-01-18T14:20:32Z",
+ "updated_at": "2025-01-18T14:20:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.41.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.41.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.41.0",
+ "body": "- Fixed an issue where dynamic variables were not properly logged in verbose mode (#1920, #1921 by @mgbowman).\r\n- Support `silent` for defer statements (#1877, #1879 by @danilobuerger).\r\n- Added an option to exclude some tasks from being included (#1859 by @vmaerten).\r\n- Fixed an issue where a required variable was incorrectly handled in a template function (#1950, #1962 by @vmaerten).\r\n- Expose a new `TASK_DIR` special variable, which will contain the absolute path of task directory. (#1959, #1961 by @vmaerten).\r\n- Fixed fatal bugs that caused concurrent map writes (#1605, #1972, #1974 by @pd93, @GrahamDennis and @trim21).\r\n- Refactored internal ordered map implementation to use [github.com/elliotchance/orderedmap](https://github.com/elliotchance/orderedmap) (#1797 by @pd93).\r\n- Fixed a bug where variables defined at the task level were being ignored in the `requires` section. (#1960, #1955, #1768 by @vmaerten and @mokeko)\r\n- The `CHECKSUM` and `TIMESTAMP` variables are now accessible within `cmds` (#1872 by @niklasr22).\r\n- Updated [installation docs](https://taskfile.dev/installation) and added pip installation method (#935, #1989 by @pd93).\r\n- Fixed a bug where dynamic variables could not access environment variables (#630, #1869 by @rohm1 and @pd93).\r\n- Disable version check for use as an external library (#1938 by @leaanthony).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/195464501/reactions",
+ "total_count": 19,
+ "+1": 16,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 3,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 10
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/189400341",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/189400341/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/189400341/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.40.1",
+ "id": 189400341,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984LSgUV",
+ "tag_name": "v3.40.1",
+ "target_commitish": "main",
+ "name": "v3.40.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-12-06T12:59:04Z",
+ "published_at": "2024-12-06T13:05:05Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553744",
+ "id": 211553744,
+ "node_id": "RA_kwDOBPZW984MnA3Q",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 235975,
+ "created_at": "2024-12-06T13:03:38Z",
+ "updated_at": "2024-12-06T13:03:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553728",
+ "id": 211553728,
+ "node_id": "RA_kwDOBPZW984MnA3A",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6325528,
+ "download_count": 1897,
+ "created_at": "2024-12-06T13:03:35Z",
+ "updated_at": "2024-12-06T13:03:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553717",
+ "id": 211553717,
+ "node_id": "RA_kwDOBPZW984MnA21",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5960282,
+ "download_count": 18244,
+ "created_at": "2024-12-06T13:03:33Z",
+ "updated_at": "2024-12-06T13:03:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553706",
+ "id": 211553706,
+ "node_id": "RA_kwDOBPZW984MnA2q",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5846771,
+ "download_count": 66,
+ "created_at": "2024-12-06T13:03:32Z",
+ "updated_at": "2024-12-06T13:03:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553722",
+ "id": 211553722,
+ "node_id": "RA_kwDOBPZW984MnA26",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6208813,
+ "download_count": 148,
+ "created_at": "2024-12-06T13:03:34Z",
+ "updated_at": "2024-12-06T13:03:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553721",
+ "id": 211553721,
+ "node_id": "RA_kwDOBPZW984MnA25",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5859802,
+ "download_count": 40,
+ "created_at": "2024-12-06T13:03:34Z",
+ "updated_at": "2024-12-06T13:03:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553715",
+ "id": 211553715,
+ "node_id": "RA_kwDOBPZW984MnA2z",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5720211,
+ "download_count": 42,
+ "created_at": "2024-12-06T13:03:33Z",
+ "updated_at": "2024-12-06T13:03:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553731",
+ "id": 211553731,
+ "node_id": "RA_kwDOBPZW984MnA3D",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5876018,
+ "download_count": 155,
+ "created_at": "2024-12-06T13:03:35Z",
+ "updated_at": "2024-12-06T13:03:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553737",
+ "id": 211553737,
+ "node_id": "RA_kwDOBPZW984MnA3J",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6101200,
+ "download_count": 245,
+ "created_at": "2024-12-06T13:03:37Z",
+ "updated_at": "2024-12-06T13:03:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553727",
+ "id": 211553727,
+ "node_id": "RA_kwDOBPZW984MnA2_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5860001,
+ "download_count": 340,
+ "created_at": "2024-12-06T13:03:35Z",
+ "updated_at": "2024-12-06T13:03:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553734",
+ "id": 211553734,
+ "node_id": "RA_kwDOBPZW984MnA3G",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6234474,
+ "download_count": 2552,
+ "created_at": "2024-12-06T13:03:36Z",
+ "updated_at": "2024-12-06T13:03:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553738",
+ "id": 211553738,
+ "node_id": "RA_kwDOBPZW984MnA3K",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6474044,
+ "download_count": 289,
+ "created_at": "2024-12-06T13:03:37Z",
+ "updated_at": "2024-12-06T13:03:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553720",
+ "id": 211553720,
+ "node_id": "RA_kwDOBPZW984MnA24",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6214203,
+ "download_count": 590678,
+ "created_at": "2024-12-06T13:03:34Z",
+ "updated_at": "2024-12-06T13:03:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553732",
+ "id": 211553732,
+ "node_id": "RA_kwDOBPZW984MnA3E",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5879214,
+ "download_count": 45,
+ "created_at": "2024-12-06T13:03:36Z",
+ "updated_at": "2024-12-06T13:03:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553739",
+ "id": 211553739,
+ "node_id": "RA_kwDOBPZW984MnA3L",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6105792,
+ "download_count": 38,
+ "created_at": "2024-12-06T13:03:37Z",
+ "updated_at": "2024-12-06T13:03:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553713",
+ "id": 211553713,
+ "node_id": "RA_kwDOBPZW984MnA2x",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5863655,
+ "download_count": 149,
+ "created_at": "2024-12-06T13:03:32Z",
+ "updated_at": "2024-12-06T13:03:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553729",
+ "id": 211553729,
+ "node_id": "RA_kwDOBPZW984MnA3B",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5749580,
+ "download_count": 474,
+ "created_at": "2024-12-06T13:03:35Z",
+ "updated_at": "2024-12-06T13:03:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553733",
+ "id": 211553733,
+ "node_id": "RA_kwDOBPZW984MnA3F",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 5979090,
+ "download_count": 51,
+ "created_at": "2024-12-06T13:03:36Z",
+ "updated_at": "2024-12-06T13:03:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553723",
+ "id": 211553723,
+ "node_id": "RA_kwDOBPZW984MnA27",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5729716,
+ "download_count": 33288,
+ "created_at": "2024-12-06T13:03:34Z",
+ "updated_at": "2024-12-06T13:03:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553741",
+ "id": 211553741,
+ "node_id": "RA_kwDOBPZW984MnA3N",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5808680,
+ "download_count": 68,
+ "created_at": "2024-12-06T13:03:37Z",
+ "updated_at": "2024-12-06T13:03:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553736",
+ "id": 211553736,
+ "node_id": "RA_kwDOBPZW984MnA3I",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6038352,
+ "download_count": 66,
+ "created_at": "2024-12-06T13:03:36Z",
+ "updated_at": "2024-12-06T13:03:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553718",
+ "id": 211553718,
+ "node_id": "RA_kwDOBPZW984MnA22",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5787628,
+ "download_count": 67,
+ "created_at": "2024-12-06T13:03:33Z",
+ "updated_at": "2024-12-06T13:03:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553704",
+ "id": 211553704,
+ "node_id": "RA_kwDOBPZW984MnA2o",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6137824,
+ "download_count": 312,
+ "created_at": "2024-12-06T13:03:32Z",
+ "updated_at": "2024-12-06T13:03:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553703",
+ "id": 211553703,
+ "node_id": "RA_kwDOBPZW984MnA2n",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6420910,
+ "download_count": 12248,
+ "created_at": "2024-12-06T13:03:32Z",
+ "updated_at": "2024-12-06T13:03:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553725",
+ "id": 211553725,
+ "node_id": "RA_kwDOBPZW984MnA29",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6033364,
+ "download_count": 42,
+ "created_at": "2024-12-06T13:03:35Z",
+ "updated_at": "2024-12-06T13:03:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/211553705",
+ "id": 211553705,
+ "node_id": "RA_kwDOBPZW984MnA2p",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 5842684,
+ "download_count": 280,
+ "created_at": "2024-12-06T13:03:32Z",
+ "updated_at": "2024-12-06T13:03:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.40.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.40.1",
+ "body": "- Fixed a security issue in `git-urls` by switching to the maintained fork `chainguard-dev/git-urls` (#1917 by @AlekSi).\r\n- Added missing `platforms` property to `cmds` that use `for` (#1915 by @dkarter).\r\n- Added misspell linter to check for misspelled English words (#1883 by @christiandins).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/189400341/reactions",
+ "total_count": 7,
+ "+1": 7,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/183839046",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/183839046/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/183839046/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.40.0",
+ "id": 183839046,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984K9SlG",
+ "tag_name": "v3.40.0",
+ "target_commitish": "main",
+ "name": "v3.40.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-11-06T01:34:38Z",
+ "published_at": "2024-11-06T01:51:32Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424168",
+ "id": 204424168,
+ "node_id": "RA_kwDOBPZW984ML0Po",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 215346,
+ "created_at": "2024-11-06T01:39:40Z",
+ "updated_at": "2024-11-06T01:39:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424138",
+ "id": 204424138,
+ "node_id": "RA_kwDOBPZW984ML0PK",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6324895,
+ "download_count": 1417,
+ "created_at": "2024-11-06T01:39:37Z",
+ "updated_at": "2024-11-06T01:39:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424118",
+ "id": 204424118,
+ "node_id": "RA_kwDOBPZW984ML0O2",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5960273,
+ "download_count": 12782,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424143",
+ "id": 204424143,
+ "node_id": "RA_kwDOBPZW984ML0PP",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5847452,
+ "download_count": 59,
+ "created_at": "2024-11-06T01:39:37Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424146",
+ "id": 204424146,
+ "node_id": "RA_kwDOBPZW984ML0PS",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6208748,
+ "download_count": 67,
+ "created_at": "2024-11-06T01:39:38Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424116",
+ "id": 204424116,
+ "node_id": "RA_kwDOBPZW984ML0O0",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5859798,
+ "download_count": 30,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424137",
+ "id": 204424137,
+ "node_id": "RA_kwDOBPZW984ML0PJ",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5719875,
+ "download_count": 27,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424154",
+ "id": 204424154,
+ "node_id": "RA_kwDOBPZW984ML0Pa",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5875920,
+ "download_count": 150,
+ "created_at": "2024-11-06T01:39:38Z",
+ "updated_at": "2024-11-06T01:39:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424156",
+ "id": 204424156,
+ "node_id": "RA_kwDOBPZW984ML0Pc",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6104141,
+ "download_count": 237,
+ "created_at": "2024-11-06T01:39:39Z",
+ "updated_at": "2024-11-06T01:39:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424135",
+ "id": 204424135,
+ "node_id": "RA_kwDOBPZW984ML0PH",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5860051,
+ "download_count": 155,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424155",
+ "id": 204424155,
+ "node_id": "RA_kwDOBPZW984ML0Pb",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 6234238,
+ "download_count": 4289,
+ "created_at": "2024-11-06T01:39:39Z",
+ "updated_at": "2024-11-06T01:39:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424160",
+ "id": 204424160,
+ "node_id": "RA_kwDOBPZW984ML0Pg",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6488909,
+ "download_count": 172,
+ "created_at": "2024-11-06T01:39:39Z",
+ "updated_at": "2024-11-06T01:39:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424142",
+ "id": 204424142,
+ "node_id": "RA_kwDOBPZW984ML0PO",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 6213938,
+ "download_count": 477426,
+ "created_at": "2024-11-06T01:39:37Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424151",
+ "id": 204424151,
+ "node_id": "RA_kwDOBPZW984ML0PX",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5879442,
+ "download_count": 38,
+ "created_at": "2024-11-06T01:39:38Z",
+ "updated_at": "2024-11-06T01:39:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424161",
+ "id": 204424161,
+ "node_id": "RA_kwDOBPZW984ML0Ph",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6104843,
+ "download_count": 25,
+ "created_at": "2024-11-06T01:39:39Z",
+ "updated_at": "2024-11-06T01:39:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424140",
+ "id": 204424140,
+ "node_id": "RA_kwDOBPZW984ML0PM",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5864003,
+ "download_count": 61,
+ "created_at": "2024-11-06T01:39:37Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424149",
+ "id": 204424149,
+ "node_id": "RA_kwDOBPZW984ML0PV",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5749460,
+ "download_count": 213,
+ "created_at": "2024-11-06T01:39:38Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424164",
+ "id": 204424164,
+ "node_id": "RA_kwDOBPZW984ML0Pk",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 5961715,
+ "download_count": 30,
+ "created_at": "2024-11-06T01:39:39Z",
+ "updated_at": "2024-11-06T01:39:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424136",
+ "id": 204424136,
+ "node_id": "RA_kwDOBPZW984ML0PI",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5729664,
+ "download_count": 24565,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424167",
+ "id": 204424167,
+ "node_id": "RA_kwDOBPZW984ML0Pn",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 5808268,
+ "download_count": 59,
+ "created_at": "2024-11-06T01:39:40Z",
+ "updated_at": "2024-11-06T01:39:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424162",
+ "id": 204424162,
+ "node_id": "RA_kwDOBPZW984ML0Pi",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 6037808,
+ "download_count": 58,
+ "created_at": "2024-11-06T01:39:39Z",
+ "updated_at": "2024-11-06T01:39:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424117",
+ "id": 204424117,
+ "node_id": "RA_kwDOBPZW984ML0O1",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 5787501,
+ "download_count": 59,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424115",
+ "id": 204424115,
+ "node_id": "RA_kwDOBPZW984ML0Oz",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6137505,
+ "download_count": 422,
+ "created_at": "2024-11-06T01:39:36Z",
+ "updated_at": "2024-11-06T01:39:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424141",
+ "id": 204424141,
+ "node_id": "RA_kwDOBPZW984ML0PN",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6420483,
+ "download_count": 9242,
+ "created_at": "2024-11-06T01:39:37Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424145",
+ "id": 204424145,
+ "node_id": "RA_kwDOBPZW984ML0PR",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 6033339,
+ "download_count": 26,
+ "created_at": "2024-11-06T01:39:38Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/204424147",
+ "id": 204424147,
+ "node_id": "RA_kwDOBPZW984ML0PT",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 5842395,
+ "download_count": 345,
+ "created_at": "2024-11-06T01:39:38Z",
+ "updated_at": "2024-11-06T01:39:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.40.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.40.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.40.0",
+ "body": "If you like this project, consider [spreading the word](https://x.com/intent/post?text=%40taskfiledev+is+awesome%21+https%3A%2F%2Ftaskfile.dev) or [sponsoring the project](https://taskfile.dev/donate/).\r\n\r\n- Fixed output of some functions (e.g. `splitArgs`/`splitLines`) not working in for loops (#1822, #1823 by @stawii).\r\n- Added a new `TASK_OFFLINE` environment variable to configure the `--offline` flag and expose it as a special variable in the templating system (#1470, #1716 by @vmaerten and @pd93).\r\n- Fixed a bug where multiple remote includes caused all prompts to display without waiting for user input (#1832, #1833 by @vmaerten and @pd93).\r\n- When using the \"[Remote Taskfiles](https://taskfile.dev/experiments/remote-taskfiles/)\" experiment, you can now include Taskfiles from Git repositories (#1652 by @vmaerten).\r\n- Improved the error message when a dotenv file cannot be parsed (#1842 by @pbitty).\r\n- Fix issue with directory when using the remote experiment (#1757 by @pbitty).\r\n- Fixed an issue where a special variable was used in combination with a dotenv file (#1232, #1810 by @vmaerten).\r\n- Refactor the way Task reads Taskfiles to improve readability (#1771 by @pbitty).\r\n- Added a new option to ensure variable is within the list of values (#1827 by @vmaerten).\r\n- Allow multiple prompts to be specified for a task (#1861, #1866 by @mfbmina).\r\n- Added new template function: `numCPU`, which returns the number of logical CPUs usable (#1890, #1887 by @Amoghrd).\r\n- Fixed a bug where non-nil, empty dynamic variables are returned as an empty interface (#1903, #1904 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/183839046/reactions",
+ "total_count": 15,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 7,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 6
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/175880246",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/175880246/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/175880246/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.39.2",
+ "id": 175880246,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Ke7g2",
+ "tag_name": "v3.39.2",
+ "target_commitish": "main",
+ "name": "v3.39.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-09-19T12:25:29Z",
+ "published_at": "2024-09-19T12:32:17Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598300",
+ "id": 193598300,
+ "node_id": "RA_kwDOBPZW984LihNc",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 251888,
+ "created_at": "2024-09-19T12:29:29Z",
+ "updated_at": "2024-09-19T12:29:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598288",
+ "id": 193598288,
+ "node_id": "RA_kwDOBPZW984LihNQ",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4902080,
+ "download_count": 2218,
+ "created_at": "2024-09-19T12:29:27Z",
+ "updated_at": "2024-09-19T12:29:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598274",
+ "id": 193598274,
+ "node_id": "RA_kwDOBPZW984LihNC",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4637083,
+ "download_count": 16772,
+ "created_at": "2024-09-19T12:29:24Z",
+ "updated_at": "2024-09-19T12:29:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598279",
+ "id": 193598279,
+ "node_id": "RA_kwDOBPZW984LihNH",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4522653,
+ "download_count": 80,
+ "created_at": "2024-09-19T12:29:25Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598284",
+ "id": 193598284,
+ "node_id": "RA_kwDOBPZW984LihNM",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4813793,
+ "download_count": 97,
+ "created_at": "2024-09-19T12:29:26Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598282",
+ "id": 193598282,
+ "node_id": "RA_kwDOBPZW984LihNK",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4549976,
+ "download_count": 41,
+ "created_at": "2024-09-19T12:29:26Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598283",
+ "id": 193598283,
+ "node_id": "RA_kwDOBPZW984LihNL",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4451554,
+ "download_count": 42,
+ "created_at": "2024-09-19T12:29:26Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598289",
+ "id": 193598289,
+ "node_id": "RA_kwDOBPZW984LihNR",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4545358,
+ "download_count": 194,
+ "created_at": "2024-09-19T12:29:27Z",
+ "updated_at": "2024-09-19T12:29:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598297",
+ "id": 193598297,
+ "node_id": "RA_kwDOBPZW984LihNZ",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4732823,
+ "download_count": 383,
+ "created_at": "2024-09-19T12:29:29Z",
+ "updated_at": "2024-09-19T12:29:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598287",
+ "id": 193598287,
+ "node_id": "RA_kwDOBPZW984LihNP",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4533654,
+ "download_count": 652,
+ "created_at": "2024-09-19T12:29:27Z",
+ "updated_at": "2024-09-19T12:29:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598292",
+ "id": 193598292,
+ "node_id": "RA_kwDOBPZW984LihNU",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4833486,
+ "download_count": 11085,
+ "created_at": "2024-09-19T12:29:28Z",
+ "updated_at": "2024-09-19T12:29:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598296",
+ "id": 193598296,
+ "node_id": "RA_kwDOBPZW984LihNY",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 5027024,
+ "download_count": 939,
+ "created_at": "2024-09-19T12:29:28Z",
+ "updated_at": "2024-09-19T12:29:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598276",
+ "id": 193598276,
+ "node_id": "RA_kwDOBPZW984LihNE",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4816875,
+ "download_count": 707219,
+ "created_at": "2024-09-19T12:29:24Z",
+ "updated_at": "2024-09-19T12:29:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598290",
+ "id": 193598290,
+ "node_id": "RA_kwDOBPZW984LihNS",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4563776,
+ "download_count": 45,
+ "created_at": "2024-09-19T12:29:27Z",
+ "updated_at": "2024-09-19T12:29:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598293",
+ "id": 193598293,
+ "node_id": "RA_kwDOBPZW984LihNV",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4740008,
+ "download_count": 37,
+ "created_at": "2024-09-19T12:29:28Z",
+ "updated_at": "2024-09-19T12:29:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598277",
+ "id": 193598277,
+ "node_id": "RA_kwDOBPZW984LihNF",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4554225,
+ "download_count": 133,
+ "created_at": "2024-09-19T12:29:24Z",
+ "updated_at": "2024-09-19T12:29:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598299",
+ "id": 193598299,
+ "node_id": "RA_kwDOBPZW984LihNb",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4471054,
+ "download_count": 123,
+ "created_at": "2024-09-19T12:29:29Z",
+ "updated_at": "2024-09-19T12:29:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598295",
+ "id": 193598295,
+ "node_id": "RA_kwDOBPZW984LihNX",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4640725,
+ "download_count": 45,
+ "created_at": "2024-09-19T12:29:28Z",
+ "updated_at": "2024-09-19T12:29:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598275",
+ "id": 193598275,
+ "node_id": "RA_kwDOBPZW984LihND",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4456734,
+ "download_count": 36959,
+ "created_at": "2024-09-19T12:29:24Z",
+ "updated_at": "2024-09-19T12:29:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598291",
+ "id": 193598291,
+ "node_id": "RA_kwDOBPZW984LihNT",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4497702,
+ "download_count": 77,
+ "created_at": "2024-09-19T12:29:28Z",
+ "updated_at": "2024-09-19T12:29:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598294",
+ "id": 193598294,
+ "node_id": "RA_kwDOBPZW984LihNW",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4676790,
+ "download_count": 76,
+ "created_at": "2024-09-19T12:29:28Z",
+ "updated_at": "2024-09-19T12:29:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598281",
+ "id": 193598281,
+ "node_id": "RA_kwDOBPZW984LihNJ",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4481974,
+ "download_count": 81,
+ "created_at": "2024-09-19T12:29:25Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598278",
+ "id": 193598278,
+ "node_id": "RA_kwDOBPZW984LihNG",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4746459,
+ "download_count": 441,
+ "created_at": "2024-09-19T12:29:25Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598280",
+ "id": 193598280,
+ "node_id": "RA_kwDOBPZW984LihNI",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4973245,
+ "download_count": 10581,
+ "created_at": "2024-09-19T12:29:25Z",
+ "updated_at": "2024-09-19T12:29:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598285",
+ "id": 193598285,
+ "node_id": "RA_kwDOBPZW984LihNN",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4681176,
+ "download_count": 41,
+ "created_at": "2024-09-19T12:29:26Z",
+ "updated_at": "2024-09-19T12:29:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193598286",
+ "id": 193598286,
+ "node_id": "RA_kwDOBPZW984LihNO",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4540916,
+ "download_count": 358,
+ "created_at": "2024-09-19T12:29:27Z",
+ "updated_at": "2024-09-19T12:29:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.2/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.39.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.39.2",
+ "body": "- Fix dynamic variables not working properly for a defer: statement (#1803, #1818 by @vmaerten).\r\n",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/175880246/reactions",
+ "total_count": 13,
+ "+1": 13,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/175789332",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/175789332/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/175789332/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.39.1",
+ "id": 175789332,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984KelUU",
+ "tag_name": "v3.39.1",
+ "target_commitish": "main",
+ "name": "v3.39.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-09-19T01:22:56Z",
+ "published_at": "2024-09-19T01:28:39Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504944",
+ "id": 193504944,
+ "node_id": "RA_kwDOBPZW984LiKaw",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 3365,
+ "created_at": "2024-09-19T01:27:02Z",
+ "updated_at": "2024-09-19T01:27:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504907",
+ "id": 193504907,
+ "node_id": "RA_kwDOBPZW984LiKaL",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4902077,
+ "download_count": 114,
+ "created_at": "2024-09-19T01:27:00Z",
+ "updated_at": "2024-09-19T01:27:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504887",
+ "id": 193504887,
+ "node_id": "RA_kwDOBPZW984LiKZ3",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4637081,
+ "download_count": 449,
+ "created_at": "2024-09-19T01:26:58Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504915",
+ "id": 193504915,
+ "node_id": "RA_kwDOBPZW984LiKaT",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4522651,
+ "download_count": 45,
+ "created_at": "2024-09-19T01:27:00Z",
+ "updated_at": "2024-09-19T01:27:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504900",
+ "id": 193504900,
+ "node_id": "RA_kwDOBPZW984LiKaE",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4813791,
+ "download_count": 45,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:27:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504896",
+ "id": 193504896,
+ "node_id": "RA_kwDOBPZW984LiKaA",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4549971,
+ "download_count": 5,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504888",
+ "id": 193504888,
+ "node_id": "RA_kwDOBPZW984LiKZ4",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4451558,
+ "download_count": 11,
+ "created_at": "2024-09-19T01:26:58Z",
+ "updated_at": "2024-09-19T01:26:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504924",
+ "id": 193504924,
+ "node_id": "RA_kwDOBPZW984LiKac",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4545358,
+ "download_count": 45,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504927",
+ "id": 193504927,
+ "node_id": "RA_kwDOBPZW984LiKaf",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4732822,
+ "download_count": 52,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504893",
+ "id": 193504893,
+ "node_id": "RA_kwDOBPZW984LiKZ9",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4533666,
+ "download_count": 50,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504939",
+ "id": 193504939,
+ "node_id": "RA_kwDOBPZW984LiKar",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4833474,
+ "download_count": 115,
+ "created_at": "2024-09-19T01:27:02Z",
+ "updated_at": "2024-09-19T01:27:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504933",
+ "id": 193504933,
+ "node_id": "RA_kwDOBPZW984LiKal",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 5027020,
+ "download_count": 48,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504913",
+ "id": 193504913,
+ "node_id": "RA_kwDOBPZW984LiKaR",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4816867,
+ "download_count": 9695,
+ "created_at": "2024-09-19T01:27:00Z",
+ "updated_at": "2024-09-19T01:27:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504925",
+ "id": 193504925,
+ "node_id": "RA_kwDOBPZW984LiKad",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4563780,
+ "download_count": 4,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504934",
+ "id": 193504934,
+ "node_id": "RA_kwDOBPZW984LiKam",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4740012,
+ "download_count": 5,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504895",
+ "id": 193504895,
+ "node_id": "RA_kwDOBPZW984LiKZ_",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4554228,
+ "download_count": 6,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504918",
+ "id": 193504918,
+ "node_id": "RA_kwDOBPZW984LiKaW",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4471056,
+ "download_count": 7,
+ "created_at": "2024-09-19T01:27:00Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504936",
+ "id": 193504936,
+ "node_id": "RA_kwDOBPZW984LiKao",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4640729,
+ "download_count": 4,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504897",
+ "id": 193504897,
+ "node_id": "RA_kwDOBPZW984LiKaB",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4456737,
+ "download_count": 515,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504922",
+ "id": 193504922,
+ "node_id": "RA_kwDOBPZW984LiKaa",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4497686,
+ "download_count": 44,
+ "created_at": "2024-09-19T01:27:00Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504931",
+ "id": 193504931,
+ "node_id": "RA_kwDOBPZW984LiKaj",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4676781,
+ "download_count": 45,
+ "created_at": "2024-09-19T01:27:01Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504916",
+ "id": 193504916,
+ "node_id": "RA_kwDOBPZW984LiKaU",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4481976,
+ "download_count": 45,
+ "created_at": "2024-09-19T01:27:00Z",
+ "updated_at": "2024-09-19T01:27:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504891",
+ "id": 193504891,
+ "node_id": "RA_kwDOBPZW984LiKZ7",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4746463,
+ "download_count": 417,
+ "created_at": "2024-09-19T01:26:58Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504906",
+ "id": 193504906,
+ "node_id": "RA_kwDOBPZW984LiKaK",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4973239,
+ "download_count": 1667,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:27:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504899",
+ "id": 193504899,
+ "node_id": "RA_kwDOBPZW984LiKaD",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4681187,
+ "download_count": 5,
+ "created_at": "2024-09-19T01:26:59Z",
+ "updated_at": "2024-09-19T01:27:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/193504889",
+ "id": 193504889,
+ "node_id": "RA_kwDOBPZW984LiKZ5",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4540925,
+ "download_count": 357,
+ "created_at": "2024-09-19T01:26:58Z",
+ "updated_at": "2024-09-19T01:26:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.39.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.39.1",
+ "body": "- Added Renovate configuration to automatically create PRs to keep dependencies up to date (#1783 by @vmaerten).\r\n- Fixed a bug where the help was displayed twice (#1805, #1806 by @vmaerten).\r\n- Fixed a bug where ZSH and PowerShell completions did not work when using the recommended method. (#1813, #1809 by @vmaerten and @shirayu)\r\n- Fix variables not working properly for a `defer:` statement (#1803, #1814 by @vmaerten and @andreynering).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/175789332/reactions",
+ "total_count": 11,
+ "+1": 9,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 2,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/173983276",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/173983276/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/173983276/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.39.0",
+ "id": 173983276,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984KXsYs",
+ "tag_name": "v3.39.0",
+ "target_commitish": "main",
+ "name": "v3.39.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-09-07T20:05:46Z",
+ "published_at": "2024-09-07T20:12:13Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113115",
+ "id": 191113115,
+ "node_id": "RA_kwDOBPZW984LZCeb",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 58616,
+ "created_at": "2024-09-07T20:09:27Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113089",
+ "id": 191113089,
+ "node_id": "RA_kwDOBPZW984LZCeB",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4901544,
+ "download_count": 643,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113098",
+ "id": 191113098,
+ "node_id": "RA_kwDOBPZW984LZCeK",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4636870,
+ "download_count": 4716,
+ "created_at": "2024-09-07T20:09:25Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113092",
+ "id": 191113092,
+ "node_id": "RA_kwDOBPZW984LZCeE",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4522540,
+ "download_count": 57,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113090",
+ "id": 191113090,
+ "node_id": "RA_kwDOBPZW984LZCeC",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4813555,
+ "download_count": 63,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113104",
+ "id": 191113104,
+ "node_id": "RA_kwDOBPZW984LZCeQ",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4549930,
+ "download_count": 13,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113096",
+ "id": 191113096,
+ "node_id": "RA_kwDOBPZW984LZCeI",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4451035,
+ "download_count": 14,
+ "created_at": "2024-09-07T20:09:25Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113107",
+ "id": 191113107,
+ "node_id": "RA_kwDOBPZW984LZCeT",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4545292,
+ "download_count": 78,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113113",
+ "id": 191113113,
+ "node_id": "RA_kwDOBPZW984LZCeZ",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4732747,
+ "download_count": 117,
+ "created_at": "2024-09-07T20:09:27Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113087",
+ "id": 191113087,
+ "node_id": "RA_kwDOBPZW984LZCd_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4533660,
+ "download_count": 267,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113108",
+ "id": 191113108,
+ "node_id": "RA_kwDOBPZW984LZCeU",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4832698,
+ "download_count": 959,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113109",
+ "id": 191113109,
+ "node_id": "RA_kwDOBPZW984LZCeV",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 5027078,
+ "download_count": 578,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113094",
+ "id": 191113094,
+ "node_id": "RA_kwDOBPZW984LZCeG",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4816278,
+ "download_count": 232150,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113114",
+ "id": 191113114,
+ "node_id": "RA_kwDOBPZW984LZCea",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4563736,
+ "download_count": 13,
+ "created_at": "2024-09-07T20:09:27Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113110",
+ "id": 191113110,
+ "node_id": "RA_kwDOBPZW984LZCeW",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4742164,
+ "download_count": 12,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113100",
+ "id": 191113100,
+ "node_id": "RA_kwDOBPZW984LZCeM",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4553774,
+ "download_count": 30,
+ "created_at": "2024-09-07T20:09:25Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113105",
+ "id": 191113105,
+ "node_id": "RA_kwDOBPZW984LZCeR",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4471170,
+ "download_count": 171,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113111",
+ "id": 191113111,
+ "node_id": "RA_kwDOBPZW984LZCeX",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4639407,
+ "download_count": 12,
+ "created_at": "2024-09-07T20:09:27Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113088",
+ "id": 191113088,
+ "node_id": "RA_kwDOBPZW984LZCeA",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4457071,
+ "download_count": 7016,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113106",
+ "id": 191113106,
+ "node_id": "RA_kwDOBPZW984LZCeS",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4497146,
+ "download_count": 55,
+ "created_at": "2024-09-07T20:09:26Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113112",
+ "id": 191113112,
+ "node_id": "RA_kwDOBPZW984LZCeY",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4693033,
+ "download_count": 55,
+ "created_at": "2024-09-07T20:09:27Z",
+ "updated_at": "2024-09-07T20:09:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113093",
+ "id": 191113093,
+ "node_id": "RA_kwDOBPZW984LZCeF",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4481958,
+ "download_count": 56,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113097",
+ "id": 191113097,
+ "node_id": "RA_kwDOBPZW984LZCeJ",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4745153,
+ "download_count": 456,
+ "created_at": "2024-09-07T20:09:25Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113099",
+ "id": 191113099,
+ "node_id": "RA_kwDOBPZW984LZCeL",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4972891,
+ "download_count": 3068,
+ "created_at": "2024-09-07T20:09:25Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113091",
+ "id": 191113091,
+ "node_id": "RA_kwDOBPZW984LZCeD",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4680521,
+ "download_count": 15,
+ "created_at": "2024-09-07T20:09:24Z",
+ "updated_at": "2024-09-07T20:09:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/191113102",
+ "id": 191113102,
+ "node_id": "RA_kwDOBPZW984LZCeO",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4541049,
+ "download_count": 374,
+ "created_at": "2024-09-07T20:09:25Z",
+ "updated_at": "2024-09-07T20:09:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.39.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.39.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.39.0",
+ "body": "- Added [Env Precedence Experiment](https://taskfile.dev/experiments/env-precedence) (#1038, #1633 by @vmaerten).\r\n- Added a CI lint job to ensure that the docs are updated correctly (#1719 by @vmaerten).\r\n- Updated minimum required Go version to 1.22 (#1758 by @pd93).\r\n- Expose a new `EXIT_CODE` special variable on `defer:` when a command finishes with a non-zero exit code (#1484, #1762 by @dorimon-1 and @andreynering).\r\n- Expose a new `ALIAS` special variable, which will contain the alias used to call the current task. Falls back to the task name. (#1764 by @DanStory).\r\n- Fixed `TASK_REMOTE_DIR` environment variable not working when the path was absolute. (#1715 by @vmaerten).\r\n- Added an option to declare an included Taskfile as flattened (#1704 by @vmaerten).\r\n- Added a new [`--completion` flag](https://taskfile.dev/installation/#setup-completions) to output completion scripts for various shells (#293, #1157 by @pd93).\r\n - This is now the preferred way to install completions.\r\n - The completion scripts in the `completion` directory [are now deprecated](https://taskfile.dev/deprecations/completion-scripts/).\r\n- Added the ability to [loop over a matrix of values](https://taskfile.dev/usage/#looping-over-a-matrix) (#1766, #1767, #1784 by @pd93).\r\n- Fixed a bug in fish completion where aliases were not displayed (#1781, #1782 by @vmaerten).\r\n- Fixed panic when having a flattened included Taskfile that contains a `default` task (#1777, #1778 by @vmaerten).\r\n- Optimized file existence checks for remote Taskfiles (#1713 by @vmaerten).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/173983276/reactions",
+ "total_count": 34,
+ "+1": 12,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 8,
+ "confused": 0,
+ "heart": 8,
+ "rocket": 6,
+ "eyes": 0
+ },
+ "mentions_count": 5
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/163212473",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/163212473/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/163212473/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.38.0",
+ "id": 163212473,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Jumy5",
+ "tag_name": "v3.38.0",
+ "target_commitish": "main",
+ "name": "v3.38.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-06-30T14:50:47Z",
+ "published_at": "2024-06-30T14:55:28Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818709",
+ "id": 176818709,
+ "node_id": "RA_kwDOBPZW984KigoV",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 2212,
+ "download_count": 476981,
+ "created_at": "2024-06-30T14:54:23Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818681",
+ "id": 176818681,
+ "node_id": "RA_kwDOBPZW984Kign5",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4890483,
+ "download_count": 2889,
+ "created_at": "2024-06-30T14:54:20Z",
+ "updated_at": "2024-06-30T14:54:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818683",
+ "id": 176818683,
+ "node_id": "RA_kwDOBPZW984Kign7",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4700916,
+ "download_count": 21796,
+ "created_at": "2024-06-30T14:54:20Z",
+ "updated_at": "2024-06-30T14:54:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818680",
+ "id": 176818680,
+ "node_id": "RA_kwDOBPZW984Kign4",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4471258,
+ "download_count": 115,
+ "created_at": "2024-06-30T14:54:20Z",
+ "updated_at": "2024-06-30T14:54:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818695",
+ "id": 176818695,
+ "node_id": "RA_kwDOBPZW984KigoH",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4726332,
+ "download_count": 138,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818678",
+ "id": 176818678,
+ "node_id": "RA_kwDOBPZW984Kign2",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4498123,
+ "download_count": 60,
+ "created_at": "2024-06-30T14:54:20Z",
+ "updated_at": "2024-06-30T14:54:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818694",
+ "id": 176818694,
+ "node_id": "RA_kwDOBPZW984KigoG",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4365765,
+ "download_count": 62,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818700",
+ "id": 176818700,
+ "node_id": "RA_kwDOBPZW984KigoM",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4492654,
+ "download_count": 204,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818705",
+ "id": 176818705,
+ "node_id": "RA_kwDOBPZW984KigoR",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4681915,
+ "download_count": 815,
+ "created_at": "2024-06-30T14:54:23Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818687",
+ "id": 176818687,
+ "node_id": "RA_kwDOBPZW984Kign_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4482060,
+ "download_count": 464,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818698",
+ "id": 176818698,
+ "node_id": "RA_kwDOBPZW984KigoK",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4749246,
+ "download_count": 18339,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818703",
+ "id": 176818703,
+ "node_id": "RA_kwDOBPZW984KigoP",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4951357,
+ "download_count": 48986,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818684",
+ "id": 176818684,
+ "node_id": "RA_kwDOBPZW984Kign8",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4731485,
+ "download_count": 1063821,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818697",
+ "id": 176818697,
+ "node_id": "RA_kwDOBPZW984KigoJ",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4513698,
+ "download_count": 66,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818707",
+ "id": 176818707,
+ "node_id": "RA_kwDOBPZW984KigoT",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4695614,
+ "download_count": 57,
+ "created_at": "2024-06-30T14:54:23Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818682",
+ "id": 176818682,
+ "node_id": "RA_kwDOBPZW984Kign6",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4505087,
+ "download_count": 87,
+ "created_at": "2024-06-30T14:54:20Z",
+ "updated_at": "2024-06-30T14:54:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818696",
+ "id": 176818696,
+ "node_id": "RA_kwDOBPZW984KigoI",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4388362,
+ "download_count": 588,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818701",
+ "id": 176818701,
+ "node_id": "RA_kwDOBPZW984KigoN",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4556927,
+ "download_count": 2058,
+ "created_at": "2024-06-30T14:54:22Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818689",
+ "id": 176818689,
+ "node_id": "RA_kwDOBPZW984KigoB",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4374136,
+ "download_count": 25024,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818708",
+ "id": 176818708,
+ "node_id": "RA_kwDOBPZW984KigoU",
+ "name": "task_linux_riscv64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 4494958,
+ "download_count": 112,
+ "created_at": "2024-06-30T14:54:23Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_riscv64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818704",
+ "id": 176818704,
+ "node_id": "RA_kwDOBPZW984KigoQ",
+ "name": "task_linux_riscv64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 4672047,
+ "download_count": 111,
+ "created_at": "2024-06-30T14:54:23Z",
+ "updated_at": "2024-06-30T14:54:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_riscv64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818691",
+ "id": 176818691,
+ "node_id": "RA_kwDOBPZW984KigoD",
+ "name": "task_linux_riscv64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 4477967,
+ "download_count": 113,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_linux_riscv64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818679",
+ "id": 176818679,
+ "node_id": "RA_kwDOBPZW984Kign3",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4689157,
+ "download_count": 541,
+ "created_at": "2024-06-30T14:54:20Z",
+ "updated_at": "2024-06-30T14:54:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818693",
+ "id": 176818693,
+ "node_id": "RA_kwDOBPZW984KigoF",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4883722,
+ "download_count": 12813,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818688",
+ "id": 176818688,
+ "node_id": "RA_kwDOBPZW984KigoA",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4630106,
+ "download_count": 69,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/176818686",
+ "id": 176818686,
+ "node_id": "RA_kwDOBPZW984Kign-",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4457051,
+ "download_count": 450,
+ "created_at": "2024-06-30T14:54:21Z",
+ "updated_at": "2024-06-30T14:54:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.38.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.38.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.38.0",
+ "body": "- Added `TASK_EXE` special variable (#1616, #1624 by @pd93 and @andreynering).\r\n- Some YAML parsing errors will now show in a more user friendly way (#1619 by @pd93).\r\n- Prefixed outputs will now be colorized by default (#1572 by @AlexanderArvidsson)\r\n- [References](https://taskfile.dev/usage/#referencing-other-variables) are now generally available (no experiments required) (#1654 by @pd93).\r\n- Templating functions can now be used in references (#1645, #1654 by @pd93).\r\n- Added a new [templating reference page](https://taskfile.dev/reference/templating/) to the documentation (#1614, #1653 by @pd93).\r\n- If using the [Map Variables experiment (1)](https://taskfile.dev/experiments/map-variables/?proposal=1), references are available by [prefixing a string with a `#`](https://taskfile.dev/experiments/map-variables/?proposal=1#references) (#1654 by @pd93).\r\n- If using the [Map Variables experiment (2)](https://taskfile.dev/experiments/map-variables/?proposal=2), the `yaml` and `json` keys are no longer available (#1654 by @pd93).\r\n- Added a new `TASK_REMOTE_DIR` environment variable to configure where cached remote Taskfiles are stored (#1661 by @vmaerten).\r\n- Added a new `--clear-cache` flag to clear the cache of remote Taskfiles (#1639 by @vmaerten).\r\n- Improved the readability of cached remote Taskfile filenames (#1636 by @vmaerten).\r\n- Starting releasing a binary for the `riscv64` architecture on Linux (#1699 by @mengzhuo).\r\n- Added `CLI_SILENT` and `CLI_VERBOSE` variables (#1480, #1669 by @Vince-Smith).\r\n- Fixed a couple of bugs with the `prompt:` feature (#1657 by @pd93).\r\n- Fixed JSON Schema to disallow invalid properties (#1657 by @pd93).\r\n- Fixed version checks not working as intended (#872, #1663 by @vmaerten).\r\n- Fixed a bug where included tasks were run multiple times even if `run: once` was set (#852, #1655 by @pd93).\r\n- Fixed some bugs related to column formatting in the terminal (#1350, #1637, #1656 by @vmaerten).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/163212473/reactions",
+ "total_count": 25,
+ "+1": 5,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 15,
+ "confused": 0,
+ "heart": 5,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 6
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/155409107",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/155409107/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/155409107/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.37.2",
+ "id": 155409107,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984JQ1rT",
+ "tag_name": "v3.37.2",
+ "target_commitish": "main",
+ "name": "v3.37.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-05-12T19:37:37Z",
+ "published_at": "2024-05-12T19:40:45Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500669",
+ "id": 167500669,
+ "node_id": "RA_kwDOBPZW984J-9t9",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 242398,
+ "created_at": "2024-05-12T19:40:45Z",
+ "updated_at": "2024-05-12T19:40:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500642",
+ "id": 167500642,
+ "node_id": "RA_kwDOBPZW984J-9ti",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3786664,
+ "download_count": 5595,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500643",
+ "id": 167500643,
+ "node_id": "RA_kwDOBPZW984J-9tj",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3611135,
+ "download_count": 14593,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500638",
+ "id": 167500638,
+ "node_id": "RA_kwDOBPZW984J-9te",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3451885,
+ "download_count": 130,
+ "created_at": "2024-05-12T19:40:42Z",
+ "updated_at": "2024-05-12T19:40:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500640",
+ "id": 167500640,
+ "node_id": "RA_kwDOBPZW984J-9tg",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3639018,
+ "download_count": 369,
+ "created_at": "2024-05-12T19:40:42Z",
+ "updated_at": "2024-05-12T19:40:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500649",
+ "id": 167500649,
+ "node_id": "RA_kwDOBPZW984J-9tp",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3434511,
+ "download_count": 66,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500639",
+ "id": 167500639,
+ "node_id": "RA_kwDOBPZW984J-9tf",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3331595,
+ "download_count": 67,
+ "created_at": "2024-05-12T19:40:42Z",
+ "updated_at": "2024-05-12T19:40:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500656",
+ "id": 167500656,
+ "node_id": "RA_kwDOBPZW984J-9tw",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3467964,
+ "download_count": 213,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500663",
+ "id": 167500663,
+ "node_id": "RA_kwDOBPZW984J-9t3",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3572132,
+ "download_count": 399,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500641",
+ "id": 167500641,
+ "node_id": "RA_kwDOBPZW984J-9th",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3461860,
+ "download_count": 802,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500661",
+ "id": 167500661,
+ "node_id": "RA_kwDOBPZW984J-9t1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3653638,
+ "download_count": 27293,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500665",
+ "id": 167500665,
+ "node_id": "RA_kwDOBPZW984J-9t5",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3766515,
+ "download_count": 1644,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500644",
+ "id": 167500644,
+ "node_id": "RA_kwDOBPZW984J-9tk",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3644052,
+ "download_count": 910378,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500660",
+ "id": 167500660,
+ "node_id": "RA_kwDOBPZW984J-9t0",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3445562,
+ "download_count": 72,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500666",
+ "id": 167500666,
+ "node_id": "RA_kwDOBPZW984J-9t6",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3546350,
+ "download_count": 63,
+ "created_at": "2024-05-12T19:40:45Z",
+ "updated_at": "2024-05-12T19:40:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500653",
+ "id": 167500653,
+ "node_id": "RA_kwDOBPZW984J-9tt",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3440736,
+ "download_count": 84,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500655",
+ "id": 167500655,
+ "node_id": "RA_kwDOBPZW984J-9tv",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3347988,
+ "download_count": 625,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500668",
+ "id": 167500668,
+ "node_id": "RA_kwDOBPZW984J-9t8",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3427449,
+ "download_count": 1019,
+ "created_at": "2024-05-12T19:40:45Z",
+ "updated_at": "2024-05-12T19:40:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500648",
+ "id": 167500648,
+ "node_id": "RA_kwDOBPZW984J-9to",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3338577,
+ "download_count": 16404,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500651",
+ "id": 167500651,
+ "node_id": "RA_kwDOBPZW984J-9tr",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3637806,
+ "download_count": 647,
+ "created_at": "2024-05-12T19:40:44Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500650",
+ "id": 167500650,
+ "node_id": "RA_kwDOBPZW984J-9tq",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3789046,
+ "download_count": 11269,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500646",
+ "id": 167500646,
+ "node_id": "RA_kwDOBPZW984J-9tm",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3562523,
+ "download_count": 69,
+ "created_at": "2024-05-12T19:40:43Z",
+ "updated_at": "2024-05-12T19:40:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/167500637",
+ "id": 167500637,
+ "node_id": "RA_kwDOBPZW984J-9td",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3427068,
+ "download_count": 556,
+ "created_at": "2024-05-12T19:40:42Z",
+ "updated_at": "2024-05-12T19:40:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.2/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.37.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.37.2",
+ "body": "- Fixed a bug where an empty Taskfile would cause a panic (#1648 by @pd93).\r\n- Fixed a bug where includes Taskfile variable were not being merged correctly\r\n (#1643, #1649 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/155409107/reactions",
+ "total_count": 13,
+ "+1": 11,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 2,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/154953126",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/154953126/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/154953126/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.37.1",
+ "id": 154953126,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984JPGWm",
+ "tag_name": "v3.37.1",
+ "target_commitish": "main",
+ "name": "v3.37.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-05-09T14:22:55Z",
+ "published_at": "2024-05-09T14:27:07Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961029",
+ "id": 166961029,
+ "node_id": "RA_kwDOBPZW984J85-F",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 8497,
+ "created_at": "2024-05-09T14:26:16Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961009",
+ "id": 166961009,
+ "node_id": "RA_kwDOBPZW984J859x",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3786286,
+ "download_count": 293,
+ "created_at": "2024-05-09T14:26:13Z",
+ "updated_at": "2024-05-09T14:26:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961016",
+ "id": 166961016,
+ "node_id": "RA_kwDOBPZW984J8594",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3611026,
+ "download_count": 1256,
+ "created_at": "2024-05-09T14:26:14Z",
+ "updated_at": "2024-05-09T14:26:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961007",
+ "id": 166961007,
+ "node_id": "RA_kwDOBPZW984J859v",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3451928,
+ "download_count": 71,
+ "created_at": "2024-05-09T14:26:13Z",
+ "updated_at": "2024-05-09T14:26:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961010",
+ "id": 166961010,
+ "node_id": "RA_kwDOBPZW984J859y",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3638787,
+ "download_count": 75,
+ "created_at": "2024-05-09T14:26:14Z",
+ "updated_at": "2024-05-09T14:26:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961011",
+ "id": 166961011,
+ "node_id": "RA_kwDOBPZW984J859z",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3434303,
+ "download_count": 8,
+ "created_at": "2024-05-09T14:26:14Z",
+ "updated_at": "2024-05-09T14:26:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961012",
+ "id": 166961012,
+ "node_id": "RA_kwDOBPZW984J8590",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3331489,
+ "download_count": 8,
+ "created_at": "2024-05-09T14:26:14Z",
+ "updated_at": "2024-05-09T14:26:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961020",
+ "id": 166961020,
+ "node_id": "RA_kwDOBPZW984J8598",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3467690,
+ "download_count": 78,
+ "created_at": "2024-05-09T14:26:15Z",
+ "updated_at": "2024-05-09T14:26:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961028",
+ "id": 166961028,
+ "node_id": "RA_kwDOBPZW984J85-E",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3574080,
+ "download_count": 85,
+ "created_at": "2024-05-09T14:26:16Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961003",
+ "id": 166961003,
+ "node_id": "RA_kwDOBPZW984J859r",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3461658,
+ "download_count": 84,
+ "created_at": "2024-05-09T14:26:12Z",
+ "updated_at": "2024-05-09T14:26:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961025",
+ "id": 166961025,
+ "node_id": "RA_kwDOBPZW984J85-B",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3653566,
+ "download_count": 174,
+ "created_at": "2024-05-09T14:26:15Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961026",
+ "id": 166961026,
+ "node_id": "RA_kwDOBPZW984J85-C",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3766371,
+ "download_count": 193,
+ "created_at": "2024-05-09T14:26:16Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961018",
+ "id": 166961018,
+ "node_id": "RA_kwDOBPZW984J8596",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3643822,
+ "download_count": 23326,
+ "created_at": "2024-05-09T14:26:15Z",
+ "updated_at": "2024-05-09T14:26:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961022",
+ "id": 166961022,
+ "node_id": "RA_kwDOBPZW984J859-",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3445370,
+ "download_count": 10,
+ "created_at": "2024-05-09T14:26:15Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961027",
+ "id": 166961027,
+ "node_id": "RA_kwDOBPZW984J85-D",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3546285,
+ "download_count": 7,
+ "created_at": "2024-05-09T14:26:16Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961017",
+ "id": 166961017,
+ "node_id": "RA_kwDOBPZW984J8595",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3440480,
+ "download_count": 27,
+ "created_at": "2024-05-09T14:26:14Z",
+ "updated_at": "2024-05-09T14:26:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961019",
+ "id": 166961019,
+ "node_id": "RA_kwDOBPZW984J8597",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3347904,
+ "download_count": 30,
+ "created_at": "2024-05-09T14:26:15Z",
+ "updated_at": "2024-05-09T14:26:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961023",
+ "id": 166961023,
+ "node_id": "RA_kwDOBPZW984J859_",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3427534,
+ "download_count": 7,
+ "created_at": "2024-05-09T14:26:15Z",
+ "updated_at": "2024-05-09T14:26:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961008",
+ "id": 166961008,
+ "node_id": "RA_kwDOBPZW984J859w",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3338534,
+ "download_count": 394,
+ "created_at": "2024-05-09T14:26:13Z",
+ "updated_at": "2024-05-09T14:26:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961004",
+ "id": 166961004,
+ "node_id": "RA_kwDOBPZW984J859s",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3637664,
+ "download_count": 519,
+ "created_at": "2024-05-09T14:26:12Z",
+ "updated_at": "2024-05-09T14:26:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961014",
+ "id": 166961014,
+ "node_id": "RA_kwDOBPZW984J8592",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3788562,
+ "download_count": 1219,
+ "created_at": "2024-05-09T14:26:14Z",
+ "updated_at": "2024-05-09T14:26:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961005",
+ "id": 166961005,
+ "node_id": "RA_kwDOBPZW984J859t",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3562383,
+ "download_count": 10,
+ "created_at": "2024-05-09T14:26:12Z",
+ "updated_at": "2024-05-09T14:26:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166961006",
+ "id": 166961006,
+ "node_id": "RA_kwDOBPZW984J859u",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3427019,
+ "download_count": 456,
+ "created_at": "2024-05-09T14:26:13Z",
+ "updated_at": "2024-05-09T14:26:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.37.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.37.1",
+ "body": "- Fix bug where non-string values (numbers, bools) added to `env:` weren't been correctly exported (#1640, #1641 by @vmaerten and @andreynering).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/154953126/reactions",
+ "total_count": 9,
+ "+1": 3,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 6,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 2
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/154864477",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/154864477/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/154864477/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.37.0",
+ "id": 154864477,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984JOwtd",
+ "tag_name": "v3.37.0",
+ "target_commitish": "main",
+ "name": "v3.37.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-05-09T00:32:34Z",
+ "published_at": "2024-05-09T00:38:12Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841755",
+ "id": 166841755,
+ "node_id": "RA_kwDOBPZW984J8c2b",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 2510,
+ "created_at": "2024-05-09T00:35:54Z",
+ "updated_at": "2024-05-09T00:35:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841714",
+ "id": 166841714,
+ "node_id": "RA_kwDOBPZW984J8c1y",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3786360,
+ "download_count": 137,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841732",
+ "id": 166841732,
+ "node_id": "RA_kwDOBPZW984J8c2E",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3610883,
+ "download_count": 618,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841730",
+ "id": 166841730,
+ "node_id": "RA_kwDOBPZW984J8c2C",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3451730,
+ "download_count": 73,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841736",
+ "id": 166841736,
+ "node_id": "RA_kwDOBPZW984J8c2I",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3638698,
+ "download_count": 73,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841720",
+ "id": 166841720,
+ "node_id": "RA_kwDOBPZW984J8c14",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3433900,
+ "download_count": 11,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841722",
+ "id": 166841722,
+ "node_id": "RA_kwDOBPZW984J8c16",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3331256,
+ "download_count": 9,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841743",
+ "id": 166841743,
+ "node_id": "RA_kwDOBPZW984J8c2P",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3467608,
+ "download_count": 72,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841747",
+ "id": 166841747,
+ "node_id": "RA_kwDOBPZW984J8c2T",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3574270,
+ "download_count": 84,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841728",
+ "id": 166841728,
+ "node_id": "RA_kwDOBPZW984J8c2A",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3461522,
+ "download_count": 75,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841746",
+ "id": 166841746,
+ "node_id": "RA_kwDOBPZW984J8c2S",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3653196,
+ "download_count": 1468,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841750",
+ "id": 166841750,
+ "node_id": "RA_kwDOBPZW984J8c2W",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3766006,
+ "download_count": 81,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841738",
+ "id": 166841738,
+ "node_id": "RA_kwDOBPZW984J8c2K",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3643655,
+ "download_count": 35589,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841744",
+ "id": 166841744,
+ "node_id": "RA_kwDOBPZW984J8c2Q",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3445044,
+ "download_count": 7,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841748",
+ "id": 166841748,
+ "node_id": "RA_kwDOBPZW984J8c2U",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3531138,
+ "download_count": 7,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841713",
+ "id": 166841713,
+ "node_id": "RA_kwDOBPZW984J8c1x",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3440230,
+ "download_count": 9,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841740",
+ "id": 166841740,
+ "node_id": "RA_kwDOBPZW984J8c2M",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3347698,
+ "download_count": 13,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841753",
+ "id": 166841753,
+ "node_id": "RA_kwDOBPZW984J8c2Z",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3442103,
+ "download_count": 7,
+ "created_at": "2024-05-09T00:35:53Z",
+ "updated_at": "2024-05-09T00:35:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841712",
+ "id": 166841712,
+ "node_id": "RA_kwDOBPZW984J8c1w",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3338326,
+ "download_count": 2164,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841725",
+ "id": 166841725,
+ "node_id": "RA_kwDOBPZW984J8c19",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3637197,
+ "download_count": 534,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841715",
+ "id": 166841715,
+ "node_id": "RA_kwDOBPZW984J8c1z",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3788124,
+ "download_count": 1011,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841734",
+ "id": 166841734,
+ "node_id": "RA_kwDOBPZW984J8c2G",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3562571,
+ "download_count": 8,
+ "created_at": "2024-05-09T00:35:52Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/166841723",
+ "id": 166841723,
+ "node_id": "RA_kwDOBPZW984J8c17",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3426811,
+ "download_count": 453,
+ "created_at": "2024-05-09T00:35:51Z",
+ "updated_at": "2024-05-09T00:35:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.37.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.37.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.37.0",
+ "body": "- Released the [Any Variables experiment](https://taskfile.dev/blog/any-variables), but [_without support for maps_](https://github.com/go-task/task/issues/1415#issuecomment-2044756925) (#1415, #1547 by @pd93).\r\n- Refactored how Task reads, parses and merges Taskfiles using a DAG (#1563, #1607 by @pd93).\r\n- Fix a bug which stopped tasks from using `stdin` as input (#1593, #1623 by @pd93).\r\n- Fix error when a file or directory in the project contained a special char like `&`, `(` or `)` (#1551, #1584 by @andreynering).\r\n- Added alias `q` for template function `shellQuote` (#1601, #1603 by @vergenzt)\r\n- Added support for `~` on ZSH completions (#1613 by @jwater7).\r\n- Added the ability to pass variables by reference using Go template syntax when the [Map Variables experiment](https://taskfile.dev/experiments/map-variables/) is enabled (#1612 by @pd93).\r\n- Added support for environment variables in the templating engine in `includes` (#1610 by @vmaerten).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/154864477/reactions",
+ "total_count": 15,
+ "+1": 3,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 7,
+ "confused": 0,
+ "heart": 1,
+ "rocket": 4,
+ "eyes": 0
+ },
+ "mentions_count": 5
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/150314586",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/150314586/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/150314586/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.36.0",
+ "id": 150314586,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984I9Z5a",
+ "tag_name": "v3.36.0",
+ "target_commitish": "main",
+ "name": "v3.36.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-04-09T01:12:11Z",
+ "published_at": "2024-04-09T01:17:19Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039731",
+ "id": 161039731,
+ "node_id": "RA_kwDOBPZW984JmUVz",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 176215,
+ "created_at": "2024-04-09T01:15:36Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039704",
+ "id": 161039704,
+ "node_id": "RA_kwDOBPZW984JmUVY",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3754176,
+ "download_count": 9015,
+ "created_at": "2024-04-09T01:15:33Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039709",
+ "id": 161039709,
+ "node_id": "RA_kwDOBPZW984JmUVd",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3575030,
+ "download_count": 8196,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039719",
+ "id": 161039719,
+ "node_id": "RA_kwDOBPZW984JmUVn",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3420517,
+ "download_count": 86,
+ "created_at": "2024-04-09T01:15:35Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039707",
+ "id": 161039707,
+ "node_id": "RA_kwDOBPZW984JmUVb",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3608300,
+ "download_count": 103,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039721",
+ "id": 161039721,
+ "node_id": "RA_kwDOBPZW984JmUVp",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3405900,
+ "download_count": 19,
+ "created_at": "2024-04-09T01:15:35Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039712",
+ "id": 161039712,
+ "node_id": "RA_kwDOBPZW984JmUVg",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3302284,
+ "download_count": 18,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039724",
+ "id": 161039724,
+ "node_id": "RA_kwDOBPZW984JmUVs",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3438068,
+ "download_count": 146,
+ "created_at": "2024-04-09T01:15:35Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039726",
+ "id": 161039726,
+ "node_id": "RA_kwDOBPZW984JmUVu",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3539094,
+ "download_count": 234,
+ "created_at": "2024-04-09T01:15:36Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039715",
+ "id": 161039715,
+ "node_id": "RA_kwDOBPZW984JmUVj",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3430498,
+ "download_count": 273,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039725",
+ "id": 161039725,
+ "node_id": "RA_kwDOBPZW984JmUVt",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3621260,
+ "download_count": 2716,
+ "created_at": "2024-04-09T01:15:36Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039727",
+ "id": 161039727,
+ "node_id": "RA_kwDOBPZW984JmUVv",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3734364,
+ "download_count": 1431,
+ "created_at": "2024-04-09T01:15:36Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039717",
+ "id": 161039717,
+ "node_id": "RA_kwDOBPZW984JmUVl",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3612536,
+ "download_count": 538917,
+ "created_at": "2024-04-09T01:15:35Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039723",
+ "id": 161039723,
+ "node_id": "RA_kwDOBPZW984JmUVr",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3417656,
+ "download_count": 35,
+ "created_at": "2024-04-09T01:15:35Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039728",
+ "id": 161039728,
+ "node_id": "RA_kwDOBPZW984JmUVw",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3503204,
+ "download_count": 16,
+ "created_at": "2024-04-09T01:15:36Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039714",
+ "id": 161039714,
+ "node_id": "RA_kwDOBPZW984JmUVi",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3412436,
+ "download_count": 32,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039722",
+ "id": 161039722,
+ "node_id": "RA_kwDOBPZW984JmUVq",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3319934,
+ "download_count": 56,
+ "created_at": "2024-04-09T01:15:35Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039730",
+ "id": 161039730,
+ "node_id": "RA_kwDOBPZW984JmUVy",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3404991,
+ "download_count": 16,
+ "created_at": "2024-04-09T01:15:36Z",
+ "updated_at": "2024-04-09T01:15:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039711",
+ "id": 161039711,
+ "node_id": "RA_kwDOBPZW984JmUVf",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3311258,
+ "download_count": 8555,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039706",
+ "id": 161039706,
+ "node_id": "RA_kwDOBPZW984JmUVa",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3608183,
+ "download_count": 637,
+ "created_at": "2024-04-09T01:15:33Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039703",
+ "id": 161039703,
+ "node_id": "RA_kwDOBPZW984JmUVX",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3757729,
+ "download_count": 8320,
+ "created_at": "2024-04-09T01:15:33Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039713",
+ "id": 161039713,
+ "node_id": "RA_kwDOBPZW984JmUVh",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3532594,
+ "download_count": 21,
+ "created_at": "2024-04-09T01:15:34Z",
+ "updated_at": "2024-04-09T01:15:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/161039705",
+ "id": 161039705,
+ "node_id": "RA_kwDOBPZW984JmUVZ",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3394892,
+ "download_count": 548,
+ "created_at": "2024-04-09T01:15:33Z",
+ "updated_at": "2024-04-09T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.36.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.36.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.36.0",
+ "body": "- Added support for [looping over dependencies](https://taskfile.dev/usage/#looping-over-dependencies) (#1299, #1541 by @pd93).\r\n- When using the \"[Remote Taskfiles](https://taskfile.dev/experiments/remote-taskfiles/)\" experiment, you are now able to use [remote Taskfiles as your entrypoint](https://taskfile.dev/experiments/remote-taskfiles/#root-remote-taskfiles).\r\n- `includes` in remote Taskfiles will now also resolve correctly (#1347 by @pd93).\r\n- When using the \"[Any Variables](https://taskfile.dev/experiments/any-variables/)\" experiments, templating is now supported in collection-type variables (#1477, #1511, #1526 by @pd93).\r\n- Fixed a bug where variables being passed to an included Taskfile were not available when defining global variables (#1503, #1533 by @pd93).\r\n- Improved support to customized colors by allowing 8-bit colors and multiple ANSI attributes (#1576 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/150314586/reactions",
+ "total_count": 17,
+ "+1": 7,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 10,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/144733197",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/144733197/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/144733197/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.35.1",
+ "id": 144733197,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984IoHQN",
+ "tag_name": "v3.35.1",
+ "target_commitish": "main",
+ "name": "v3.35.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-03-04T22:21:12Z",
+ "published_at": "2024-03-04T22:29:08Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904286",
+ "id": 154904286,
+ "node_id": "RA_kwDOBPZW984JO6be",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 179346,
+ "created_at": "2024-03-04T22:24:20Z",
+ "updated_at": "2024-03-04T22:24:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904255",
+ "id": 154904255,
+ "node_id": "RA_kwDOBPZW984JO6a_",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3742165,
+ "download_count": 7474,
+ "created_at": "2024-03-04T22:24:16Z",
+ "updated_at": "2024-03-04T22:24:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904262",
+ "id": 154904262,
+ "node_id": "RA_kwDOBPZW984JO6bG",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3567615,
+ "download_count": 5488,
+ "created_at": "2024-03-04T22:24:16Z",
+ "updated_at": "2024-03-04T22:24:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904269",
+ "id": 154904269,
+ "node_id": "RA_kwDOBPZW984JO6bN",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3412757,
+ "download_count": 99,
+ "created_at": "2024-03-04T22:24:17Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904263",
+ "id": 154904263,
+ "node_id": "RA_kwDOBPZW984JO6bH",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3596271,
+ "download_count": 109,
+ "created_at": "2024-03-04T22:24:17Z",
+ "updated_at": "2024-03-04T22:24:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904256",
+ "id": 154904256,
+ "node_id": "RA_kwDOBPZW984JO6bA",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3398261,
+ "download_count": 23,
+ "created_at": "2024-03-04T22:24:16Z",
+ "updated_at": "2024-03-04T22:24:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904257",
+ "id": 154904257,
+ "node_id": "RA_kwDOBPZW984JO6bB",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3293852,
+ "download_count": 20,
+ "created_at": "2024-03-04T22:24:16Z",
+ "updated_at": "2024-03-04T22:24:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904276",
+ "id": 154904276,
+ "node_id": "RA_kwDOBPZW984JO6bU",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3428380,
+ "download_count": 171,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904279",
+ "id": 154904279,
+ "node_id": "RA_kwDOBPZW984JO6bX",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3527794,
+ "download_count": 324,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904266",
+ "id": 154904266,
+ "node_id": "RA_kwDOBPZW984JO6bK",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3422250,
+ "download_count": 432,
+ "created_at": "2024-03-04T22:24:17Z",
+ "updated_at": "2024-03-04T22:24:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904281",
+ "id": 154904281,
+ "node_id": "RA_kwDOBPZW984JO6bZ",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3611542,
+ "download_count": 10203,
+ "created_at": "2024-03-04T22:24:19Z",
+ "updated_at": "2024-03-04T22:24:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904283",
+ "id": 154904283,
+ "node_id": "RA_kwDOBPZW984JO6bb",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3728078,
+ "download_count": 1543,
+ "created_at": "2024-03-04T22:24:19Z",
+ "updated_at": "2024-03-04T22:24:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904270",
+ "id": 154904270,
+ "node_id": "RA_kwDOBPZW984JO6bO",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3601692,
+ "download_count": 494522,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904277",
+ "id": 154904277,
+ "node_id": "RA_kwDOBPZW984JO6bV",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3408882,
+ "download_count": 23,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904282",
+ "id": 154904282,
+ "node_id": "RA_kwDOBPZW984JO6ba",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3495928,
+ "download_count": 21,
+ "created_at": "2024-03-04T22:24:19Z",
+ "updated_at": "2024-03-04T22:24:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904271",
+ "id": 154904271,
+ "node_id": "RA_kwDOBPZW984JO6bP",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3402942,
+ "download_count": 56,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904274",
+ "id": 154904274,
+ "node_id": "RA_kwDOBPZW984JO6bS",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3308738,
+ "download_count": 413,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904284",
+ "id": 154904284,
+ "node_id": "RA_kwDOBPZW984JO6bc",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3388477,
+ "download_count": 2290,
+ "created_at": "2024-03-04T22:24:19Z",
+ "updated_at": "2024-03-04T22:24:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904264",
+ "id": 154904264,
+ "node_id": "RA_kwDOBPZW984JO6bI",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3299595,
+ "download_count": 8472,
+ "created_at": "2024-03-04T22:24:17Z",
+ "updated_at": "2024-03-04T22:24:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904254",
+ "id": 154904254,
+ "node_id": "RA_kwDOBPZW984JO6a-",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3597367,
+ "download_count": 697,
+ "created_at": "2024-03-04T22:24:16Z",
+ "updated_at": "2024-03-04T22:24:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904273",
+ "id": 154904273,
+ "node_id": "RA_kwDOBPZW984JO6bR",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3743629,
+ "download_count": 8155,
+ "created_at": "2024-03-04T22:24:18Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904268",
+ "id": 154904268,
+ "node_id": "RA_kwDOBPZW984JO6bM",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3523356,
+ "download_count": 26,
+ "created_at": "2024-03-04T22:24:17Z",
+ "updated_at": "2024-03-04T22:24:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154904265",
+ "id": 154904265,
+ "node_id": "RA_kwDOBPZW984JO6bJ",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3385391,
+ "download_count": 619,
+ "created_at": "2024-03-04T22:24:17Z",
+ "updated_at": "2024-03-04T22:24:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.35.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.35.1",
+ "body": "- Fixed a bug where the `TASKFILE_DIR` variable was sometimes incorrect (#1522, #1523 by @pd93).\r\n- Added a new `TASKFILE` special variable that holds the root Taskfile path (#1523 by @pd93).\r\n- Fixed various issues related to running a Taskfile from a subdirectory (#1529, #1530 by @pd93).\r\n",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/144733197/reactions",
+ "total_count": 14,
+ "+1": 14,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/144089026",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/144089026/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/144089026/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.35.0",
+ "id": 144089026,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Ilp_C",
+ "tag_name": "v3.35.0",
+ "target_commitish": "main",
+ "name": "v3.35.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-02-28T22:55:28Z",
+ "published_at": "2024-02-28T23:52:42Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089809",
+ "id": 154089809,
+ "node_id": "RA_kwDOBPZW984JLzlR",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 44535,
+ "created_at": "2024-02-28T22:58:38Z",
+ "updated_at": "2024-02-28T22:58:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089786",
+ "id": 154089786,
+ "node_id": "RA_kwDOBPZW984JLzk6",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3741615,
+ "download_count": 1669,
+ "created_at": "2024-02-28T22:58:34Z",
+ "updated_at": "2024-02-28T22:58:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089781",
+ "id": 154089781,
+ "node_id": "RA_kwDOBPZW984JLzk1",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3566740,
+ "download_count": 1424,
+ "created_at": "2024-02-28T22:58:33Z",
+ "updated_at": "2024-02-28T22:58:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089782",
+ "id": 154089782,
+ "node_id": "RA_kwDOBPZW984JLzk2",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3413024,
+ "download_count": 86,
+ "created_at": "2024-02-28T22:58:33Z",
+ "updated_at": "2024-02-28T22:58:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089785",
+ "id": 154089785,
+ "node_id": "RA_kwDOBPZW984JLzk5",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3596353,
+ "download_count": 89,
+ "created_at": "2024-02-28T22:58:34Z",
+ "updated_at": "2024-02-28T22:58:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089784",
+ "id": 154089784,
+ "node_id": "RA_kwDOBPZW984JLzk4",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3398272,
+ "download_count": 8,
+ "created_at": "2024-02-28T22:58:34Z",
+ "updated_at": "2024-02-28T22:58:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089788",
+ "id": 154089788,
+ "node_id": "RA_kwDOBPZW984JLzk8",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3293534,
+ "download_count": 9,
+ "created_at": "2024-02-28T22:58:34Z",
+ "updated_at": "2024-02-28T22:58:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089800",
+ "id": 154089800,
+ "node_id": "RA_kwDOBPZW984JLzlI",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3428464,
+ "download_count": 94,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089808",
+ "id": 154089808,
+ "node_id": "RA_kwDOBPZW984JLzlQ",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3541011,
+ "download_count": 131,
+ "created_at": "2024-02-28T22:58:38Z",
+ "updated_at": "2024-02-28T22:58:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089795",
+ "id": 154089795,
+ "node_id": "RA_kwDOBPZW984JLzlD",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3422321,
+ "download_count": 225,
+ "created_at": "2024-02-28T22:58:36Z",
+ "updated_at": "2024-02-28T22:58:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089803",
+ "id": 154089803,
+ "node_id": "RA_kwDOBPZW984JLzlL",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3611622,
+ "download_count": 11482,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089805",
+ "id": 154089805,
+ "node_id": "RA_kwDOBPZW984JLzlN",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3727771,
+ "download_count": 404,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089793",
+ "id": 154089793,
+ "node_id": "RA_kwDOBPZW984JLzlB",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3601681,
+ "download_count": 149815,
+ "created_at": "2024-02-28T22:58:36Z",
+ "updated_at": "2024-02-28T22:58:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089802",
+ "id": 154089802,
+ "node_id": "RA_kwDOBPZW984JLzlK",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3408516,
+ "download_count": 17,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089804",
+ "id": 154089804,
+ "node_id": "RA_kwDOBPZW984JLzlM",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3493884,
+ "download_count": 8,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089792",
+ "id": 154089792,
+ "node_id": "RA_kwDOBPZW984JLzlA",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3402620,
+ "download_count": 31,
+ "created_at": "2024-02-28T22:58:35Z",
+ "updated_at": "2024-02-28T22:58:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089799",
+ "id": 154089799,
+ "node_id": "RA_kwDOBPZW984JLzlH",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3308724,
+ "download_count": 54,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089807",
+ "id": 154089807,
+ "node_id": "RA_kwDOBPZW984JLzlP",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3388456,
+ "download_count": 7,
+ "created_at": "2024-02-28T22:58:37Z",
+ "updated_at": "2024-02-28T22:58:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089798",
+ "id": 154089798,
+ "node_id": "RA_kwDOBPZW984JLzlG",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3299633,
+ "download_count": 1946,
+ "created_at": "2024-02-28T22:58:36Z",
+ "updated_at": "2024-02-28T22:58:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089780",
+ "id": 154089780,
+ "node_id": "RA_kwDOBPZW984JLzk0",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3597541,
+ "download_count": 99,
+ "created_at": "2024-02-28T22:58:33Z",
+ "updated_at": "2024-02-28T22:58:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089794",
+ "id": 154089794,
+ "node_id": "RA_kwDOBPZW984JLzlC",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3743807,
+ "download_count": 1701,
+ "created_at": "2024-02-28T22:58:36Z",
+ "updated_at": "2024-02-28T22:58:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089789",
+ "id": 154089789,
+ "node_id": "RA_kwDOBPZW984JLzk9",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3523376,
+ "download_count": 11,
+ "created_at": "2024-02-28T22:58:35Z",
+ "updated_at": "2024-02-28T22:58:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/154089783",
+ "id": 154089783,
+ "node_id": "RA_kwDOBPZW984JLzk3",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3384761,
+ "download_count": 22,
+ "created_at": "2024-02-28T22:58:33Z",
+ "updated_at": "2024-02-28T22:58:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.35.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.35.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.35.0",
+ "body": "- Added support for [wildcards in task names](https://taskfile.dev/usage/#wildcard-arguments) (#836, #1489 by @pd93).\r\n- Added the ability to [run Taskfiles via stdin](https://taskfile.dev/usage/#reading-a-taskfile-from-stdin) (#655, #1483 by @pd93).\r\n- Bumped minimum Go version to 1.21 (#1500 by @pd93).\r\n- Fixed bug related to the `--list` flag (#1509, #1512 by @pd93, #1514, #1520 by @pd93).\r\n- Add mention on the documentation to the fact that the variable declaration order is respected (#1510 by @kirkrodrigues).\r\n- Improved style guide docs (#1495 by @iwittkau).\r\n- Removed duplicated entry for `requires` on the API docs (#1491 by @teatimeguest).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/144089026/reactions",
+ "total_count": 18,
+ "+1": 10,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 8,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 4
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/138794464",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/138794464/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/138794464/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.34.1",
+ "id": 138794464,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984IRdXg",
+ "tag_name": "v3.34.1",
+ "target_commitish": "main",
+ "name": "v3.34.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-01-27T21:49:27Z",
+ "published_at": "2024-01-27T21:53:29Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228184",
+ "id": 148228184,
+ "node_id": "RA_kwDOBPZW984I1chY",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 130249,
+ "created_at": "2024-01-27T21:52:37Z",
+ "updated_at": "2024-01-27T21:52:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228157",
+ "id": 148228157,
+ "node_id": "RA_kwDOBPZW984I1cg9",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3734414,
+ "download_count": 7058,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228170",
+ "id": 148228170,
+ "node_id": "RA_kwDOBPZW984I1chK",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3557898,
+ "download_count": 5137,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228160",
+ "id": 148228160,
+ "node_id": "RA_kwDOBPZW984I1chA",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3403798,
+ "download_count": 95,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228167",
+ "id": 148228167,
+ "node_id": "RA_kwDOBPZW984I1chH",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3589679,
+ "download_count": 102,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228162",
+ "id": 148228162,
+ "node_id": "RA_kwDOBPZW984I1chC",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3391403,
+ "download_count": 19,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228166",
+ "id": 148228166,
+ "node_id": "RA_kwDOBPZW984I1chG",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3287503,
+ "download_count": 18,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228175",
+ "id": 148228175,
+ "node_id": "RA_kwDOBPZW984I1chP",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3421302,
+ "download_count": 149,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228177",
+ "id": 148228177,
+ "node_id": "RA_kwDOBPZW984I1chR",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3527484,
+ "download_count": 296,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228164",
+ "id": 148228164,
+ "node_id": "RA_kwDOBPZW984I1chE",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3414401,
+ "download_count": 160,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228178",
+ "id": 148228178,
+ "node_id": "RA_kwDOBPZW984I1chS",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3601758,
+ "download_count": 7141,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228180",
+ "id": 148228180,
+ "node_id": "RA_kwDOBPZW984I1chU",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3713644,
+ "download_count": 1456,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228171",
+ "id": 148228171,
+ "node_id": "RA_kwDOBPZW984I1chL",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3591989,
+ "download_count": 559618,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228174",
+ "id": 148228174,
+ "node_id": "RA_kwDOBPZW984I1chO",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3400392,
+ "download_count": 26,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228183",
+ "id": 148228183,
+ "node_id": "RA_kwDOBPZW984I1chX",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3480338,
+ "download_count": 18,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228158",
+ "id": 148228158,
+ "node_id": "RA_kwDOBPZW984I1cg-",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3394936,
+ "download_count": 68,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228173",
+ "id": 148228173,
+ "node_id": "RA_kwDOBPZW984I1chN",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3302182,
+ "download_count": 79,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228182",
+ "id": 148228182,
+ "node_id": "RA_kwDOBPZW984I1chW",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3379505,
+ "download_count": 24,
+ "created_at": "2024-01-27T21:52:36Z",
+ "updated_at": "2024-01-27T21:52:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228161",
+ "id": 148228161,
+ "node_id": "RA_kwDOBPZW984I1chB",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3292875,
+ "download_count": 8806,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228163",
+ "id": 148228163,
+ "node_id": "RA_kwDOBPZW984I1chD",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3588273,
+ "download_count": 776,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228155",
+ "id": 148228155,
+ "node_id": "RA_kwDOBPZW984I1cg7",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3735100,
+ "download_count": 7687,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228156",
+ "id": 148228156,
+ "node_id": "RA_kwDOBPZW984I1cg8",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3515665,
+ "download_count": 20,
+ "created_at": "2024-01-27T21:52:34Z",
+ "updated_at": "2024-01-27T21:52:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/148228168",
+ "id": 148228168,
+ "node_id": "RA_kwDOBPZW984I1chI",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3378196,
+ "download_count": 660,
+ "created_at": "2024-01-27T21:52:35Z",
+ "updated_at": "2024-01-27T21:52:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.34.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.34.1",
+ "body": "- Fixed prompt regression on [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles/) (#1486, #1487 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/138794464/reactions",
+ "total_count": 17,
+ "+1": 10,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 6,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 1,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/138600410",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/138600410/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/138600410/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.34.0",
+ "id": 138600410,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984IQt_a",
+ "tag_name": "v3.34.0",
+ "target_commitish": "main",
+ "name": "v3.34.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2024-01-26T00:43:38Z",
+ "published_at": "2024-01-26T00:48:37Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877303",
+ "id": 147877303,
+ "node_id": "RA_kwDOBPZW984I0G23",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 3691,
+ "created_at": "2024-01-26T00:47:04Z",
+ "updated_at": "2024-01-26T00:47:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877260",
+ "id": 147877260,
+ "node_id": "RA_kwDOBPZW984I0G2M",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3734414,
+ "download_count": 476,
+ "created_at": "2024-01-26T00:46:59Z",
+ "updated_at": "2024-01-26T00:47:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877276",
+ "id": 147877276,
+ "node_id": "RA_kwDOBPZW984I0G2c",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3557892,
+ "download_count": 578,
+ "created_at": "2024-01-26T00:47:01Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877257",
+ "id": 147877257,
+ "node_id": "RA_kwDOBPZW984I0G2J",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3404156,
+ "download_count": 84,
+ "created_at": "2024-01-26T00:46:59Z",
+ "updated_at": "2024-01-26T00:47:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877267",
+ "id": 147877267,
+ "node_id": "RA_kwDOBPZW984I0G2T",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3589683,
+ "download_count": 86,
+ "created_at": "2024-01-26T00:47:00Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877266",
+ "id": 147877266,
+ "node_id": "RA_kwDOBPZW984I0G2S",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3391425,
+ "download_count": 8,
+ "created_at": "2024-01-26T00:47:00Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877272",
+ "id": 147877272,
+ "node_id": "RA_kwDOBPZW984I0G2Y",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3287506,
+ "download_count": 10,
+ "created_at": "2024-01-26T00:47:01Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877281",
+ "id": 147877281,
+ "node_id": "RA_kwDOBPZW984I0G2h",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3421268,
+ "download_count": 90,
+ "created_at": "2024-01-26T00:47:02Z",
+ "updated_at": "2024-01-26T00:47:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877292",
+ "id": 147877292,
+ "node_id": "RA_kwDOBPZW984I0G2s",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3527407,
+ "download_count": 111,
+ "created_at": "2024-01-26T00:47:03Z",
+ "updated_at": "2024-01-26T00:47:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877275",
+ "id": 147877275,
+ "node_id": "RA_kwDOBPZW984I0G2b",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3414398,
+ "download_count": 87,
+ "created_at": "2024-01-26T00:47:01Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877294",
+ "id": 147877294,
+ "node_id": "RA_kwDOBPZW984I0G2u",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3601736,
+ "download_count": 161,
+ "created_at": "2024-01-26T00:47:03Z",
+ "updated_at": "2024-01-26T00:47:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877297",
+ "id": 147877297,
+ "node_id": "RA_kwDOBPZW984I0G2x",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3713630,
+ "download_count": 121,
+ "created_at": "2024-01-26T00:47:03Z",
+ "updated_at": "2024-01-26T00:47:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877279",
+ "id": 147877279,
+ "node_id": "RA_kwDOBPZW984I0G2f",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3591972,
+ "download_count": 16382,
+ "created_at": "2024-01-26T00:47:02Z",
+ "updated_at": "2024-01-26T00:47:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877289",
+ "id": 147877289,
+ "node_id": "RA_kwDOBPZW984I0G2p",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3400594,
+ "download_count": 7,
+ "created_at": "2024-01-26T00:47:02Z",
+ "updated_at": "2024-01-26T00:47:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877300",
+ "id": 147877300,
+ "node_id": "RA_kwDOBPZW984I0G20",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3480635,
+ "download_count": 7,
+ "created_at": "2024-01-26T00:47:03Z",
+ "updated_at": "2024-01-26T00:47:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877278",
+ "id": 147877278,
+ "node_id": "RA_kwDOBPZW984I0G2e",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3395133,
+ "download_count": 14,
+ "created_at": "2024-01-26T00:47:02Z",
+ "updated_at": "2024-01-26T00:47:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877280",
+ "id": 147877280,
+ "node_id": "RA_kwDOBPZW984I0G2g",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3302176,
+ "download_count": 22,
+ "created_at": "2024-01-26T00:47:02Z",
+ "updated_at": "2024-01-26T00:47:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877301",
+ "id": 147877301,
+ "node_id": "RA_kwDOBPZW984I0G21",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3379504,
+ "download_count": 11,
+ "created_at": "2024-01-26T00:47:03Z",
+ "updated_at": "2024-01-26T00:47:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877268",
+ "id": 147877268,
+ "node_id": "RA_kwDOBPZW984I0G2U",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3292872,
+ "download_count": 263,
+ "created_at": "2024-01-26T00:47:00Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877265",
+ "id": 147877265,
+ "node_id": "RA_kwDOBPZW984I0G2R",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3588049,
+ "download_count": 744,
+ "created_at": "2024-01-26T00:47:00Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877273",
+ "id": 147877273,
+ "node_id": "RA_kwDOBPZW984I0G2Z",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3735108,
+ "download_count": 1107,
+ "created_at": "2024-01-26T00:47:01Z",
+ "updated_at": "2024-01-26T00:47:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877259",
+ "id": 147877259,
+ "node_id": "RA_kwDOBPZW984I0G2L",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3515713,
+ "download_count": 10,
+ "created_at": "2024-01-26T00:46:59Z",
+ "updated_at": "2024-01-26T00:47:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/147877258",
+ "id": 147877258,
+ "node_id": "RA_kwDOBPZW984I0G2K",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3378339,
+ "download_count": 655,
+ "created_at": "2024-01-26T00:46:59Z",
+ "updated_at": "2024-01-26T00:47:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.34.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.34.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.34.0",
+ "body": "- Removed support for `version: 2` schemas. See the [deprecation notice on our website](https://taskfile.dev/deprecations/version-2-schema) (#1197, #1447 by @pd93).\r\n- Fixed a couple of issues in the JSON Schema + added a CI step to ensure it's correct (#1471, #1474, #1476 by @sirosen).\r\n- Added [Any Variables experiment proposal 2](https://taskfile.dev/experiments/any-variables/?proposal=2) (#1415, #1444 by @pd93).\r\n- Updated the experiments and deprecations documentation format (#1445 by @pd93).\r\n- Added new template function: `spew`, which can be used to print variables for debugging purposes (#1452 by @pd93).\r\n- Added new template function: `merge`, which can be used to merge any number of map variables (#1438, #1464 by @pd93).\r\n- Small change on the API when using as a library: `call.Direct` became `call.Indirect` (#1459 by @pd93).\r\n- Refactored the public `read` and `taskfile` packages and introduced `taskfile/ast` (#1450 by @pd93).\r\n- `ast.IncludedTaskfiles` renamed to `ast.Includes` and `orderedmap` package renamed to `omap` plus some internal refactor work (#1456 by @pd93).\r\n- Fix zsh completion script to allow lowercase `taskfile` file names (#1482 by @xontab).\r\n- Improvements on how we check the Taskfile version (#1465 by @pd93).\r\n- Added a new `ROOT_TASKFILE` special variable (#1468, #1469 by @pd93).\r\n- Fix experiment flags in `.env` when the `--dir` or `--taskfile` flags were used (#1478 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/138600410/reactions",
+ "total_count": 16,
+ "+1": 3,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 13,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/134844901",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/134844901/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/134844901/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.33.1",
+ "id": 134844901,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984ICZHl",
+ "tag_name": "v3.33.1",
+ "target_commitish": "main",
+ "name": "v3.33.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-12-21T23:10:41Z",
+ "published_at": "2023-12-21T23:15:22Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888407",
+ "id": 141888407,
+ "node_id": "RA_kwDOBPZW984IdQuX",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 76194,
+ "created_at": "2023-12-21T23:14:14Z",
+ "updated_at": "2023-12-21T23:14:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888393",
+ "id": 141888393,
+ "node_id": "RA_kwDOBPZW984IdQuJ",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3704634,
+ "download_count": 8315,
+ "created_at": "2023-12-21T23:14:12Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888381",
+ "id": 141888381,
+ "node_id": "RA_kwDOBPZW984IdQt9",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3528281,
+ "download_count": 4321,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888392",
+ "id": 141888392,
+ "node_id": "RA_kwDOBPZW984IdQuI",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3380715,
+ "download_count": 85,
+ "created_at": "2023-12-21T23:14:12Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888395",
+ "id": 141888395,
+ "node_id": "RA_kwDOBPZW984IdQuL",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3562921,
+ "download_count": 91,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888384",
+ "id": 141888384,
+ "node_id": "RA_kwDOBPZW984IdQuA",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3362024,
+ "download_count": 8,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888387",
+ "id": 141888387,
+ "node_id": "RA_kwDOBPZW984IdQuD",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3260229,
+ "download_count": 8,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888397",
+ "id": 141888397,
+ "node_id": "RA_kwDOBPZW984IdQuN",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3394508,
+ "download_count": 134,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888402",
+ "id": 141888402,
+ "node_id": "RA_kwDOBPZW984IdQuS",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3499519,
+ "download_count": 423,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888383",
+ "id": 141888383,
+ "node_id": "RA_kwDOBPZW984IdQt_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3387053,
+ "download_count": 183,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888400",
+ "id": 141888400,
+ "node_id": "RA_kwDOBPZW984IdQuQ",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3574512,
+ "download_count": 2987,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888401",
+ "id": 141888401,
+ "node_id": "RA_kwDOBPZW984IdQuR",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3694070,
+ "download_count": 1656,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888380",
+ "id": 141888380,
+ "node_id": "RA_kwDOBPZW984IdQt8",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3565760,
+ "download_count": 196088,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888398",
+ "id": 141888398,
+ "node_id": "RA_kwDOBPZW984IdQuO",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3372608,
+ "download_count": 13,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888406",
+ "id": 141888406,
+ "node_id": "RA_kwDOBPZW984IdQuW",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3460521,
+ "download_count": 6,
+ "created_at": "2023-12-21T23:14:14Z",
+ "updated_at": "2023-12-21T23:14:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888385",
+ "id": 141888385,
+ "node_id": "RA_kwDOBPZW984IdQuB",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3366516,
+ "download_count": 62,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888396",
+ "id": 141888396,
+ "node_id": "RA_kwDOBPZW984IdQuM",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3272980,
+ "download_count": 55,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888405",
+ "id": 141888405,
+ "node_id": "RA_kwDOBPZW984IdQuV",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3357299,
+ "download_count": 16,
+ "created_at": "2023-12-21T23:14:13Z",
+ "updated_at": "2023-12-21T23:14:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888386",
+ "id": 141888386,
+ "node_id": "RA_kwDOBPZW984IdQuC",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3264834,
+ "download_count": 5888,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888382",
+ "id": 141888382,
+ "node_id": "RA_kwDOBPZW984IdQt-",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3563631,
+ "download_count": 752,
+ "created_at": "2023-12-21T23:14:11Z",
+ "updated_at": "2023-12-21T23:14:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888391",
+ "id": 141888391,
+ "node_id": "RA_kwDOBPZW984IdQuH",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3708123,
+ "download_count": 7269,
+ "created_at": "2023-12-21T23:14:12Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888389",
+ "id": 141888389,
+ "node_id": "RA_kwDOBPZW984IdQuF",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3489697,
+ "download_count": 10,
+ "created_at": "2023-12-21T23:14:12Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141888390",
+ "id": 141888390,
+ "node_id": "RA_kwDOBPZW984IdQuG",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3353754,
+ "download_count": 688,
+ "created_at": "2023-12-21T23:14:12Z",
+ "updated_at": "2023-12-21T23:14:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.33.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.33.1",
+ "body": "- Added support for looping over map variables with the [Any Variables experiment](https://taskfile.dev/experiments/any-variables) enabled (#1435, #1437 by @pd93).\r\n- Fixed a bug where dynamic variables were causing errors during fast compilation (#1435, #1437 by @pd93)",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/134844901/reactions",
+ "total_count": 8,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/134714287",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/134714287/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/134714287/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.33.0",
+ "id": 134714287,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984IB5Ov",
+ "tag_name": "v3.33.0",
+ "target_commitish": "main",
+ "name": "v3.33.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-12-21T02:20:06Z",
+ "published_at": "2023-12-21T02:27:15Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736705",
+ "id": 141736705,
+ "node_id": "RA_kwDOBPZW984IcrsB",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 9226,
+ "created_at": "2023-12-21T02:23:19Z",
+ "updated_at": "2023-12-21T02:23:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736685",
+ "id": 141736685,
+ "node_id": "RA_kwDOBPZW984Icrrt",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3703672,
+ "download_count": 304,
+ "created_at": "2023-12-21T02:23:16Z",
+ "updated_at": "2023-12-21T02:23:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736684",
+ "id": 141736684,
+ "node_id": "RA_kwDOBPZW984Icrrs",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3528243,
+ "download_count": 326,
+ "created_at": "2023-12-21T02:23:16Z",
+ "updated_at": "2023-12-21T02:23:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736693",
+ "id": 141736693,
+ "node_id": "RA_kwDOBPZW984Icrr1",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3380513,
+ "download_count": 74,
+ "created_at": "2023-12-21T02:23:17Z",
+ "updated_at": "2023-12-21T02:23:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736690",
+ "id": 141736690,
+ "node_id": "RA_kwDOBPZW984Icrry",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3562549,
+ "download_count": 74,
+ "created_at": "2023-12-21T02:23:17Z",
+ "updated_at": "2023-12-21T02:23:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736683",
+ "id": 141736683,
+ "node_id": "RA_kwDOBPZW984Icrrr",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3361839,
+ "download_count": 7,
+ "created_at": "2023-12-21T02:23:16Z",
+ "updated_at": "2023-12-21T02:23:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736681",
+ "id": 141736681,
+ "node_id": "RA_kwDOBPZW984Icrrp",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3259869,
+ "download_count": 7,
+ "created_at": "2023-12-21T02:23:16Z",
+ "updated_at": "2023-12-21T02:23:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736699",
+ "id": 141736699,
+ "node_id": "RA_kwDOBPZW984Icrr7",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3394198,
+ "download_count": 75,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736704",
+ "id": 141736704,
+ "node_id": "RA_kwDOBPZW984IcrsA",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3521657,
+ "download_count": 91,
+ "created_at": "2023-12-21T02:23:19Z",
+ "updated_at": "2023-12-21T02:23:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736676",
+ "id": 141736676,
+ "node_id": "RA_kwDOBPZW984Icrrk",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3386889,
+ "download_count": 79,
+ "created_at": "2023-12-21T02:23:15Z",
+ "updated_at": "2023-12-21T02:23:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736702",
+ "id": 141736702,
+ "node_id": "RA_kwDOBPZW984Icrr-",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3574110,
+ "download_count": 118,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736703",
+ "id": 141736703,
+ "node_id": "RA_kwDOBPZW984Icrr_",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3690320,
+ "download_count": 138,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736694",
+ "id": 141736694,
+ "node_id": "RA_kwDOBPZW984Icrr2",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3565440,
+ "download_count": 16564,
+ "created_at": "2023-12-21T02:23:17Z",
+ "updated_at": "2023-12-21T02:23:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736698",
+ "id": 141736698,
+ "node_id": "RA_kwDOBPZW984Icrr6",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3371482,
+ "download_count": 6,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736700",
+ "id": 141736700,
+ "node_id": "RA_kwDOBPZW984Icrr8",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3466601,
+ "download_count": 6,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736686",
+ "id": 141736686,
+ "node_id": "RA_kwDOBPZW984Icrru",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3365445,
+ "download_count": 8,
+ "created_at": "2023-12-21T02:23:17Z",
+ "updated_at": "2023-12-21T02:23:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736696",
+ "id": 141736696,
+ "node_id": "RA_kwDOBPZW984Icrr4",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3272662,
+ "download_count": 12,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736701",
+ "id": 141736701,
+ "node_id": "RA_kwDOBPZW984Icrr9",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3361235,
+ "download_count": 6,
+ "created_at": "2023-12-21T02:23:18Z",
+ "updated_at": "2023-12-21T02:23:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736677",
+ "id": 141736677,
+ "node_id": "RA_kwDOBPZW984Icrrl",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3264028,
+ "download_count": 335,
+ "created_at": "2023-12-21T02:23:15Z",
+ "updated_at": "2023-12-21T02:23:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736678",
+ "id": 141736678,
+ "node_id": "RA_kwDOBPZW984Icrrm",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3563380,
+ "download_count": 742,
+ "created_at": "2023-12-21T02:23:15Z",
+ "updated_at": "2023-12-21T02:23:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736692",
+ "id": 141736692,
+ "node_id": "RA_kwDOBPZW984Icrr0",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3707342,
+ "download_count": 865,
+ "created_at": "2023-12-21T02:23:17Z",
+ "updated_at": "2023-12-21T02:23:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736679",
+ "id": 141736679,
+ "node_id": "RA_kwDOBPZW984Icrrn",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3489037,
+ "download_count": 7,
+ "created_at": "2023-12-21T02:23:15Z",
+ "updated_at": "2023-12-21T02:23:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/141736687",
+ "id": 141736687,
+ "node_id": "RA_kwDOBPZW984Icrrv",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3353404,
+ "download_count": 655,
+ "created_at": "2023-12-21T02:23:17Z",
+ "updated_at": "2023-12-21T02:23:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.33.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.33.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.33.0",
+ "body": "- Added [Any Variables experiment](https://taskfile.dev/experiments/any-variables) (#1415, #1421 by @pd93).\r\n- Updated Docusaurus to v3 (#1432 by @pd93).\r\n- Added `aliases` to `--json` flag output (#1430, #1431 by @pd93).\r\n- Added new `CLI_FORCE` special variable containing whether the `--force` or `--force-all` flags were set (#1412, #1434 by @pd93).\r\n\r\nMerry Christmas! :christmas_tree: :gift: :santa: :mrs_claus: ",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/134714287/reactions",
+ "total_count": 9,
+ "+1": 5,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 4,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/132014248",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/132014248/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/132014248/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.32.0",
+ "id": 132014248,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984H3mCo",
+ "tag_name": "v3.32.0",
+ "target_commitish": "main",
+ "name": "v3.32.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-11-30T01:40:04Z",
+ "published_at": "2023-11-30T01:44:41Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134636",
+ "id": 138134636,
+ "node_id": "RA_kwDOBPZW984IO8Rs",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 55935,
+ "created_at": "2023-11-30T01:43:08Z",
+ "updated_at": "2023-11-30T01:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134613",
+ "id": 138134613,
+ "node_id": "RA_kwDOBPZW984IO8RV",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3700977,
+ "download_count": 4175,
+ "created_at": "2023-11-30T01:43:05Z",
+ "updated_at": "2023-11-30T01:43:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134624",
+ "id": 138134624,
+ "node_id": "RA_kwDOBPZW984IO8Rg",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3527279,
+ "download_count": 3037,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134625",
+ "id": 138134625,
+ "node_id": "RA_kwDOBPZW984IO8Rh",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3379053,
+ "download_count": 77,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134615",
+ "id": 138134615,
+ "node_id": "RA_kwDOBPZW984IO8RX",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3561155,
+ "download_count": 80,
+ "created_at": "2023-11-30T01:43:05Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134619",
+ "id": 138134619,
+ "node_id": "RA_kwDOBPZW984IO8Rb",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3360574,
+ "download_count": 10,
+ "created_at": "2023-11-30T01:43:06Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134617",
+ "id": 138134617,
+ "node_id": "RA_kwDOBPZW984IO8RZ",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3258331,
+ "download_count": 8,
+ "created_at": "2023-11-30T01:43:06Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134630",
+ "id": 138134630,
+ "node_id": "RA_kwDOBPZW984IO8Rm",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3392798,
+ "download_count": 111,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134633",
+ "id": 138134633,
+ "node_id": "RA_kwDOBPZW984IO8Rp",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3498017,
+ "download_count": 533,
+ "created_at": "2023-11-30T01:43:08Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134621",
+ "id": 138134621,
+ "node_id": "RA_kwDOBPZW984IO8Rd",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3385480,
+ "download_count": 138,
+ "created_at": "2023-11-30T01:43:06Z",
+ "updated_at": "2023-11-30T01:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134631",
+ "id": 138134631,
+ "node_id": "RA_kwDOBPZW984IO8Rn",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3572590,
+ "download_count": 1616,
+ "created_at": "2023-11-30T01:43:08Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134635",
+ "id": 138134635,
+ "node_id": "RA_kwDOBPZW984IO8Rr",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3683310,
+ "download_count": 967,
+ "created_at": "2023-11-30T01:43:08Z",
+ "updated_at": "2023-11-30T01:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134627",
+ "id": 138134627,
+ "node_id": "RA_kwDOBPZW984IO8Rj",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3563819,
+ "download_count": 386449,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134629",
+ "id": 138134629,
+ "node_id": "RA_kwDOBPZW984IO8Rl",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3369904,
+ "download_count": 11,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134632",
+ "id": 138134632,
+ "node_id": "RA_kwDOBPZW984IO8Ro",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3477324,
+ "download_count": 7,
+ "created_at": "2023-11-30T01:43:08Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134614",
+ "id": 138134614,
+ "node_id": "RA_kwDOBPZW984IO8RW",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3364187,
+ "download_count": 12,
+ "created_at": "2023-11-30T01:43:05Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134628",
+ "id": 138134628,
+ "node_id": "RA_kwDOBPZW984IO8Rk",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3271228,
+ "download_count": 168,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134634",
+ "id": 138134634,
+ "node_id": "RA_kwDOBPZW984IO8Rq",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3357355,
+ "download_count": 940,
+ "created_at": "2023-11-30T01:43:08Z",
+ "updated_at": "2023-11-30T01:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134626",
+ "id": 138134626,
+ "node_id": "RA_kwDOBPZW984IO8Ri",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3262720,
+ "download_count": 4952,
+ "created_at": "2023-11-30T01:43:07Z",
+ "updated_at": "2023-11-30T01:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134612",
+ "id": 138134612,
+ "node_id": "RA_kwDOBPZW984IO8RU",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3561039,
+ "download_count": 847,
+ "created_at": "2023-11-30T01:43:05Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134620",
+ "id": 138134620,
+ "node_id": "RA_kwDOBPZW984IO8Rc",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3705836,
+ "download_count": 4689,
+ "created_at": "2023-11-30T01:43:06Z",
+ "updated_at": "2023-11-30T01:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134616",
+ "id": 138134616,
+ "node_id": "RA_kwDOBPZW984IO8RY",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3486072,
+ "download_count": 7,
+ "created_at": "2023-11-30T01:43:06Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/138134618",
+ "id": 138134618,
+ "node_id": "RA_kwDOBPZW984IO8Ra",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3351782,
+ "download_count": 771,
+ "created_at": "2023-11-30T01:43:06Z",
+ "updated_at": "2023-11-30T01:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.32.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.32.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.32.0",
+ "body": "- Added ability to exclude some files from `sources:` by using `exclude:` (#225, #1324 by @pd93 and @andreynering).\r\n- The [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) now prefers remote files over cached ones by default (#1317, #1345 by @pd93).\r\n- Added `--timeout` flag to the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) (#1317, #1345 by @pd93).\r\n- Fix bug where dynamic `vars:` and `env:` were being executed when they should actually be skipped by `platforms:` (#1273, #1377 by @andreynering).\r\n- Fix `schema.json` to make `silent` valid in `cmds` that use `for` (#1385, #1386 by @iainvm).\r\n- Add new `--no-status` flag to skip expensive status checks when running `task --list --json` (#1348, #1368 by @amancevice).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/132014248/reactions",
+ "total_count": 14,
+ "+1": 6,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 6,
+ "confused": 0,
+ "heart": 2,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 4
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/124156421",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/124156421/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/124156421/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.31.0",
+ "id": 124156421,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984HZnoF",
+ "tag_name": "v3.31.0",
+ "target_commitish": "main",
+ "name": "v3.31.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-10-07T22:10:57Z",
+ "published_at": "2023-10-07T22:17:52Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530276",
+ "id": 129530276,
+ "node_id": "RA_kwDOBPZW984HuHmk",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 246430,
+ "created_at": "2023-10-07T22:15:52Z",
+ "updated_at": "2023-10-07T22:15:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530263",
+ "id": 129530263,
+ "node_id": "RA_kwDOBPZW984HuHmX",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3701614,
+ "download_count": 11889,
+ "created_at": "2023-10-07T22:15:48Z",
+ "updated_at": "2023-10-07T22:15:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530266",
+ "id": 129530266,
+ "node_id": "RA_kwDOBPZW984HuHma",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3527149,
+ "download_count": 5893,
+ "created_at": "2023-10-07T22:15:49Z",
+ "updated_at": "2023-10-07T22:15:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530257",
+ "id": 129530257,
+ "node_id": "RA_kwDOBPZW984HuHmR",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3378944,
+ "download_count": 91,
+ "created_at": "2023-10-07T22:15:47Z",
+ "updated_at": "2023-10-07T22:15:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530267",
+ "id": 129530267,
+ "node_id": "RA_kwDOBPZW984HuHmb",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3560193,
+ "download_count": 113,
+ "created_at": "2023-10-07T22:15:49Z",
+ "updated_at": "2023-10-07T22:15:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530258",
+ "id": 129530258,
+ "node_id": "RA_kwDOBPZW984HuHmS",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3360595,
+ "download_count": 14,
+ "created_at": "2023-10-07T22:15:47Z",
+ "updated_at": "2023-10-07T22:15:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530260",
+ "id": 129530260,
+ "node_id": "RA_kwDOBPZW984HuHmU",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3258623,
+ "download_count": 12,
+ "created_at": "2023-10-07T22:15:48Z",
+ "updated_at": "2023-10-07T22:15:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530268",
+ "id": 129530268,
+ "node_id": "RA_kwDOBPZW984HuHmc",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3391760,
+ "download_count": 182,
+ "created_at": "2023-10-07T22:15:50Z",
+ "updated_at": "2023-10-07T22:15:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530272",
+ "id": 129530272,
+ "node_id": "RA_kwDOBPZW984HuHmg",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3500165,
+ "download_count": 407,
+ "created_at": "2023-10-07T22:15:51Z",
+ "updated_at": "2023-10-07T22:15:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530255",
+ "id": 129530255,
+ "node_id": "RA_kwDOBPZW984HuHmP",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3384417,
+ "download_count": 291,
+ "created_at": "2023-10-07T22:15:46Z",
+ "updated_at": "2023-10-07T22:15:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530269",
+ "id": 129530269,
+ "node_id": "RA_kwDOBPZW984HuHmd",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3572064,
+ "download_count": 13418,
+ "created_at": "2023-10-07T22:15:50Z",
+ "updated_at": "2023-10-07T22:15:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530273",
+ "id": 129530273,
+ "node_id": "RA_kwDOBPZW984HuHmh",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3682622,
+ "download_count": 21434,
+ "created_at": "2023-10-07T22:15:51Z",
+ "updated_at": "2023-10-07T22:15:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530254",
+ "id": 129530254,
+ "node_id": "RA_kwDOBPZW984HuHmO",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3563131,
+ "download_count": 606417,
+ "created_at": "2023-10-07T22:15:46Z",
+ "updated_at": "2023-10-07T22:15:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530271",
+ "id": 129530271,
+ "node_id": "RA_kwDOBPZW984HuHmf",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3369828,
+ "download_count": 21,
+ "created_at": "2023-10-07T22:15:51Z",
+ "updated_at": "2023-10-07T22:15:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530274",
+ "id": 129530274,
+ "node_id": "RA_kwDOBPZW984HuHmi",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3453454,
+ "download_count": 11,
+ "created_at": "2023-10-07T22:15:52Z",
+ "updated_at": "2023-10-07T22:15:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530265",
+ "id": 129530265,
+ "node_id": "RA_kwDOBPZW984HuHmZ",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3364542,
+ "download_count": 25,
+ "created_at": "2023-10-07T22:15:49Z",
+ "updated_at": "2023-10-07T22:15:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530270",
+ "id": 129530270,
+ "node_id": "RA_kwDOBPZW984HuHme",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3271180,
+ "download_count": 161,
+ "created_at": "2023-10-07T22:15:51Z",
+ "updated_at": "2023-10-07T22:15:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530275",
+ "id": 129530275,
+ "node_id": "RA_kwDOBPZW984HuHmj",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3353841,
+ "download_count": 408,
+ "created_at": "2023-10-07T22:15:52Z",
+ "updated_at": "2023-10-07T22:15:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530256",
+ "id": 129530256,
+ "node_id": "RA_kwDOBPZW984HuHmQ",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3262545,
+ "download_count": 12917,
+ "created_at": "2023-10-07T22:15:46Z",
+ "updated_at": "2023-10-07T22:15:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530261",
+ "id": 129530261,
+ "node_id": "RA_kwDOBPZW984HuHmV",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3561972,
+ "download_count": 934,
+ "created_at": "2023-10-07T22:15:48Z",
+ "updated_at": "2023-10-07T22:15:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530259",
+ "id": 129530259,
+ "node_id": "RA_kwDOBPZW984HuHmT",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3705630,
+ "download_count": 10499,
+ "created_at": "2023-10-07T22:15:47Z",
+ "updated_at": "2023-10-07T22:15:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530264",
+ "id": 129530264,
+ "node_id": "RA_kwDOBPZW984HuHmY",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3485517,
+ "download_count": 20,
+ "created_at": "2023-10-07T22:15:49Z",
+ "updated_at": "2023-10-07T22:15:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/129530262",
+ "id": 129530262,
+ "node_id": "RA_kwDOBPZW984HuHmW",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3351742,
+ "download_count": 819,
+ "created_at": "2023-10-07T22:15:48Z",
+ "updated_at": "2023-10-07T22:15:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.31.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.31.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.31.0",
+ "body": "- Enabled the `--yes` flag for the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) (#1344 by @pd93).\r\n- Add ability to set `watch: true` in a task to automatically run it in watch mode (#231, #1361 by @andreynering).\r\n- Fixed a bug on the watch mode where paths that contained `.git` (like `.github`), for example, were also being ignored (#1356 by @butuzov).\r\n- Fixed a nil pointer error when running a Taskfile with no contents (#1341, #1342 by @pd93).\r\n- Added a new [exit code](https://taskfile.dev/api/#exit-codes) (107) for when a Taskfile does not contain a schema version (#1342 by @pd93).\r\n- Increased limit of maximum task calls from 100 to 1000 for now, as some people have been reaching this limit organically now that we have loops. This check exists to detect recursive calls, but will be removed in favor of a better algorithm soon (#1321, #1332).\r\n- Fixed templating on descriptions on `task --list` (#1343 by @blackjid).\r\n- Fixed a bug where precondition errors were incorrectly being printed when task execution was aborted (#1337, #1338 by @sylv-io).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/124156421/reactions",
+ "total_count": 20,
+ "+1": 13,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 4,
+ "confused": 0,
+ "heart": 3,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 5
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/121230749",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/121230749/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/121230749/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.30.1",
+ "id": 121230749,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984HOdWd",
+ "tag_name": "v3.30.1",
+ "target_commitish": "main",
+ "name": "v3.30.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-09-15T00:31:26Z",
+ "published_at": "2023-09-15T00:38:24Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106759",
+ "id": 126106759,
+ "node_id": "RA_kwDOBPZW984HhDyH",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 61689,
+ "created_at": "2023-09-15T00:36:45Z",
+ "updated_at": "2023-09-15T00:36:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106748",
+ "id": 126106748,
+ "node_id": "RA_kwDOBPZW984HhDx8",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3698429,
+ "download_count": 4914,
+ "created_at": "2023-09-15T00:36:42Z",
+ "updated_at": "2023-09-15T00:36:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106746",
+ "id": 126106746,
+ "node_id": "RA_kwDOBPZW984HhDx6",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3525575,
+ "download_count": 2591,
+ "created_at": "2023-09-15T00:36:41Z",
+ "updated_at": "2023-09-15T00:36:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106747",
+ "id": 126106747,
+ "node_id": "RA_kwDOBPZW984HhDx7",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3377699,
+ "download_count": 97,
+ "created_at": "2023-09-15T00:36:42Z",
+ "updated_at": "2023-09-15T00:36:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106744",
+ "id": 126106744,
+ "node_id": "RA_kwDOBPZW984HhDx4",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3558694,
+ "download_count": 107,
+ "created_at": "2023-09-15T00:36:41Z",
+ "updated_at": "2023-09-15T00:36:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106734",
+ "id": 126106734,
+ "node_id": "RA_kwDOBPZW984HhDxu",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3359862,
+ "download_count": 12,
+ "created_at": "2023-09-15T00:36:39Z",
+ "updated_at": "2023-09-15T00:36:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106749",
+ "id": 126106749,
+ "node_id": "RA_kwDOBPZW984HhDx9",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3258351,
+ "download_count": 13,
+ "created_at": "2023-09-15T00:36:42Z",
+ "updated_at": "2023-09-15T00:36:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106750",
+ "id": 126106750,
+ "node_id": "RA_kwDOBPZW984HhDx-",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3391288,
+ "download_count": 135,
+ "created_at": "2023-09-15T00:36:42Z",
+ "updated_at": "2023-09-15T00:36:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106756",
+ "id": 126106756,
+ "node_id": "RA_kwDOBPZW984HhDyE",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3495116,
+ "download_count": 98,
+ "created_at": "2023-09-15T00:36:44Z",
+ "updated_at": "2023-09-15T00:36:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106737",
+ "id": 126106737,
+ "node_id": "RA_kwDOBPZW984HhDxx",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3383915,
+ "download_count": 229,
+ "created_at": "2023-09-15T00:36:40Z",
+ "updated_at": "2023-09-15T00:36:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106751",
+ "id": 126106751,
+ "node_id": "RA_kwDOBPZW984HhDx_",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3571196,
+ "download_count": 1513,
+ "created_at": "2023-09-15T00:36:43Z",
+ "updated_at": "2023-09-15T00:36:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106757",
+ "id": 126106757,
+ "node_id": "RA_kwDOBPZW984HhDyF",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3680750,
+ "download_count": 1182,
+ "created_at": "2023-09-15T00:36:44Z",
+ "updated_at": "2023-09-15T00:36:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106733",
+ "id": 126106733,
+ "node_id": "RA_kwDOBPZW984HhDxt",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3562239,
+ "download_count": 281733,
+ "created_at": "2023-09-15T00:36:39Z",
+ "updated_at": "2023-09-15T00:36:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106752",
+ "id": 126106752,
+ "node_id": "RA_kwDOBPZW984HhDyA",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3369004,
+ "download_count": 29,
+ "created_at": "2023-09-15T00:36:43Z",
+ "updated_at": "2023-09-15T00:36:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106758",
+ "id": 126106758,
+ "node_id": "RA_kwDOBPZW984HhDyG",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3460441,
+ "download_count": 11,
+ "created_at": "2023-09-15T00:36:45Z",
+ "updated_at": "2023-09-15T00:36:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106742",
+ "id": 126106742,
+ "node_id": "RA_kwDOBPZW984HhDx2",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3363644,
+ "download_count": 18,
+ "created_at": "2023-09-15T00:36:40Z",
+ "updated_at": "2023-09-15T00:36:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106754",
+ "id": 126106754,
+ "node_id": "RA_kwDOBPZW984HhDyC",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3271150,
+ "download_count": 514,
+ "created_at": "2023-09-15T00:36:43Z",
+ "updated_at": "2023-09-15T00:36:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106755",
+ "id": 126106755,
+ "node_id": "RA_kwDOBPZW984HhDyD",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3357531,
+ "download_count": 12,
+ "created_at": "2023-09-15T00:36:44Z",
+ "updated_at": "2023-09-15T00:36:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106745",
+ "id": 126106745,
+ "node_id": "RA_kwDOBPZW984HhDx5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3261933,
+ "download_count": 3771,
+ "created_at": "2023-09-15T00:36:41Z",
+ "updated_at": "2023-09-15T00:36:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106732",
+ "id": 126106732,
+ "node_id": "RA_kwDOBPZW984HhDxs",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3560714,
+ "download_count": 899,
+ "created_at": "2023-09-15T00:36:39Z",
+ "updated_at": "2023-09-15T00:36:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106735",
+ "id": 126106735,
+ "node_id": "RA_kwDOBPZW984HhDxv",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3703964,
+ "download_count": 4341,
+ "created_at": "2023-09-15T00:36:39Z",
+ "updated_at": "2023-09-15T00:36:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106743",
+ "id": 126106743,
+ "node_id": "RA_kwDOBPZW984HhDx3",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3483976,
+ "download_count": 14,
+ "created_at": "2023-09-15T00:36:40Z",
+ "updated_at": "2023-09-15T00:36:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/126106736",
+ "id": 126106736,
+ "node_id": "RA_kwDOBPZW984HhDxw",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3350022,
+ "download_count": 809,
+ "created_at": "2023-09-15T00:36:40Z",
+ "updated_at": "2023-09-15T00:36:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.30.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.30.1",
+ "body": "- Fixed a regression where some special variables weren't being set correctly (#1331, #1334 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/121230749/reactions",
+ "total_count": 4,
+ "+1": 4,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/121055920",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/121055920/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/121055920/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.30.0",
+ "id": 121055920,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984HNyqw",
+ "tag_name": "v3.30.0",
+ "target_commitish": "main",
+ "name": "v3.30.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-09-14T01:04:45Z",
+ "published_at": "2023-09-14T01:14:06Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940022",
+ "id": 125940022,
+ "node_id": "RA_kwDOBPZW984HgbE2",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 3435,
+ "created_at": "2023-09-14T01:09:51Z",
+ "updated_at": "2023-09-14T01:09:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939993",
+ "id": 125939993,
+ "node_id": "RA_kwDOBPZW984HgbEZ",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3698493,
+ "download_count": 502,
+ "created_at": "2023-09-14T01:09:46Z",
+ "updated_at": "2023-09-14T01:09:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940000",
+ "id": 125940000,
+ "node_id": "RA_kwDOBPZW984HgbEg",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3525180,
+ "download_count": 296,
+ "created_at": "2023-09-14T01:09:48Z",
+ "updated_at": "2023-09-14T01:09:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939992",
+ "id": 125939992,
+ "node_id": "RA_kwDOBPZW984HgbEY",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3377896,
+ "download_count": 93,
+ "created_at": "2023-09-14T01:09:46Z",
+ "updated_at": "2023-09-14T01:09:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939990",
+ "id": 125939990,
+ "node_id": "RA_kwDOBPZW984HgbEW",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3559536,
+ "download_count": 94,
+ "created_at": "2023-09-14T01:09:46Z",
+ "updated_at": "2023-09-14T01:09:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939989",
+ "id": 125939989,
+ "node_id": "RA_kwDOBPZW984HgbEV",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3360273,
+ "download_count": 10,
+ "created_at": "2023-09-14T01:09:45Z",
+ "updated_at": "2023-09-14T01:09:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939995",
+ "id": 125939995,
+ "node_id": "RA_kwDOBPZW984HgbEb",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3258731,
+ "download_count": 9,
+ "created_at": "2023-09-14T01:09:47Z",
+ "updated_at": "2023-09-14T01:09:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940006",
+ "id": 125940006,
+ "node_id": "RA_kwDOBPZW984HgbEm",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3391460,
+ "download_count": 97,
+ "created_at": "2023-09-14T01:09:49Z",
+ "updated_at": "2023-09-14T01:09:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940015",
+ "id": 125940015,
+ "node_id": "RA_kwDOBPZW984HgbEv",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3493154,
+ "download_count": 93,
+ "created_at": "2023-09-14T01:09:51Z",
+ "updated_at": "2023-09-14T01:09:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939981",
+ "id": 125939981,
+ "node_id": "RA_kwDOBPZW984HgbEN",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3384331,
+ "download_count": 96,
+ "created_at": "2023-09-14T01:09:44Z",
+ "updated_at": "2023-09-14T01:09:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940008",
+ "id": 125940008,
+ "node_id": "RA_kwDOBPZW984HgbEo",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3571160,
+ "download_count": 157,
+ "created_at": "2023-09-14T01:09:49Z",
+ "updated_at": "2023-09-14T01:09:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940020",
+ "id": 125940020,
+ "node_id": "RA_kwDOBPZW984HgbE0",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3680090,
+ "download_count": 167,
+ "created_at": "2023-09-14T01:09:51Z",
+ "updated_at": "2023-09-14T01:09:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939988",
+ "id": 125939988,
+ "node_id": "RA_kwDOBPZW984HgbEU",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3562205,
+ "download_count": 14216,
+ "created_at": "2023-09-14T01:09:45Z",
+ "updated_at": "2023-09-14T01:09:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940010",
+ "id": 125940010,
+ "node_id": "RA_kwDOBPZW984HgbEq",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3369100,
+ "download_count": 9,
+ "created_at": "2023-09-14T01:09:50Z",
+ "updated_at": "2023-09-14T01:09:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940014",
+ "id": 125940014,
+ "node_id": "RA_kwDOBPZW984HgbEu",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3462531,
+ "download_count": 9,
+ "created_at": "2023-09-14T01:09:51Z",
+ "updated_at": "2023-09-14T01:09:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939987",
+ "id": 125939987,
+ "node_id": "RA_kwDOBPZW984HgbET",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3363693,
+ "download_count": 10,
+ "created_at": "2023-09-14T01:09:45Z",
+ "updated_at": "2023-09-14T01:09:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940005",
+ "id": 125940005,
+ "node_id": "RA_kwDOBPZW984HgbEl",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 3271044,
+ "download_count": 30,
+ "created_at": "2023-09-14T01:09:49Z",
+ "updated_at": "2023-09-14T01:09:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940011",
+ "id": 125940011,
+ "node_id": "RA_kwDOBPZW984HgbEr",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 3356555,
+ "download_count": 9,
+ "created_at": "2023-09-14T01:09:50Z",
+ "updated_at": "2023-09-14T01:09:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940004",
+ "id": 125940004,
+ "node_id": "RA_kwDOBPZW984HgbEk",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 3261756,
+ "download_count": 187,
+ "created_at": "2023-09-14T01:09:49Z",
+ "updated_at": "2023-09-14T01:09:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125940002",
+ "id": 125940002,
+ "node_id": "RA_kwDOBPZW984HgbEi",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3559745,
+ "download_count": 892,
+ "created_at": "2023-09-14T01:09:48Z",
+ "updated_at": "2023-09-14T01:09:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939998",
+ "id": 125939998,
+ "node_id": "RA_kwDOBPZW984HgbEe",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3704015,
+ "download_count": 1178,
+ "created_at": "2023-09-14T01:09:47Z",
+ "updated_at": "2023-09-14T01:09:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939997",
+ "id": 125939997,
+ "node_id": "RA_kwDOBPZW984HgbEd",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3484347,
+ "download_count": 10,
+ "created_at": "2023-09-14T01:09:47Z",
+ "updated_at": "2023-09-14T01:09:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/125939982",
+ "id": 125939982,
+ "node_id": "RA_kwDOBPZW984HgbEO",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 3348708,
+ "download_count": 785,
+ "created_at": "2023-09-14T01:09:44Z",
+ "updated_at": "2023-09-14T01:09:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.30.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.30.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.30.0",
+ "body": "- Prep work for Remote Taskfiles (#1316 by @pd93).\r\n- Added the [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles) as a draft (#1152, #1317 by @pd93).\r\n- Improve performance of content checksuming on `sources:` by replacing md5 with [XXH3](https://xxhash.com/) which is much faster. This is a soft breaking change because checksums will be invalidated when upgrading to this release (#1325 by @ReillyBrogan).\r\n\r\nWe're looking for feedback on Remote Taskfile on #1317. Don't hesitate to add your opinion.\r\n\r\nIf you want to say \"thank you\" for the work done on this tool, consider sponsoring [@andreynering](https://github.com/sponsors/andreynering/) and [@pd93](https://github.com/sponsors/pd93/) via GitHub Sponsors.",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/121055920/reactions",
+ "total_count": 16,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 2,
+ "confused": 0,
+ "heart": 6,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 2
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/118820066",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/118820066/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/118820066/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.29.1",
+ "id": 118820066,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984HFQzi",
+ "tag_name": "v3.29.1",
+ "target_commitish": "main",
+ "name": "v3.29.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-08-26T21:45:48Z",
+ "published_at": "2023-08-26T22:08:07Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259965",
+ "id": 123259965,
+ "node_id": "RA_kwDOBPZW984HWMw9",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 53388,
+ "created_at": "2023-08-26T21:49:51Z",
+ "updated_at": "2023-08-26T21:49:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259954",
+ "id": 123259954,
+ "node_id": "RA_kwDOBPZW984HWMwy",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2420241,
+ "download_count": 5243,
+ "created_at": "2023-08-26T21:49:48Z",
+ "updated_at": "2023-08-26T21:49:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259938",
+ "id": 123259938,
+ "node_id": "RA_kwDOBPZW984HWMwi",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2325420,
+ "download_count": 2234,
+ "created_at": "2023-08-26T21:49:46Z",
+ "updated_at": "2023-08-26T21:49:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259934",
+ "id": 123259934,
+ "node_id": "RA_kwDOBPZW984HWMwe",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2247855,
+ "download_count": 97,
+ "created_at": "2023-08-26T21:49:45Z",
+ "updated_at": "2023-08-26T21:49:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259946",
+ "id": 123259946,
+ "node_id": "RA_kwDOBPZW984HWMwq",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2324427,
+ "download_count": 99,
+ "created_at": "2023-08-26T21:49:47Z",
+ "updated_at": "2023-08-26T21:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259943",
+ "id": 123259943,
+ "node_id": "RA_kwDOBPZW984HWMwn",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2228586,
+ "download_count": 10,
+ "created_at": "2023-08-26T21:49:47Z",
+ "updated_at": "2023-08-26T21:49:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259948",
+ "id": 123259948,
+ "node_id": "RA_kwDOBPZW984HWMws",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2123947,
+ "download_count": 11,
+ "created_at": "2023-08-26T21:49:48Z",
+ "updated_at": "2023-08-26T21:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259955",
+ "id": 123259955,
+ "node_id": "RA_kwDOBPZW984HWMwz",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2256690,
+ "download_count": 129,
+ "created_at": "2023-08-26T21:49:49Z",
+ "updated_at": "2023-08-26T21:49:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259960",
+ "id": 123259960,
+ "node_id": "RA_kwDOBPZW984HWMw4",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2314559,
+ "download_count": 103,
+ "created_at": "2023-08-26T21:49:50Z",
+ "updated_at": "2023-08-26T21:49:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259942",
+ "id": 123259942,
+ "node_id": "RA_kwDOBPZW984HWMwm",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2253401,
+ "download_count": 20457,
+ "created_at": "2023-08-26T21:49:46Z",
+ "updated_at": "2023-08-26T21:49:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259957",
+ "id": 123259957,
+ "node_id": "RA_kwDOBPZW984HWMw1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2331792,
+ "download_count": 12560,
+ "created_at": "2023-08-26T21:49:49Z",
+ "updated_at": "2023-08-26T21:49:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259961",
+ "id": 123259961,
+ "node_id": "RA_kwDOBPZW984HWMw5",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2396500,
+ "download_count": 925,
+ "created_at": "2023-08-26T21:49:50Z",
+ "updated_at": "2023-08-26T21:49:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259945",
+ "id": 123259945,
+ "node_id": "RA_kwDOBPZW984HWMwp",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2325733,
+ "download_count": 232394,
+ "created_at": "2023-08-26T21:49:47Z",
+ "updated_at": "2023-08-26T21:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259958",
+ "id": 123259958,
+ "node_id": "RA_kwDOBPZW984HWMw2",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2233722,
+ "download_count": 13,
+ "created_at": "2023-08-26T21:49:50Z",
+ "updated_at": "2023-08-26T21:49:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259962",
+ "id": 123259962,
+ "node_id": "RA_kwDOBPZW984HWMw6",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2282666,
+ "download_count": 13,
+ "created_at": "2023-08-26T21:49:51Z",
+ "updated_at": "2023-08-26T21:49:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259935",
+ "id": 123259935,
+ "node_id": "RA_kwDOBPZW984HWMwf",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2230514,
+ "download_count": 13,
+ "created_at": "2023-08-26T21:49:45Z",
+ "updated_at": "2023-08-26T21:49:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259959",
+ "id": 123259959,
+ "node_id": "RA_kwDOBPZW984HWMw3",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2133132,
+ "download_count": 231,
+ "created_at": "2023-08-26T21:49:50Z",
+ "updated_at": "2023-08-26T21:49:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259963",
+ "id": 123259963,
+ "node_id": "RA_kwDOBPZW984HWMw7",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2181233,
+ "download_count": 23,
+ "created_at": "2023-08-26T21:49:51Z",
+ "updated_at": "2023-08-26T21:49:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259944",
+ "id": 123259944,
+ "node_id": "RA_kwDOBPZW984HWMwo",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2127957,
+ "download_count": 3722,
+ "created_at": "2023-08-26T21:49:47Z",
+ "updated_at": "2023-08-26T21:49:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259950",
+ "id": 123259950,
+ "node_id": "RA_kwDOBPZW984HWMwu",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2410866,
+ "download_count": 899,
+ "created_at": "2023-08-26T21:49:48Z",
+ "updated_at": "2023-08-26T21:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259939",
+ "id": 123259939,
+ "node_id": "RA_kwDOBPZW984HWMwj",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2439590,
+ "download_count": 5469,
+ "created_at": "2023-08-26T21:49:46Z",
+ "updated_at": "2023-08-26T21:49:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259941",
+ "id": 123259941,
+ "node_id": "RA_kwDOBPZW984HWMwl",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2357035,
+ "download_count": 10,
+ "created_at": "2023-08-26T21:49:46Z",
+ "updated_at": "2023-08-26T21:49:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/123259953",
+ "id": 123259953,
+ "node_id": "RA_kwDOBPZW984HWMwx",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2229721,
+ "download_count": 805,
+ "created_at": "2023-08-26T21:49:48Z",
+ "updated_at": "2023-08-26T21:49:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.29.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.29.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.29.1",
+ "body": "- Update to Go 1.21 (bump minimum version to 1.20) (#1302 by @pd93)\r\n- Fix a missing a line break on log when using `--watch` mode (#1285, #1297 by @FilipSolich).\r\n- Fix `defer` on JSON Schema (#1288 by @calvinmclean and @andreynering).\r\n- Fix bug in usage of special variables like `{{.USER_WORKING_DIR}}` in combination with `includes` (#1046, #1205, #1250, #1293, #1312, #1274 by @andarto, #1309 by @andreynering).\r\n- Fix bug on `--status` flag. Running this flag should not have side-effects: it should not update the checksum on `.task`, only report its status (#1305, #1307 by @visciang, #1313 by @andreynering).\r\n\r\nNOTE: v3.29.0 was skipped because of an issue on the release process.",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/118820066/reactions",
+ "total_count": 17,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 2,
+ "confused": 0,
+ "heart": 1,
+ "rocket": 6,
+ "eyes": 0
+ },
+ "mentions_count": 6
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/113405837",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/113405837/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/113405837/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.28.0",
+ "id": 113405837,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Gwm-N",
+ "tag_name": "v3.28.0",
+ "target_commitish": "main",
+ "name": "v3.28.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-07-25T01:12:23Z",
+ "published_at": "2023-07-25T01:19:13Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452473",
+ "id": 118452473,
+ "node_id": "RA_kwDOBPZW984HD3D5",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 397750,
+ "created_at": "2023-07-25T01:17:03Z",
+ "updated_at": "2023-07-25T01:17:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452444",
+ "id": 118452444,
+ "node_id": "RA_kwDOBPZW984HD3Dc",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2419791,
+ "download_count": 5575,
+ "created_at": "2023-07-25T01:16:55Z",
+ "updated_at": "2023-07-25T01:16:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452445",
+ "id": 118452445,
+ "node_id": "RA_kwDOBPZW984HD3Dd",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2325378,
+ "download_count": 3296,
+ "created_at": "2023-07-25T01:16:55Z",
+ "updated_at": "2023-07-25T01:16:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452437",
+ "id": 118452437,
+ "node_id": "RA_kwDOBPZW984HD3DV",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2247540,
+ "download_count": 107,
+ "created_at": "2023-07-25T01:16:53Z",
+ "updated_at": "2023-07-25T01:16:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452447",
+ "id": 118452447,
+ "node_id": "RA_kwDOBPZW984HD3Df",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2324124,
+ "download_count": 118,
+ "created_at": "2023-07-25T01:16:56Z",
+ "updated_at": "2023-07-25T01:16:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452442",
+ "id": 118452442,
+ "node_id": "RA_kwDOBPZW984HD3Da",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2228286,
+ "download_count": 22,
+ "created_at": "2023-07-25T01:16:54Z",
+ "updated_at": "2023-07-25T01:16:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452452",
+ "id": 118452452,
+ "node_id": "RA_kwDOBPZW984HD3Dk",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2123897,
+ "download_count": 17,
+ "created_at": "2023-07-25T01:16:57Z",
+ "updated_at": "2023-07-25T01:16:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452453",
+ "id": 118452453,
+ "node_id": "RA_kwDOBPZW984HD3Dl",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2256180,
+ "download_count": 169,
+ "created_at": "2023-07-25T01:16:57Z",
+ "updated_at": "2023-07-25T01:17:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452463",
+ "id": 118452463,
+ "node_id": "RA_kwDOBPZW984HD3Dv",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2311817,
+ "download_count": 120,
+ "created_at": "2023-07-25T01:17:00Z",
+ "updated_at": "2023-07-25T01:17:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452446",
+ "id": 118452446,
+ "node_id": "RA_kwDOBPZW984HD3De",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2252904,
+ "download_count": 147,
+ "created_at": "2023-07-25T01:16:55Z",
+ "updated_at": "2023-07-25T01:16:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452455",
+ "id": 118452455,
+ "node_id": "RA_kwDOBPZW984HD3Dn",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2331436,
+ "download_count": 2847,
+ "created_at": "2023-07-25T01:16:58Z",
+ "updated_at": "2023-07-25T01:16:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452461",
+ "id": 118452461,
+ "node_id": "RA_kwDOBPZW984HD3Dt",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2395203,
+ "download_count": 404,
+ "created_at": "2023-07-25T01:17:00Z",
+ "updated_at": "2023-07-25T01:17:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452448",
+ "id": 118452448,
+ "node_id": "RA_kwDOBPZW984HD3Dg",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2325421,
+ "download_count": 749628,
+ "created_at": "2023-07-25T01:16:56Z",
+ "updated_at": "2023-07-25T01:16:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452457",
+ "id": 118452457,
+ "node_id": "RA_kwDOBPZW984HD3Dp",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2233354,
+ "download_count": 15,
+ "created_at": "2023-07-25T01:16:59Z",
+ "updated_at": "2023-07-25T01:16:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452467",
+ "id": 118452467,
+ "node_id": "RA_kwDOBPZW984HD3Dz",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2282126,
+ "download_count": 12,
+ "created_at": "2023-07-25T01:17:01Z",
+ "updated_at": "2023-07-25T01:17:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452449",
+ "id": 118452449,
+ "node_id": "RA_kwDOBPZW984HD3Dh",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2230109,
+ "download_count": 19,
+ "created_at": "2023-07-25T01:16:56Z",
+ "updated_at": "2023-07-25T01:16:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452460",
+ "id": 118452460,
+ "node_id": "RA_kwDOBPZW984HD3Ds",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2132530,
+ "download_count": 431,
+ "created_at": "2023-07-25T01:16:59Z",
+ "updated_at": "2023-07-25T01:16:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452471",
+ "id": 118452471,
+ "node_id": "RA_kwDOBPZW984HD3D3",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2181247,
+ "download_count": 18,
+ "created_at": "2023-07-25T01:17:02Z",
+ "updated_at": "2023-07-25T01:17:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452450",
+ "id": 118452450,
+ "node_id": "RA_kwDOBPZW984HD3Di",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2127486,
+ "download_count": 7861,
+ "created_at": "2023-07-25T01:16:57Z",
+ "updated_at": "2023-07-25T01:16:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452438",
+ "id": 118452438,
+ "node_id": "RA_kwDOBPZW984HD3DW",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2410483,
+ "download_count": 1519,
+ "created_at": "2023-07-25T01:16:53Z",
+ "updated_at": "2023-07-25T01:16:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452440",
+ "id": 118452440,
+ "node_id": "RA_kwDOBPZW984HD3DY",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2439422,
+ "download_count": 4403,
+ "created_at": "2023-07-25T01:16:54Z",
+ "updated_at": "2023-07-25T01:16:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452439",
+ "id": 118452439,
+ "node_id": "RA_kwDOBPZW984HD3DX",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2356727,
+ "download_count": 788,
+ "created_at": "2023-07-25T01:16:54Z",
+ "updated_at": "2023-07-25T01:16:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/118452443",
+ "id": 118452443,
+ "node_id": "RA_kwDOBPZW984HD3Db",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2229486,
+ "download_count": 800,
+ "created_at": "2023-07-25T01:16:54Z",
+ "updated_at": "2023-07-25T01:16:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.28.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.28.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.28.0",
+ "body": "- Added the ability to [loop over commands and tasks](https://taskfile.dev/usage/#looping-over-values) using `for` (#82, #1220 by @pd93).\r\n- Fixed variable propagation in multi-level includes (#778, #996, #1256 by @hudclark).\r\n- Fixed a bug where the `--exit-code` code flag was not returning the correct exit code when calling commands indirectly (#1266, #1270 by @pd93).\r\n- Fixed a `nil` panic when a dependency was commented out or left empty (#1263 by @neomantra).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/113405837/reactions",
+ "total_count": 28,
+ "+1": 10,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 13,
+ "confused": 0,
+ "heart": 5,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/110495018",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/110495018/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/110495018/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.27.1",
+ "id": 110495018,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984GlgUq",
+ "tag_name": "v3.27.1",
+ "target_commitish": "main",
+ "name": "v3.27.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-06-30T12:36:44Z",
+ "published_at": "2023-06-30T12:40:53Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012572",
+ "id": 115012572,
+ "node_id": "RA_kwDOBPZW984G2vPc",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 63355,
+ "created_at": "2023-06-30T12:40:20Z",
+ "updated_at": "2023-06-30T12:40:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012544",
+ "id": 115012544,
+ "node_id": "RA_kwDOBPZW984G2vPA",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2413860,
+ "download_count": 3248,
+ "created_at": "2023-06-30T12:40:15Z",
+ "updated_at": "2023-06-30T12:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012550",
+ "id": 115012550,
+ "node_id": "RA_kwDOBPZW984G2vPG",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2321956,
+ "download_count": 2189,
+ "created_at": "2023-06-30T12:40:16Z",
+ "updated_at": "2023-06-30T12:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012553",
+ "id": 115012553,
+ "node_id": "RA_kwDOBPZW984G2vPJ",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2241781,
+ "download_count": 111,
+ "created_at": "2023-06-30T12:40:17Z",
+ "updated_at": "2023-06-30T12:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012555",
+ "id": 115012555,
+ "node_id": "RA_kwDOBPZW984G2vPL",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2320290,
+ "download_count": 113,
+ "created_at": "2023-06-30T12:40:17Z",
+ "updated_at": "2023-06-30T12:40:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012546",
+ "id": 115012546,
+ "node_id": "RA_kwDOBPZW984G2vPC",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2223952,
+ "download_count": 16,
+ "created_at": "2023-06-30T12:40:15Z",
+ "updated_at": "2023-06-30T12:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012542",
+ "id": 115012542,
+ "node_id": "RA_kwDOBPZW984G2vO-",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2119630,
+ "download_count": 15,
+ "created_at": "2023-06-30T12:40:14Z",
+ "updated_at": "2023-06-30T12:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012557",
+ "id": 115012557,
+ "node_id": "RA_kwDOBPZW984G2vPN",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2252624,
+ "download_count": 150,
+ "created_at": "2023-06-30T12:40:18Z",
+ "updated_at": "2023-06-30T12:40:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012566",
+ "id": 115012566,
+ "node_id": "RA_kwDOBPZW984G2vPW",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2312576,
+ "download_count": 119,
+ "created_at": "2023-06-30T12:40:19Z",
+ "updated_at": "2023-06-30T12:40:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012541",
+ "id": 115012541,
+ "node_id": "RA_kwDOBPZW984G2vO9",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2248816,
+ "download_count": 367,
+ "created_at": "2023-06-30T12:40:14Z",
+ "updated_at": "2023-06-30T12:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012559",
+ "id": 115012559,
+ "node_id": "RA_kwDOBPZW984G2vPP",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2326684,
+ "download_count": 442,
+ "created_at": "2023-06-30T12:40:18Z",
+ "updated_at": "2023-06-30T12:40:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012567",
+ "id": 115012567,
+ "node_id": "RA_kwDOBPZW984G2vPX",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2392866,
+ "download_count": 24748,
+ "created_at": "2023-06-30T12:40:19Z",
+ "updated_at": "2023-06-30T12:40:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012552",
+ "id": 115012552,
+ "node_id": "RA_kwDOBPZW984G2vPI",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2321615,
+ "download_count": 153448,
+ "created_at": "2023-06-30T12:40:17Z",
+ "updated_at": "2023-06-30T12:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012562",
+ "id": 115012562,
+ "node_id": "RA_kwDOBPZW984G2vPS",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2229174,
+ "download_count": 16,
+ "created_at": "2023-06-30T12:40:18Z",
+ "updated_at": "2023-06-30T12:40:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012569",
+ "id": 115012569,
+ "node_id": "RA_kwDOBPZW984G2vPZ",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2286961,
+ "download_count": 14,
+ "created_at": "2023-06-30T12:40:20Z",
+ "updated_at": "2023-06-30T12:40:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012554",
+ "id": 115012554,
+ "node_id": "RA_kwDOBPZW984G2vPK",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2226274,
+ "download_count": 104,
+ "created_at": "2023-06-30T12:40:17Z",
+ "updated_at": "2023-06-30T12:40:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012564",
+ "id": 115012564,
+ "node_id": "RA_kwDOBPZW984G2vPU",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2127784,
+ "download_count": 49,
+ "created_at": "2023-06-30T12:40:19Z",
+ "updated_at": "2023-06-30T12:40:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012571",
+ "id": 115012571,
+ "node_id": "RA_kwDOBPZW984G2vPb",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2176757,
+ "download_count": 264,
+ "created_at": "2023-06-30T12:40:20Z",
+ "updated_at": "2023-06-30T12:40:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012545",
+ "id": 115012545,
+ "node_id": "RA_kwDOBPZW984G2vPB",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2122868,
+ "download_count": 5644,
+ "created_at": "2023-06-30T12:40:15Z",
+ "updated_at": "2023-06-30T12:40:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012547",
+ "id": 115012547,
+ "node_id": "RA_kwDOBPZW984G2vPD",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2406135,
+ "download_count": 135,
+ "created_at": "2023-06-30T12:40:15Z",
+ "updated_at": "2023-06-30T12:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012539",
+ "id": 115012539,
+ "node_id": "RA_kwDOBPZW984G2vO7",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2434057,
+ "download_count": 2542,
+ "created_at": "2023-06-30T12:40:13Z",
+ "updated_at": "2023-06-30T12:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012549",
+ "id": 115012549,
+ "node_id": "RA_kwDOBPZW984G2vPF",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2352864,
+ "download_count": 18,
+ "created_at": "2023-06-30T12:40:16Z",
+ "updated_at": "2023-06-30T12:40:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/115012538",
+ "id": 115012538,
+ "node_id": "RA_kwDOBPZW984G2vO6",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2225508,
+ "download_count": 26,
+ "created_at": "2023-06-30T12:40:13Z",
+ "updated_at": "2023-06-30T12:40:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.27.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.27.1",
+ "body": "- Fix panic when a `.env` directory (not file) is present on current directory (#1244, #1245 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/110495018/reactions",
+ "total_count": 8,
+ "+1": 5,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 2,
+ "confused": 0,
+ "heart": 1,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 1
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/110437184",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/110437184/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/110437184/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.27.0",
+ "id": 110437184,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984GlSNA",
+ "tag_name": "v3.27.0",
+ "target_commitish": "main",
+ "name": "v3.27.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-06-30T01:44:13Z",
+ "published_at": "2023-06-30T01:49:09Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942199",
+ "id": 114942199,
+ "node_id": "RA_kwDOBPZW984G2eD3",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 1599,
+ "created_at": "2023-06-30T01:47:57Z",
+ "updated_at": "2023-06-30T01:47:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942166",
+ "id": 114942166,
+ "node_id": "RA_kwDOBPZW984G2eDW",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2414029,
+ "download_count": 224,
+ "created_at": "2023-06-30T01:47:52Z",
+ "updated_at": "2023-06-30T01:47:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942159",
+ "id": 114942159,
+ "node_id": "RA_kwDOBPZW984G2eDP",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2322044,
+ "download_count": 171,
+ "created_at": "2023-06-30T01:47:50Z",
+ "updated_at": "2023-06-30T01:47:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942177",
+ "id": 114942177,
+ "node_id": "RA_kwDOBPZW984G2eDh",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2241996,
+ "download_count": 111,
+ "created_at": "2023-06-30T01:47:54Z",
+ "updated_at": "2023-06-30T01:47:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942162",
+ "id": 114942162,
+ "node_id": "RA_kwDOBPZW984G2eDS",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2320342,
+ "download_count": 128,
+ "created_at": "2023-06-30T01:47:51Z",
+ "updated_at": "2023-06-30T01:47:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942169",
+ "id": 114942169,
+ "node_id": "RA_kwDOBPZW984G2eDZ",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2224098,
+ "download_count": 15,
+ "created_at": "2023-06-30T01:47:52Z",
+ "updated_at": "2023-06-30T01:47:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942172",
+ "id": 114942172,
+ "node_id": "RA_kwDOBPZW984G2eDc",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2119729,
+ "download_count": 17,
+ "created_at": "2023-06-30T01:47:53Z",
+ "updated_at": "2023-06-30T01:47:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942185",
+ "id": 114942185,
+ "node_id": "RA_kwDOBPZW984G2eDp",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2252728,
+ "download_count": 110,
+ "created_at": "2023-06-30T01:47:55Z",
+ "updated_at": "2023-06-30T01:47:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942190",
+ "id": 114942190,
+ "node_id": "RA_kwDOBPZW984G2eDu",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2311128,
+ "download_count": 110,
+ "created_at": "2023-06-30T01:47:56Z",
+ "updated_at": "2023-06-30T01:47:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942165",
+ "id": 114942165,
+ "node_id": "RA_kwDOBPZW984G2eDV",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2248959,
+ "download_count": 111,
+ "created_at": "2023-06-30T01:47:52Z",
+ "updated_at": "2023-06-30T01:47:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942186",
+ "id": 114942186,
+ "node_id": "RA_kwDOBPZW984G2eDq",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2326716,
+ "download_count": 123,
+ "created_at": "2023-06-30T01:47:55Z",
+ "updated_at": "2023-06-30T01:47:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942192",
+ "id": 114942192,
+ "node_id": "RA_kwDOBPZW984G2eDw",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2392895,
+ "download_count": 115,
+ "created_at": "2023-06-30T01:47:56Z",
+ "updated_at": "2023-06-30T01:47:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942184",
+ "id": 114942184,
+ "node_id": "RA_kwDOBPZW984G2eDo",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2321606,
+ "download_count": 4364,
+ "created_at": "2023-06-30T01:47:55Z",
+ "updated_at": "2023-06-30T01:47:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942188",
+ "id": 114942188,
+ "node_id": "RA_kwDOBPZW984G2eDs",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2229130,
+ "download_count": 14,
+ "created_at": "2023-06-30T01:47:55Z",
+ "updated_at": "2023-06-30T01:47:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942193",
+ "id": 114942193,
+ "node_id": "RA_kwDOBPZW984G2eDx",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2287465,
+ "download_count": 14,
+ "created_at": "2023-06-30T01:47:57Z",
+ "updated_at": "2023-06-30T01:47:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942170",
+ "id": 114942170,
+ "node_id": "RA_kwDOBPZW984G2eDa",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2226205,
+ "download_count": 16,
+ "created_at": "2023-06-30T01:47:52Z",
+ "updated_at": "2023-06-30T01:47:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942189",
+ "id": 114942189,
+ "node_id": "RA_kwDOBPZW984G2eDt",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2127842,
+ "download_count": 16,
+ "created_at": "2023-06-30T01:47:56Z",
+ "updated_at": "2023-06-30T01:47:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942195",
+ "id": 114942195,
+ "node_id": "RA_kwDOBPZW984G2eDz",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2176831,
+ "download_count": 14,
+ "created_at": "2023-06-30T01:47:57Z",
+ "updated_at": "2023-06-30T01:47:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942158",
+ "id": 114942158,
+ "node_id": "RA_kwDOBPZW984G2eDO",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2122964,
+ "download_count": 83,
+ "created_at": "2023-06-30T01:47:50Z",
+ "updated_at": "2023-06-30T01:47:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942180",
+ "id": 114942180,
+ "node_id": "RA_kwDOBPZW984G2eDk",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2406186,
+ "download_count": 115,
+ "created_at": "2023-06-30T01:47:54Z",
+ "updated_at": "2023-06-30T01:47:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942174",
+ "id": 114942174,
+ "node_id": "RA_kwDOBPZW984G2eDe",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2434319,
+ "download_count": 220,
+ "created_at": "2023-06-30T01:47:53Z",
+ "updated_at": "2023-06-30T01:47:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942175",
+ "id": 114942175,
+ "node_id": "RA_kwDOBPZW984G2eDf",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2352889,
+ "download_count": 15,
+ "created_at": "2023-06-30T01:47:54Z",
+ "updated_at": "2023-06-30T01:47:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/114942161",
+ "id": 114942161,
+ "node_id": "RA_kwDOBPZW984G2eDR",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2225580,
+ "download_count": 17,
+ "created_at": "2023-06-30T01:47:51Z",
+ "updated_at": "2023-06-30T01:47:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.27.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.27.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.27.0",
+ "body": "- Allow Taskfiles starting with lowercase characters (#947, #1221 by @pd93).\r\n - e.g. `taskfile.yml`, `taskfile.yaml`, `taskfile.dist.yml` & `taskfile.dist.yaml`\r\n- Bug fixes were made to the [npm installation method](https://taskfile.dev/installation/#npm). (#1190, by @sounisi5011).\r\n- Added the [gentle force experiment](https://taskfile.dev/experiments) as a draft (#1200, #1216 by @pd93).\r\n- Added an `--experiments` flag to allow you to see which experiments are enabled (#1242 by @pd93).\r\n- Added ability to specify which variables are required in a task (#1203, #1204 by @benc-uk).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/110437184/reactions",
+ "total_count": 5,
+ "+1": 1,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 4,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/108123746",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/108123746/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/108123746/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.26.0",
+ "id": 108123746,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984GcdZi",
+ "tag_name": "v3.26.0",
+ "target_commitish": "main",
+ "name": "v3.26.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-06-11T01:27:06Z",
+ "published_at": "2023-06-11T01:32:24Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207915",
+ "id": 112207915,
+ "node_id": "RA_kwDOBPZW984GsCgr",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 82523,
+ "created_at": "2023-06-11T01:31:08Z",
+ "updated_at": "2023-06-11T01:31:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207897",
+ "id": 112207897,
+ "node_id": "RA_kwDOBPZW984GsCgZ",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2407499,
+ "download_count": 3509,
+ "created_at": "2023-06-11T01:31:04Z",
+ "updated_at": "2023-06-11T01:31:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207889",
+ "id": 112207889,
+ "node_id": "RA_kwDOBPZW984GsCgR",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2315203,
+ "download_count": 1820,
+ "created_at": "2023-06-11T01:31:01Z",
+ "updated_at": "2023-06-11T01:31:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207894",
+ "id": 112207894,
+ "node_id": "RA_kwDOBPZW984GsCgW",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2236242,
+ "download_count": 116,
+ "created_at": "2023-06-11T01:31:03Z",
+ "updated_at": "2023-06-11T01:31:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207902",
+ "id": 112207902,
+ "node_id": "RA_kwDOBPZW984GsCge",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2314966,
+ "download_count": 125,
+ "created_at": "2023-06-11T01:31:05Z",
+ "updated_at": "2023-06-11T01:31:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207890",
+ "id": 112207890,
+ "node_id": "RA_kwDOBPZW984GsCgS",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2216268,
+ "download_count": 17,
+ "created_at": "2023-06-11T01:31:02Z",
+ "updated_at": "2023-06-11T01:31:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207892",
+ "id": 112207892,
+ "node_id": "RA_kwDOBPZW984GsCgU",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2112761,
+ "download_count": 17,
+ "created_at": "2023-06-11T01:31:02Z",
+ "updated_at": "2023-06-11T01:31:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207904",
+ "id": 112207904,
+ "node_id": "RA_kwDOBPZW984GsCgg",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2323214,
+ "download_count": 165,
+ "created_at": "2023-06-11T01:31:05Z",
+ "updated_at": "2023-06-11T01:31:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207910",
+ "id": 112207910,
+ "node_id": "RA_kwDOBPZW984GsCgm",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2324685,
+ "download_count": 338,
+ "created_at": "2023-06-11T01:31:07Z",
+ "updated_at": "2023-06-11T01:31:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207900",
+ "id": 112207900,
+ "node_id": "RA_kwDOBPZW984GsCgc",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2240866,
+ "download_count": 140,
+ "created_at": "2023-06-11T01:31:04Z",
+ "updated_at": "2023-06-11T01:31:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207905",
+ "id": 112207905,
+ "node_id": "RA_kwDOBPZW984GsCgh",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2383838,
+ "download_count": 484,
+ "created_at": "2023-06-11T01:31:06Z",
+ "updated_at": "2023-06-11T01:31:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207912",
+ "id": 112207912,
+ "node_id": "RA_kwDOBPZW984GsCgo",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2385026,
+ "download_count": 151,
+ "created_at": "2023-06-11T01:31:07Z",
+ "updated_at": "2023-06-11T01:31:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207895",
+ "id": 112207895,
+ "node_id": "RA_kwDOBPZW984GsCgX",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2316190,
+ "download_count": 170455,
+ "created_at": "2023-06-11T01:31:03Z",
+ "updated_at": "2023-06-11T01:31:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207906",
+ "id": 112207906,
+ "node_id": "RA_kwDOBPZW984GsCgi",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2275580,
+ "download_count": 14,
+ "created_at": "2023-06-11T01:31:06Z",
+ "updated_at": "2023-06-11T01:31:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207914",
+ "id": 112207914,
+ "node_id": "RA_kwDOBPZW984GsCgq",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2276642,
+ "download_count": 15,
+ "created_at": "2023-06-11T01:31:08Z",
+ "updated_at": "2023-06-11T01:31:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207901",
+ "id": 112207901,
+ "node_id": "RA_kwDOBPZW984GsCgd",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2218258,
+ "download_count": 37,
+ "created_at": "2023-06-11T01:31:05Z",
+ "updated_at": "2023-06-11T01:31:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207911",
+ "id": 112207911,
+ "node_id": "RA_kwDOBPZW984GsCgn",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2170276,
+ "download_count": 84,
+ "created_at": "2023-06-11T01:31:07Z",
+ "updated_at": "2023-06-11T01:31:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207909",
+ "id": 112207909,
+ "node_id": "RA_kwDOBPZW984GsCgl",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2170667,
+ "download_count": 16,
+ "created_at": "2023-06-11T01:31:06Z",
+ "updated_at": "2023-06-11T01:31:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207887",
+ "id": 112207887,
+ "node_id": "RA_kwDOBPZW984GsCgP",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2116620,
+ "download_count": 3711,
+ "created_at": "2023-06-11T01:31:01Z",
+ "updated_at": "2023-06-11T01:31:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207896",
+ "id": 112207896,
+ "node_id": "RA_kwDOBPZW984GsCgY",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2400596,
+ "download_count": 138,
+ "created_at": "2023-06-11T01:31:03Z",
+ "updated_at": "2023-06-11T01:31:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207876",
+ "id": 112207876,
+ "node_id": "RA_kwDOBPZW984GsCgE",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2429345,
+ "download_count": 2702,
+ "created_at": "2023-06-11T01:31:00Z",
+ "updated_at": "2023-06-11T01:31:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207899",
+ "id": 112207899,
+ "node_id": "RA_kwDOBPZW984GsCgb",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2348063,
+ "download_count": 16,
+ "created_at": "2023-06-11T01:31:04Z",
+ "updated_at": "2023-06-11T01:31:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/112207875",
+ "id": 112207875,
+ "node_id": "RA_kwDOBPZW984GsCgD",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2219622,
+ "download_count": 31,
+ "created_at": "2023-06-11T01:31:00Z",
+ "updated_at": "2023-06-11T01:31:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.26.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.26.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.26.0",
+ "body": "- Only rewrite checksum files in `.task` if the checksum has changed (#1185, #1194 by @deviantintegral).\r\n- Added [experiments documentation](https://taskfile.dev/experiments) to the website (#1198 by @pd93).\r\n- Deprecated `version: 2` schema. This will be removed in the next major release (#1197, #1198, #1199 by @pd93).\r\n- Added a new `prompt:` prop to set a warning prompt to be shown before running a potential dangurous task (#100, #1163 by @MaxCheetham, [Documentation](https://taskfile.dev/usage/#warning-prompts)).\r\n- Added support for single command task syntax. With this change, it's now possible to declare just `cmd:` in a task, avoiding the more complex `cmds: []` when you have only a single command for that task (#1130, #1131 by @timdp).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/108123746/reactions",
+ "total_count": 9,
+ "+1": 1,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 8,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 4
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/103886463",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/103886463/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/103886463/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.25.0",
+ "id": 103886463,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984GMS5_",
+ "tag_name": "v3.25.0",
+ "target_commitish": "main",
+ "name": "v3.25.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-05-23T01:45:06Z",
+ "published_at": "2023-05-23T01:52:18Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351316",
+ "id": 109351316,
+ "node_id": "RA_kwDOBPZW984GhJGU",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1942,
+ "download_count": 49042,
+ "created_at": "2023-05-23T01:48:40Z",
+ "updated_at": "2023-05-23T01:48:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351286",
+ "id": 109351286,
+ "node_id": "RA_kwDOBPZW984GhJF2",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2402592,
+ "download_count": 3651,
+ "created_at": "2023-05-23T01:48:35Z",
+ "updated_at": "2023-05-23T01:48:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351285",
+ "id": 109351285,
+ "node_id": "RA_kwDOBPZW984GhJF1",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2307047,
+ "download_count": 1639,
+ "created_at": "2023-05-23T01:48:35Z",
+ "updated_at": "2023-05-23T01:48:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351298",
+ "id": 109351298,
+ "node_id": "RA_kwDOBPZW984GhJGC",
+ "name": "task_freebsd_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2233791,
+ "download_count": 108,
+ "created_at": "2023-05-23T01:48:37Z",
+ "updated_at": "2023-05-23T01:48:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_freebsd_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351288",
+ "id": 109351288,
+ "node_id": "RA_kwDOBPZW984GhJF4",
+ "name": "task_freebsd_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2311070,
+ "download_count": 112,
+ "created_at": "2023-05-23T01:48:35Z",
+ "updated_at": "2023-05-23T01:48:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_freebsd_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351290",
+ "id": 109351290,
+ "node_id": "RA_kwDOBPZW984GhJF6",
+ "name": "task_freebsd_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2212912,
+ "download_count": 6,
+ "created_at": "2023-05-23T01:48:36Z",
+ "updated_at": "2023-05-23T01:48:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_freebsd_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351300",
+ "id": 109351300,
+ "node_id": "RA_kwDOBPZW984GhJGE",
+ "name": "task_freebsd_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2110353,
+ "download_count": 6,
+ "created_at": "2023-05-23T01:48:37Z",
+ "updated_at": "2023-05-23T01:48:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_freebsd_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351310",
+ "id": 109351310,
+ "node_id": "RA_kwDOBPZW984GhJGO",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2305748,
+ "download_count": 137,
+ "created_at": "2023-05-23T01:48:39Z",
+ "updated_at": "2023-05-23T01:48:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351314",
+ "id": 109351314,
+ "node_id": "RA_kwDOBPZW984GhJGS",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2307552,
+ "download_count": 111,
+ "created_at": "2023-05-23T01:48:39Z",
+ "updated_at": "2023-05-23T01:48:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351305",
+ "id": 109351305,
+ "node_id": "RA_kwDOBPZW984GhJGJ",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2237913,
+ "download_count": 144,
+ "created_at": "2023-05-23T01:48:38Z",
+ "updated_at": "2023-05-23T01:48:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351308",
+ "id": 109351308,
+ "node_id": "RA_kwDOBPZW984GhJGM",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2381980,
+ "download_count": 1343,
+ "created_at": "2023-05-23T01:48:38Z",
+ "updated_at": "2023-05-23T01:48:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351315",
+ "id": 109351315,
+ "node_id": "RA_kwDOBPZW984GhJGT",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2383373,
+ "download_count": 121,
+ "created_at": "2023-05-23T01:48:40Z",
+ "updated_at": "2023-05-23T01:48:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351299",
+ "id": 109351299,
+ "node_id": "RA_kwDOBPZW984GhJGD",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2312547,
+ "download_count": 134154,
+ "created_at": "2023-05-23T01:48:37Z",
+ "updated_at": "2023-05-23T01:48:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351307",
+ "id": 109351307,
+ "node_id": "RA_kwDOBPZW984GhJGL",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2277960,
+ "download_count": 5,
+ "created_at": "2023-05-23T01:48:38Z",
+ "updated_at": "2023-05-23T01:48:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351311",
+ "id": 109351311,
+ "node_id": "RA_kwDOBPZW984GhJGP",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2278974,
+ "download_count": 7,
+ "created_at": "2023-05-23T01:48:39Z",
+ "updated_at": "2023-05-23T01:48:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351294",
+ "id": 109351294,
+ "node_id": "RA_kwDOBPZW984GhJF-",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2215248,
+ "download_count": 19,
+ "created_at": "2023-05-23T01:48:36Z",
+ "updated_at": "2023-05-23T01:48:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351309",
+ "id": 109351309,
+ "node_id": "RA_kwDOBPZW984GhJGN",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2168982,
+ "download_count": 82,
+ "created_at": "2023-05-23T01:48:39Z",
+ "updated_at": "2023-05-23T01:48:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351313",
+ "id": 109351313,
+ "node_id": "RA_kwDOBPZW984GhJGR",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2169574,
+ "download_count": 6,
+ "created_at": "2023-05-23T01:48:39Z",
+ "updated_at": "2023-05-23T01:48:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351287",
+ "id": 109351287,
+ "node_id": "RA_kwDOBPZW984GhJF3",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2112956,
+ "download_count": 3240,
+ "created_at": "2023-05-23T01:48:35Z",
+ "updated_at": "2023-05-23T01:48:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351291",
+ "id": 109351291,
+ "node_id": "RA_kwDOBPZW984GhJF7",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2395754,
+ "download_count": 913,
+ "created_at": "2023-05-23T01:48:36Z",
+ "updated_at": "2023-05-23T01:48:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351296",
+ "id": 109351296,
+ "node_id": "RA_kwDOBPZW984GhJGA",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2424262,
+ "download_count": 4505,
+ "created_at": "2023-05-23T01:48:37Z",
+ "updated_at": "2023-05-23T01:48:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351301",
+ "id": 109351301,
+ "node_id": "RA_kwDOBPZW984GhJGF",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2344165,
+ "download_count": 792,
+ "created_at": "2023-05-23T01:48:37Z",
+ "updated_at": "2023-05-23T01:48:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/109351303",
+ "id": 109351303,
+ "node_id": "RA_kwDOBPZW984GhJGH",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2213344,
+ "download_count": 809,
+ "created_at": "2023-05-23T01:48:38Z",
+ "updated_at": "2023-05-23T01:48:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.25.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.25.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.25.0",
+ "body": "- Support `silent:` when calling another tasks (#680, #1142 by @danquah).\r\n- Improve PowerShell completion script (#1168 by @trim21).\r\n- Add more languages to the website menu and show translation progress percentage (#1173 by @misitebao).\r\n- Starting on this release, official binaries for FreeBSD will be available to download (#1068 by @andreynering).\r\n- Fix some errors being unintendedly supressed (#1134 by @clintmod).\r\n- Fix a nil pointer error when `version` is omitted from a Taskfile (#1148, #1149 by @pd93).\r\n- Fix duplicate error message when a task does not exists (#1141, #1144 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/103886463/reactions",
+ "total_count": 13,
+ "+1": 10,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 3,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 6
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/99637725",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/99637725/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/99637725/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.24.0",
+ "id": 99637725,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984F8Fnd",
+ "tag_name": "v3.24.0",
+ "target_commitish": "main",
+ "name": "v3.24.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-04-15T21:01:35Z",
+ "published_at": "2023-04-15T21:06:42Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859498",
+ "id": 103859498,
+ "node_id": "RA_kwDOBPZW984GMMUq",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 137539,
+ "created_at": "2023-04-15T21:04:33Z",
+ "updated_at": "2023-04-15T21:04:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859479",
+ "id": 103859479,
+ "node_id": "RA_kwDOBPZW984GMMUX",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2402556,
+ "download_count": 6307,
+ "created_at": "2023-04-15T21:04:29Z",
+ "updated_at": "2023-04-15T21:04:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859478",
+ "id": 103859478,
+ "node_id": "RA_kwDOBPZW984GMMUW",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2307516,
+ "download_count": 2170,
+ "created_at": "2023-04-15T21:04:28Z",
+ "updated_at": "2023-04-15T21:04:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859490",
+ "id": 103859490,
+ "node_id": "RA_kwDOBPZW984GMMUi",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2298796,
+ "download_count": 131,
+ "created_at": "2023-04-15T21:04:30Z",
+ "updated_at": "2023-04-15T21:04:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859494",
+ "id": 103859494,
+ "node_id": "RA_kwDOBPZW984GMMUm",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2300443,
+ "download_count": 129,
+ "created_at": "2023-04-15T21:04:32Z",
+ "updated_at": "2023-04-15T21:04:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859487",
+ "id": 103859487,
+ "node_id": "RA_kwDOBPZW984GMMUf",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2237556,
+ "download_count": 138,
+ "created_at": "2023-04-15T21:04:30Z",
+ "updated_at": "2023-04-15T21:04:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859491",
+ "id": 103859491,
+ "node_id": "RA_kwDOBPZW984GMMUj",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2382394,
+ "download_count": 2590,
+ "created_at": "2023-04-15T21:04:31Z",
+ "updated_at": "2023-04-15T21:04:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859495",
+ "id": 103859495,
+ "node_id": "RA_kwDOBPZW984GMMUn",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2381271,
+ "download_count": 303,
+ "created_at": "2023-04-15T21:04:32Z",
+ "updated_at": "2023-04-15T21:04:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859489",
+ "id": 103859489,
+ "node_id": "RA_kwDOBPZW984GMMUh",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2312466,
+ "download_count": 295085,
+ "created_at": "2023-04-15T21:04:30Z",
+ "updated_at": "2023-04-15T21:04:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859493",
+ "id": 103859493,
+ "node_id": "RA_kwDOBPZW984GMMUl",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2269220,
+ "download_count": 27,
+ "created_at": "2023-04-15T21:04:31Z",
+ "updated_at": "2023-04-15T21:04:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859496",
+ "id": 103859496,
+ "node_id": "RA_kwDOBPZW984GMMUo",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2269170,
+ "download_count": 15,
+ "created_at": "2023-04-15T21:04:32Z",
+ "updated_at": "2023-04-15T21:04:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859480",
+ "id": 103859480,
+ "node_id": "RA_kwDOBPZW984GMMUY",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2214351,
+ "download_count": 23,
+ "created_at": "2023-04-15T21:04:29Z",
+ "updated_at": "2023-04-15T21:04:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859492",
+ "id": 103859492,
+ "node_id": "RA_kwDOBPZW984GMMUk",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2166658,
+ "download_count": 100,
+ "created_at": "2023-04-15T21:04:31Z",
+ "updated_at": "2023-04-15T21:04:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859497",
+ "id": 103859497,
+ "node_id": "RA_kwDOBPZW984GMMUp",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2166883,
+ "download_count": 17,
+ "created_at": "2023-04-15T21:04:32Z",
+ "updated_at": "2023-04-15T21:04:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859482",
+ "id": 103859482,
+ "node_id": "RA_kwDOBPZW984GMMUa",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2111897,
+ "download_count": 5394,
+ "created_at": "2023-04-15T21:04:29Z",
+ "updated_at": "2023-04-15T21:04:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859477",
+ "id": 103859477,
+ "node_id": "RA_kwDOBPZW984GMMUV",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2395929,
+ "download_count": 949,
+ "created_at": "2023-04-15T21:04:28Z",
+ "updated_at": "2023-04-15T21:04:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859485",
+ "id": 103859485,
+ "node_id": "RA_kwDOBPZW984GMMUd",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2424128,
+ "download_count": 5603,
+ "created_at": "2023-04-15T21:04:29Z",
+ "updated_at": "2023-04-15T21:04:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859476",
+ "id": 103859476,
+ "node_id": "RA_kwDOBPZW984GMMUU",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2344088,
+ "download_count": 819,
+ "created_at": "2023-04-15T21:04:28Z",
+ "updated_at": "2023-04-15T21:04:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/103859486",
+ "id": 103859486,
+ "node_id": "RA_kwDOBPZW984GMMUe",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2213647,
+ "download_count": 835,
+ "created_at": "2023-04-15T21:04:30Z",
+ "updated_at": "2023-04-15T21:04:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.24.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.24.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.24.0",
+ "body": "- Fix Fish shell completion for tasks with aliases (#1113 by @patricksjackson).\r\n- The default branch was renamed from `master` to `main` (#1049, #1048 by @pd93).\r\n- Fix bug where \"up-to-date\" logs were not being omitted for silent tasks (#546, #1107 by @danquah).\r\n- Add `.hg` (Mercurial) to the list of ignored directories when using `--watch` (#1098 by @misery).\r\n- More improvements to the release tool (#1096 by @pd93).\r\n- Enforce [gofumpt](https://github.com/mvdan/gofumpt) linter (#1099 by @pd93)\r\n- Add `--sort` flag for use with `--list` and `--list-all` (#946, #1105 by @pd93).\r\n- Task now has [custom exit codes](https://taskfile.dev/api/#exit-codes) depending on the error (#1114 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/99637725/reactions",
+ "total_count": 12,
+ "+1": 5,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 7,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 4
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/96960090",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/96960090/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/96960090/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.23.0",
+ "id": 96960090,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Fx35a",
+ "tag_name": "v3.23.0",
+ "target_commitish": "master",
+ "name": "v3.23.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-03-27T00:42:54Z",
+ "published_at": "2023-03-27T00:47:54Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077584",
+ "id": 101077584,
+ "node_id": "RA_kwDOBPZW984GBlJQ",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 48189,
+ "created_at": "2023-03-27T00:45:52Z",
+ "updated_at": "2023-03-27T00:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077569",
+ "id": 101077569,
+ "node_id": "RA_kwDOBPZW984GBlJB",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2382308,
+ "download_count": 4704,
+ "created_at": "2023-03-27T00:45:49Z",
+ "updated_at": "2023-03-27T00:45:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077565",
+ "id": 101077565,
+ "node_id": "RA_kwDOBPZW984GBlI9",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2271340,
+ "download_count": 2659,
+ "created_at": "2023-03-27T00:45:48Z",
+ "updated_at": "2023-03-27T00:45:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077570",
+ "id": 101077570,
+ "node_id": "RA_kwDOBPZW984GBlJC",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2278474,
+ "download_count": 127,
+ "created_at": "2023-03-27T00:45:50Z",
+ "updated_at": "2023-03-27T00:45:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077574",
+ "id": 101077574,
+ "node_id": "RA_kwDOBPZW984GBlJG",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2279520,
+ "download_count": 127,
+ "created_at": "2023-03-27T00:45:51Z",
+ "updated_at": "2023-03-27T00:45:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077564",
+ "id": 101077564,
+ "node_id": "RA_kwDOBPZW984GBlI8",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2220081,
+ "download_count": 131,
+ "created_at": "2023-03-27T00:45:48Z",
+ "updated_at": "2023-03-27T00:45:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077571",
+ "id": 101077571,
+ "node_id": "RA_kwDOBPZW984GBlJD",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2359418,
+ "download_count": 790,
+ "created_at": "2023-03-27T00:45:50Z",
+ "updated_at": "2023-03-27T00:45:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077576",
+ "id": 101077576,
+ "node_id": "RA_kwDOBPZW984GBlJI",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2361616,
+ "download_count": 181,
+ "created_at": "2023-03-27T00:45:51Z",
+ "updated_at": "2023-03-27T00:45:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077567",
+ "id": 101077567,
+ "node_id": "RA_kwDOBPZW984GBlI_",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2293500,
+ "download_count": 142796,
+ "created_at": "2023-03-27T00:45:49Z",
+ "updated_at": "2023-03-27T00:45:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077572",
+ "id": 101077572,
+ "node_id": "RA_kwDOBPZW984GBlJE",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2247158,
+ "download_count": 19,
+ "created_at": "2023-03-27T00:45:50Z",
+ "updated_at": "2023-03-27T00:45:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077580",
+ "id": 101077580,
+ "node_id": "RA_kwDOBPZW984GBlJM",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2248184,
+ "download_count": 16,
+ "created_at": "2023-03-27T00:45:51Z",
+ "updated_at": "2023-03-27T00:45:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077562",
+ "id": 101077562,
+ "node_id": "RA_kwDOBPZW984GBlI6",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2198310,
+ "download_count": 30,
+ "created_at": "2023-03-27T00:45:47Z",
+ "updated_at": "2023-03-27T00:45:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077573",
+ "id": 101077573,
+ "node_id": "RA_kwDOBPZW984GBlJF",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2151112,
+ "download_count": 453,
+ "created_at": "2023-03-27T00:45:50Z",
+ "updated_at": "2023-03-27T00:45:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077582",
+ "id": 101077582,
+ "node_id": "RA_kwDOBPZW984GBlJO",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2152132,
+ "download_count": 16,
+ "created_at": "2023-03-27T00:45:51Z",
+ "updated_at": "2023-03-27T00:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077556",
+ "id": 101077556,
+ "node_id": "RA_kwDOBPZW984GBlI0",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2097475,
+ "download_count": 2180,
+ "created_at": "2023-03-27T00:45:47Z",
+ "updated_at": "2023-03-27T00:45:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077566",
+ "id": 101077566,
+ "node_id": "RA_kwDOBPZW984GBlI-",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2376898,
+ "download_count": 964,
+ "created_at": "2023-03-27T00:45:49Z",
+ "updated_at": "2023-03-27T00:45:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077555",
+ "id": 101077555,
+ "node_id": "RA_kwDOBPZW984GBlIz",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2406098,
+ "download_count": 10453,
+ "created_at": "2023-03-27T00:45:47Z",
+ "updated_at": "2023-03-27T00:45:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077568",
+ "id": 101077568,
+ "node_id": "RA_kwDOBPZW984GBlJA",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2322787,
+ "download_count": 840,
+ "created_at": "2023-03-27T00:45:49Z",
+ "updated_at": "2023-03-27T00:45:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/101077563",
+ "id": 101077563,
+ "node_id": "RA_kwDOBPZW984GBlI7",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2197960,
+ "download_count": 858,
+ "created_at": "2023-03-27T00:45:48Z",
+ "updated_at": "2023-03-27T00:45:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.23.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.23.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.23.0",
+ "body": "Task now has an [official extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=task.vscode-task) contributed by @pd93! :tada: The extension is maintained in a [new repository](https://github.com/go-task/vscode-task) under the `go-task` organization. We're looking to gather feedback from the community so please give it a go and let us know what you think via a [discussion](https://github.com/go-task/vscode-task/discussions), [issue](https://github.com/go-task/vscode-task/issues) or on our [Discord](https://discord.gg/6TY36E39UK)!\r\n\r\n> **NOTE:**\r\n> The extension _requires_ v3.23.0 to be installed in order to work.\r\n\r\n- The website was integrated with [Crowdin](https://crowdin.com/project/taskfile) to allow the community to contribute with translations! [Chinese](https://taskfile.dev/zh-Hans/) is the first language available (#1057, #1058 by @misitebao).\r\n- Added task location data to the `--json` flag output (#1056 by @pd93)\r\n- Change the name of the file generated by `task --init` from `Taskfile.yaml` to `Taskfile.yml` (#1062 by @misitebao).\r\n- Added new `splitArgs` template function (`{{splitArgs \"foo bar 'foo bar baz'\"}}`) to ensure string is split as arguments (#1040, #1059 by @dhanusaputra).\r\n- Fix the value of `{{.CHECKSUM}}` variable in status (#1076, #1080 by @pd93).\r\n- Fixed deep copy implementation (#1072 by @pd93)\r\n- Created a tool to assist with releases (#1086 by @pd93).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/96960090/reactions",
+ "total_count": 18,
+ "+1": 7,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 8,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 3,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/95242673",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/95242673/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/95242673/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.22.0",
+ "id": 95242673,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984FrUmx",
+ "tag_name": "v3.22.0",
+ "target_commitish": "master",
+ "name": "v3.22.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-03-10T18:36:05Z",
+ "published_at": "2023-03-10T18:43:33Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876250",
+ "id": 98876250,
+ "node_id": "RA_kwDOBPZW984F5Lta",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 35640,
+ "created_at": "2023-03-10T18:38:58Z",
+ "updated_at": "2023-03-10T18:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876236",
+ "id": 98876236,
+ "node_id": "RA_kwDOBPZW984F5LtM",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2370957,
+ "download_count": 4657,
+ "created_at": "2023-03-10T18:38:55Z",
+ "updated_at": "2023-03-10T18:38:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876230",
+ "id": 98876230,
+ "node_id": "RA_kwDOBPZW984F5LtG",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2257623,
+ "download_count": 1827,
+ "created_at": "2023-03-10T18:38:54Z",
+ "updated_at": "2023-03-10T18:38:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876242",
+ "id": 98876242,
+ "node_id": "RA_kwDOBPZW984F5LtS",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2275192,
+ "download_count": 125,
+ "created_at": "2023-03-10T18:38:56Z",
+ "updated_at": "2023-03-10T18:38:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876246",
+ "id": 98876246,
+ "node_id": "RA_kwDOBPZW984F5LtW",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2276993,
+ "download_count": 124,
+ "created_at": "2023-03-10T18:38:57Z",
+ "updated_at": "2023-03-10T18:38:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876228",
+ "id": 98876228,
+ "node_id": "RA_kwDOBPZW984F5LtE",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2209991,
+ "download_count": 136,
+ "created_at": "2023-03-10T18:38:54Z",
+ "updated_at": "2023-03-10T18:38:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876243",
+ "id": 98876243,
+ "node_id": "RA_kwDOBPZW984F5LtT",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2351054,
+ "download_count": 385,
+ "created_at": "2023-03-10T18:38:56Z",
+ "updated_at": "2023-03-10T18:38:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876247",
+ "id": 98876247,
+ "node_id": "RA_kwDOBPZW984F5LtX",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2351788,
+ "download_count": 143,
+ "created_at": "2023-03-10T18:38:57Z",
+ "updated_at": "2023-03-10T18:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876237",
+ "id": 98876237,
+ "node_id": "RA_kwDOBPZW984F5LtN",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2282181,
+ "download_count": 115760,
+ "created_at": "2023-03-10T18:38:55Z",
+ "updated_at": "2023-03-10T18:38:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876245",
+ "id": 98876245,
+ "node_id": "RA_kwDOBPZW984F5LtV",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2237852,
+ "download_count": 19,
+ "created_at": "2023-03-10T18:38:57Z",
+ "updated_at": "2023-03-10T18:38:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876248",
+ "id": 98876248,
+ "node_id": "RA_kwDOBPZW984F5LtY",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2237720,
+ "download_count": 15,
+ "created_at": "2023-03-10T18:38:57Z",
+ "updated_at": "2023-03-10T18:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876239",
+ "id": 98876239,
+ "node_id": "RA_kwDOBPZW984F5LtP",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2184683,
+ "download_count": 240,
+ "created_at": "2023-03-10T18:38:56Z",
+ "updated_at": "2023-03-10T18:38:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876240",
+ "id": 98876240,
+ "node_id": "RA_kwDOBPZW984F5LtQ",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2141126,
+ "download_count": 104,
+ "created_at": "2023-03-10T18:38:56Z",
+ "updated_at": "2023-03-10T18:38:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876249",
+ "id": 98876249,
+ "node_id": "RA_kwDOBPZW984F5LtZ",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2142125,
+ "download_count": 18,
+ "created_at": "2023-03-10T18:38:58Z",
+ "updated_at": "2023-03-10T18:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876232",
+ "id": 98876232,
+ "node_id": "RA_kwDOBPZW984F5LtI",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2086814,
+ "download_count": 990,
+ "created_at": "2023-03-10T18:38:54Z",
+ "updated_at": "2023-03-10T18:38:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876224",
+ "id": 98876224,
+ "node_id": "RA_kwDOBPZW984F5LtA",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2339492,
+ "download_count": 974,
+ "created_at": "2023-03-10T18:38:53Z",
+ "updated_at": "2023-03-10T18:38:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876227",
+ "id": 98876227,
+ "node_id": "RA_kwDOBPZW984F5LtD",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2366550,
+ "download_count": 4032,
+ "created_at": "2023-03-10T18:38:53Z",
+ "updated_at": "2023-03-10T18:38:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876231",
+ "id": 98876231,
+ "node_id": "RA_kwDOBPZW984F5LtH",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2286612,
+ "download_count": 854,
+ "created_at": "2023-03-10T18:38:54Z",
+ "updated_at": "2023-03-10T18:38:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/98876235",
+ "id": 98876235,
+ "node_id": "RA_kwDOBPZW984F5LtL",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2164885,
+ "download_count": 856,
+ "created_at": "2023-03-10T18:38:55Z",
+ "updated_at": "2023-03-10T18:38:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.22.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.22.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.22.0",
+ "body": "- Add a brand new `--global` (`-g`) flag that will run a Taskfile from your `$HOME` directory. This is useful to have automation that you can run from anywhere in your system! ([Documentation](https://taskfile.dev/usage/#running-a-global-taskfile), [#1029](https://github.com/go-task/task/pull/1029) by @andreynering).\r\n- Add ability to set `error_only: true` on the `group` output mode. This will instruct Task to only print a command output if it returned with a non-zero exit code ([#664](https://github.com/go-task/task/issues/664), [#1022](https://github.com/go-task/task/pull/1022) by @jaedle).\r\n- Fixed bug where `.task/checksum` file was sometimes not being created when task also declares a `status:` ([#840](https://github.com/go-task/task/issues/840), [#1035](https://github.com/go-task/task/pull/1035) by @harelwa, [#1037](https://github.com/go-task/task/pull/1037) by @pd93).\r\n- Refactored and decoupled fingerprinting from the main Task executor ([#1039](https://github.com/go-task/task/issues/1039) by @pd93).\r\n- Fixed deadlock issue when using `run: once` ([#715](https://github.com/go-task/task/issues/715), [#1025](https://github.com/go-task/task/pull/1025) by @theunrepentantgeek).\r\n\r\nIf Task is useful to you or your company, consider [becoming a sponsor](https://taskfile.dev/donate/).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/95242673/reactions",
+ "total_count": 11,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 10,
+ "eyes": 1
+ },
+ "mentions_count": 5
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/93381285",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/93381285/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/93381285/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.21.0",
+ "id": 93381285,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984FkOKl",
+ "tag_name": "v3.21.0",
+ "target_commitish": "master",
+ "name": "v3.21.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-02-23T01:12:53Z",
+ "published_at": "2023-02-23T01:16:22Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735679",
+ "id": 96735679,
+ "node_id": "RA_kwDOBPZW984FxBG_",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 41386,
+ "created_at": "2023-02-23T01:15:34Z",
+ "updated_at": "2023-02-23T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735661",
+ "id": 96735661,
+ "node_id": "RA_kwDOBPZW984FxBGt",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2351726,
+ "download_count": 3797,
+ "created_at": "2023-02-23T01:15:31Z",
+ "updated_at": "2023-02-23T01:15:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735654",
+ "id": 96735654,
+ "node_id": "RA_kwDOBPZW984FxBGm",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2239900,
+ "download_count": 1867,
+ "created_at": "2023-02-23T01:15:29Z",
+ "updated_at": "2023-02-23T01:15:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735667",
+ "id": 96735667,
+ "node_id": "RA_kwDOBPZW984FxBGz",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2253370,
+ "download_count": 127,
+ "created_at": "2023-02-23T01:15:32Z",
+ "updated_at": "2023-02-23T01:15:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735674",
+ "id": 96735674,
+ "node_id": "RA_kwDOBPZW984FxBG6",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2252225,
+ "download_count": 122,
+ "created_at": "2023-02-23T01:15:33Z",
+ "updated_at": "2023-02-23T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735656",
+ "id": 96735656,
+ "node_id": "RA_kwDOBPZW984FxBGo",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2193746,
+ "download_count": 130,
+ "created_at": "2023-02-23T01:15:30Z",
+ "updated_at": "2023-02-23T01:15:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735668",
+ "id": 96735668,
+ "node_id": "RA_kwDOBPZW984FxBG0",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2335506,
+ "download_count": 16901,
+ "created_at": "2023-02-23T01:15:32Z",
+ "updated_at": "2023-02-23T01:15:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735672",
+ "id": 96735672,
+ "node_id": "RA_kwDOBPZW984FxBG4",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2336250,
+ "download_count": 159,
+ "created_at": "2023-02-23T01:15:33Z",
+ "updated_at": "2023-02-23T01:15:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735662",
+ "id": 96735662,
+ "node_id": "RA_kwDOBPZW984FxBGu",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2263112,
+ "download_count": 109558,
+ "created_at": "2023-02-23T01:15:31Z",
+ "updated_at": "2023-02-23T01:15:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735669",
+ "id": 96735669,
+ "node_id": "RA_kwDOBPZW984FxBG1",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2218662,
+ "download_count": 15,
+ "created_at": "2023-02-23T01:15:32Z",
+ "updated_at": "2023-02-23T01:15:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735673",
+ "id": 96735673,
+ "node_id": "RA_kwDOBPZW984FxBG5",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2220204,
+ "download_count": 14,
+ "created_at": "2023-02-23T01:15:33Z",
+ "updated_at": "2023-02-23T01:15:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735663",
+ "id": 96735663,
+ "node_id": "RA_kwDOBPZW984FxBGv",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2168562,
+ "download_count": 21,
+ "created_at": "2023-02-23T01:15:31Z",
+ "updated_at": "2023-02-23T01:15:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735671",
+ "id": 96735671,
+ "node_id": "RA_kwDOBPZW984FxBG3",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2123642,
+ "download_count": 31,
+ "created_at": "2023-02-23T01:15:33Z",
+ "updated_at": "2023-02-23T01:15:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735677",
+ "id": 96735677,
+ "node_id": "RA_kwDOBPZW984FxBG9",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2124114,
+ "download_count": 12,
+ "created_at": "2023-02-23T01:15:34Z",
+ "updated_at": "2023-02-23T01:15:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735664",
+ "id": 96735664,
+ "node_id": "RA_kwDOBPZW984FxBGw",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2068397,
+ "download_count": 1834,
+ "created_at": "2023-02-23T01:15:32Z",
+ "updated_at": "2023-02-23T01:15:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735653",
+ "id": 96735653,
+ "node_id": "RA_kwDOBPZW984FxBGl",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2320743,
+ "download_count": 993,
+ "created_at": "2023-02-23T01:15:29Z",
+ "updated_at": "2023-02-23T01:15:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735657",
+ "id": 96735657,
+ "node_id": "RA_kwDOBPZW984FxBGp",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2346842,
+ "download_count": 3516,
+ "created_at": "2023-02-23T01:15:30Z",
+ "updated_at": "2023-02-23T01:15:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735658",
+ "id": 96735658,
+ "node_id": "RA_kwDOBPZW984FxBGq",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2266628,
+ "download_count": 864,
+ "created_at": "2023-02-23T01:15:30Z",
+ "updated_at": "2023-02-23T01:15:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/96735659",
+ "id": 96735659,
+ "node_id": "RA_kwDOBPZW984FxBGr",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2145837,
+ "download_count": 865,
+ "created_at": "2023-02-23T01:15:30Z",
+ "updated_at": "2023-02-23T01:15:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.21.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.21.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.21.0",
+ "body": "- Added new `TASK_VERSION` special variable ([#990](https://github.com/go-task/task/issues/990), [#1014](https://github.com/go-task/task/pull/1014) by @ja1code).\r\n- Fixed a bug where tasks were sometimes incorrectly marked as internal ([#1007](https://github.com/go-task/task/pull/1007) by @pd93).\r\n- Update to Go 1.20 (bump minimum version to 1.19) ([#1010](https://github.com/go-task/task/pull/1010) by @pd93)\r\n- Added environment variable `FORCE_COLOR` support to force color output. Usefull for environments without TTY ([#1003](https://github.com/go-task/task/pull/1003) by @automation-stack)",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/93381285/reactions",
+ "total_count": 9,
+ "+1": 6,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 2,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 1,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/88987622",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/88987622/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/88987622/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.20.0",
+ "id": 88987622,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984FTdfm",
+ "tag_name": "v3.20.0",
+ "target_commitish": "master",
+ "name": "v3.20.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2023-01-14T20:34:27Z",
+ "published_at": "2023-01-14T20:38:29Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701375",
+ "id": 91701375,
+ "node_id": "RA_kwDOBPZW984Fd0B_",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 97581,
+ "created_at": "2023-01-14T20:37:16Z",
+ "updated_at": "2023-01-14T20:37:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701355",
+ "id": 91701355,
+ "node_id": "RA_kwDOBPZW984Fd0Br",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2306752,
+ "download_count": 9324,
+ "created_at": "2023-01-14T20:37:12Z",
+ "updated_at": "2023-01-14T20:37:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701362",
+ "id": 91701362,
+ "node_id": "RA_kwDOBPZW984Fd0By",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2206713,
+ "download_count": 3671,
+ "created_at": "2023-01-14T20:37:14Z",
+ "updated_at": "2023-01-14T20:37:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701368",
+ "id": 91701368,
+ "node_id": "RA_kwDOBPZW984Fd0B4",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2209906,
+ "download_count": 147,
+ "created_at": "2023-01-14T20:37:15Z",
+ "updated_at": "2023-01-14T20:37:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701374",
+ "id": 91701374,
+ "node_id": "RA_kwDOBPZW984Fd0B-",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2210832,
+ "download_count": 126,
+ "created_at": "2023-01-14T20:37:16Z",
+ "updated_at": "2023-01-14T20:37:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701364",
+ "id": 91701364,
+ "node_id": "RA_kwDOBPZW984Fd0B0",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2152189,
+ "download_count": 138,
+ "created_at": "2023-01-14T20:37:14Z",
+ "updated_at": "2023-01-14T20:37:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701367",
+ "id": 91701367,
+ "node_id": "RA_kwDOBPZW984Fd0B3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2293246,
+ "download_count": 6927,
+ "created_at": "2023-01-14T20:37:15Z",
+ "updated_at": "2023-01-14T20:37:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701371",
+ "id": 91701371,
+ "node_id": "RA_kwDOBPZW984Fd0B7",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2294301,
+ "download_count": 246,
+ "created_at": "2023-01-14T20:37:16Z",
+ "updated_at": "2023-01-14T20:37:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701357",
+ "id": 91701357,
+ "node_id": "RA_kwDOBPZW984Fd0Bt",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2226291,
+ "download_count": 323165,
+ "created_at": "2023-01-14T20:37:13Z",
+ "updated_at": "2023-01-14T20:37:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701369",
+ "id": 91701369,
+ "node_id": "RA_kwDOBPZW984Fd0B5",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2177418,
+ "download_count": 37,
+ "created_at": "2023-01-14T20:37:15Z",
+ "updated_at": "2023-01-14T20:37:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701372",
+ "id": 91701372,
+ "node_id": "RA_kwDOBPZW984Fd0B8",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2178596,
+ "download_count": 19,
+ "created_at": "2023-01-14T20:37:16Z",
+ "updated_at": "2023-01-14T20:37:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701365",
+ "id": 91701365,
+ "node_id": "RA_kwDOBPZW984Fd0B1",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2125140,
+ "download_count": 24,
+ "created_at": "2023-01-14T20:37:14Z",
+ "updated_at": "2023-01-14T20:37:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701370",
+ "id": 91701370,
+ "node_id": "RA_kwDOBPZW984Fd0B6",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2084932,
+ "download_count": 610,
+ "created_at": "2023-01-14T20:37:15Z",
+ "updated_at": "2023-01-14T20:37:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701373",
+ "id": 91701373,
+ "node_id": "RA_kwDOBPZW984Fd0B9",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2085540,
+ "download_count": 21,
+ "created_at": "2023-01-14T20:37:16Z",
+ "updated_at": "2023-01-14T20:37:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701366",
+ "id": 91701366,
+ "node_id": "RA_kwDOBPZW984Fd0B2",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2032716,
+ "download_count": 3587,
+ "created_at": "2023-01-14T20:37:14Z",
+ "updated_at": "2023-01-14T20:37:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701356",
+ "id": 91701356,
+ "node_id": "RA_kwDOBPZW984Fd0Bs",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2303905,
+ "download_count": 157,
+ "created_at": "2023-01-14T20:37:12Z",
+ "updated_at": "2023-01-14T20:37:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701358",
+ "id": 91701358,
+ "node_id": "RA_kwDOBPZW984Fd0Bu",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2335774,
+ "download_count": 6902,
+ "created_at": "2023-01-14T20:37:13Z",
+ "updated_at": "2023-01-14T20:37:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701360",
+ "id": 91701360,
+ "node_id": "RA_kwDOBPZW984Fd0Bw",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2252202,
+ "download_count": 21,
+ "created_at": "2023-01-14T20:37:13Z",
+ "updated_at": "2023-01-14T20:37:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/91701361",
+ "id": 91701361,
+ "node_id": "RA_kwDOBPZW984Fd0Bx",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2135376,
+ "download_count": 36,
+ "created_at": "2023-01-14T20:37:13Z",
+ "updated_at": "2023-01-14T20:37:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.20.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.20.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.20.0",
+ "body": "- Improve behavior and performance of status checking when using the `timestamp` mode ([#976](https://github.com/go-task/task/issues/976), [#977](https://github.com/go-task/task/pull/977) by @aminya).\r\n- Performance optimizations were made for large Taskfiles ([#982](https://github.com/go-task/task/pull/982) by @pd93).\r\n- Add ability to configure options for the [`set`](https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html) and [`shopt`](https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html) builtins ([#908](https://github.com/go-task/task/issues/908), [#929](https://github.com/go-task/task/pull/929) by @pd93, [Documentation](http://taskfile.dev/usage/#set-and-shopt)).\r\n- Add new `platforms:` attribute to `task` and `cmd`, so it's now possible to choose in which platforms that given task or command will be run on. Possible values are operating system (GOOS), architecture (GOARCH) or a combination of the two. Example: `platforms: [linux]`, `platforms: [amd64]` or `platforms: [linux/amd64]`. Other platforms will be skipped ([#978](https://github.com/go-task/task/issues/978), [#980](https://github.com/go-task/task/pull/980) by @leaanthony).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/88987622/reactions",
+ "total_count": 10,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 9,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 1
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/87636138",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/87636138/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/87636138/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.19.1",
+ "id": 87636138,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984FOTiq",
+ "tag_name": "v3.19.1",
+ "target_commitish": "master",
+ "name": "v3.19.1 - Holidays edition",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-12-31T17:03:59Z",
+ "published_at": "2022-12-31T17:12:38Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081101",
+ "id": 90081101,
+ "node_id": "RA_kwDOBPZW984FXodN",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 107392,
+ "created_at": "2022-12-31T17:07:41Z",
+ "updated_at": "2022-12-31T17:07:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081075",
+ "id": 90081075,
+ "node_id": "RA_kwDOBPZW984FXocz",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2292730,
+ "download_count": 2910,
+ "created_at": "2022-12-31T17:07:36Z",
+ "updated_at": "2022-12-31T17:07:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081089",
+ "id": 90081089,
+ "node_id": "RA_kwDOBPZW984FXodB",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2192382,
+ "download_count": 1842,
+ "created_at": "2022-12-31T17:07:38Z",
+ "updated_at": "2022-12-31T17:07:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081092",
+ "id": 90081092,
+ "node_id": "RA_kwDOBPZW984FXodE",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2193790,
+ "download_count": 128,
+ "created_at": "2022-12-31T17:07:39Z",
+ "updated_at": "2022-12-31T17:07:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081095",
+ "id": 90081095,
+ "node_id": "RA_kwDOBPZW984FXodH",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2195243,
+ "download_count": 127,
+ "created_at": "2022-12-31T17:07:40Z",
+ "updated_at": "2022-12-31T17:07:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081079",
+ "id": 90081079,
+ "node_id": "RA_kwDOBPZW984FXoc3",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2138140,
+ "download_count": 152,
+ "created_at": "2022-12-31T17:07:37Z",
+ "updated_at": "2022-12-31T17:07:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081090",
+ "id": 90081090,
+ "node_id": "RA_kwDOBPZW984FXodC",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2281134,
+ "download_count": 2440,
+ "created_at": "2022-12-31T17:07:38Z",
+ "updated_at": "2022-12-31T17:07:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081097",
+ "id": 90081097,
+ "node_id": "RA_kwDOBPZW984FXodJ",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2281962,
+ "download_count": 128,
+ "created_at": "2022-12-31T17:07:40Z",
+ "updated_at": "2022-12-31T17:07:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081076",
+ "id": 90081076,
+ "node_id": "RA_kwDOBPZW984FXoc0",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2212958,
+ "download_count": 169789,
+ "created_at": "2022-12-31T17:07:36Z",
+ "updated_at": "2022-12-31T17:07:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081093",
+ "id": 90081093,
+ "node_id": "RA_kwDOBPZW984FXodF",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2167084,
+ "download_count": 15,
+ "created_at": "2022-12-31T17:07:39Z",
+ "updated_at": "2022-12-31T17:07:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081098",
+ "id": 90081098,
+ "node_id": "RA_kwDOBPZW984FXodK",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2167380,
+ "download_count": 15,
+ "created_at": "2022-12-31T17:07:41Z",
+ "updated_at": "2022-12-31T17:07:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081078",
+ "id": 90081078,
+ "node_id": "RA_kwDOBPZW984FXoc2",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2114399,
+ "download_count": 20,
+ "created_at": "2022-12-31T17:07:37Z",
+ "updated_at": "2022-12-31T17:07:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081094",
+ "id": 90081094,
+ "node_id": "RA_kwDOBPZW984FXodG",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2074734,
+ "download_count": 84,
+ "created_at": "2022-12-31T17:07:40Z",
+ "updated_at": "2022-12-31T17:07:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081099",
+ "id": 90081099,
+ "node_id": "RA_kwDOBPZW984FXodL",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2074883,
+ "download_count": 13,
+ "created_at": "2022-12-31T17:07:41Z",
+ "updated_at": "2022-12-31T17:07:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081072",
+ "id": 90081072,
+ "node_id": "RA_kwDOBPZW984FXocw",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2023222,
+ "download_count": 1426,
+ "created_at": "2022-12-31T17:07:35Z",
+ "updated_at": "2022-12-31T17:07:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081071",
+ "id": 90081071,
+ "node_id": "RA_kwDOBPZW984FXocv",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2290621,
+ "download_count": 140,
+ "created_at": "2022-12-31T17:07:35Z",
+ "updated_at": "2022-12-31T17:07:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081083",
+ "id": 90081083,
+ "node_id": "RA_kwDOBPZW984FXoc7",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2321968,
+ "download_count": 1772,
+ "created_at": "2022-12-31T17:07:38Z",
+ "updated_at": "2022-12-31T17:07:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081081",
+ "id": 90081081,
+ "node_id": "RA_kwDOBPZW984FXoc5",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2239480,
+ "download_count": 15,
+ "created_at": "2022-12-31T17:07:37Z",
+ "updated_at": "2022-12-31T17:07:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/90081084",
+ "id": 90081084,
+ "node_id": "RA_kwDOBPZW984FXoc8",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2122636,
+ "download_count": 21,
+ "created_at": "2022-12-31T17:07:38Z",
+ "updated_at": "2022-12-31T17:07:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.19.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.19.1",
+ "body": "I hope everyone had a great Christmas 🎄 and I wish all an incredible 2023 as well 🌟 🎆 \r\n\r\nThis release includes mostly small bug fixes, but it also included support to the brand new `--json` flag.\r\n\r\n---\r\n\r\n- Small bug fix: closing `Taskfile.yml` once we're done reading it ([#963](https://github.com/go-task/task/issues/963), [#964](https://github.com/go-task/task/pull/964) by @HeCorr).\r\n- Fixes a bug in v2 that caused a panic when using a `Taskfile_{{OS}}.yml` file ([#961](https://github.com/go-task/task/issues/961), [#971](https://github.com/go-task/task/pull/971) by @pd93).\r\n- Fixed a bug where watch intervals set in the Taskfile were not being respected ([#969](https://github.com/go-task/task/pull/969), [#970](https://github.com/go-task/task/pull/970) by @pd93)\r\n- Add `--json` flag (alias `-j`) with the intent to improve support for code editors and add room to other possible integrations. This is basic for now, but we plan to add more info in the near future ([#936](https://github.com/go-task/task/pull/936) by @davidalpert, [#764](https://github.com/go-task/task/issues/764)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/87636138/reactions",
+ "total_count": 14,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 14,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/85078612",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/85078612/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/85078612/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.19.0",
+ "id": 85078612,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984FEjJU",
+ "tag_name": "v3.19.0",
+ "target_commitish": "master",
+ "name": "v3.19.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-12-06T01:28:26Z",
+ "published_at": "2022-12-06T01:46:14Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134313",
+ "id": 87134313,
+ "node_id": "RA_kwDOBPZW984FMZBp",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 61387,
+ "created_at": "2022-12-06T01:31:25Z",
+ "updated_at": "2022-12-06T01:31:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134304",
+ "id": 87134304,
+ "node_id": "RA_kwDOBPZW984FMZBg",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2286366,
+ "download_count": 4581,
+ "created_at": "2022-12-06T01:31:23Z",
+ "updated_at": "2022-12-06T01:31:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134295",
+ "id": 87134295,
+ "node_id": "RA_kwDOBPZW984FMZBX",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2188235,
+ "download_count": 2438,
+ "created_at": "2022-12-06T01:31:20Z",
+ "updated_at": "2022-12-06T01:31:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134306",
+ "id": 87134306,
+ "node_id": "RA_kwDOBPZW984FMZBi",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2194626,
+ "download_count": 160,
+ "created_at": "2022-12-06T01:31:23Z",
+ "updated_at": "2022-12-06T01:31:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134309",
+ "id": 87134309,
+ "node_id": "RA_kwDOBPZW984FMZBl",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2195964,
+ "download_count": 146,
+ "created_at": "2022-12-06T01:31:24Z",
+ "updated_at": "2022-12-06T01:31:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134294",
+ "id": 87134294,
+ "node_id": "RA_kwDOBPZW984FMZBW",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2133247,
+ "download_count": 4365,
+ "created_at": "2022-12-06T01:31:20Z",
+ "updated_at": "2022-12-06T01:31:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134305",
+ "id": 87134305,
+ "node_id": "RA_kwDOBPZW984FMZBh",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2275278,
+ "download_count": 1032,
+ "created_at": "2022-12-06T01:31:23Z",
+ "updated_at": "2022-12-06T01:31:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134310",
+ "id": 87134310,
+ "node_id": "RA_kwDOBPZW984FMZBm",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2276432,
+ "download_count": 168,
+ "created_at": "2022-12-06T01:31:24Z",
+ "updated_at": "2022-12-06T01:31:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134298",
+ "id": 87134298,
+ "node_id": "RA_kwDOBPZW984FMZBa",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2207615,
+ "download_count": 144620,
+ "created_at": "2022-12-06T01:31:21Z",
+ "updated_at": "2022-12-06T01:31:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134308",
+ "id": 87134308,
+ "node_id": "RA_kwDOBPZW984FMZBk",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2172104,
+ "download_count": 52,
+ "created_at": "2022-12-06T01:31:24Z",
+ "updated_at": "2022-12-06T01:31:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134311",
+ "id": 87134311,
+ "node_id": "RA_kwDOBPZW984FMZBn",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2172455,
+ "download_count": 36,
+ "created_at": "2022-12-06T01:31:24Z",
+ "updated_at": "2022-12-06T01:31:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134297",
+ "id": 87134297,
+ "node_id": "RA_kwDOBPZW984FMZBZ",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2110854,
+ "download_count": 16,
+ "created_at": "2022-12-06T01:31:20Z",
+ "updated_at": "2022-12-06T01:31:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134307",
+ "id": 87134307,
+ "node_id": "RA_kwDOBPZW984FMZBj",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2072672,
+ "download_count": 89,
+ "created_at": "2022-12-06T01:31:23Z",
+ "updated_at": "2022-12-06T01:31:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134312",
+ "id": 87134312,
+ "node_id": "RA_kwDOBPZW984FMZBo",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2072939,
+ "download_count": 32,
+ "created_at": "2022-12-06T01:31:24Z",
+ "updated_at": "2022-12-06T01:31:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134300",
+ "id": 87134300,
+ "node_id": "RA_kwDOBPZW984FMZBc",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2018729,
+ "download_count": 2182,
+ "created_at": "2022-12-06T01:31:22Z",
+ "updated_at": "2022-12-06T01:31:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134299",
+ "id": 87134299,
+ "node_id": "RA_kwDOBPZW984FMZBb",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2285699,
+ "download_count": 141,
+ "created_at": "2022-12-06T01:31:22Z",
+ "updated_at": "2022-12-06T01:31:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134302",
+ "id": 87134302,
+ "node_id": "RA_kwDOBPZW984FMZBe",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2315979,
+ "download_count": 2529,
+ "created_at": "2022-12-06T01:31:22Z",
+ "updated_at": "2022-12-06T01:31:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134301",
+ "id": 87134301,
+ "node_id": "RA_kwDOBPZW984FMZBd",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2234869,
+ "download_count": 16,
+ "created_at": "2022-12-06T01:31:22Z",
+ "updated_at": "2022-12-06T01:31:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/87134303",
+ "id": 87134303,
+ "node_id": "RA_kwDOBPZW984FMZBf",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2118069,
+ "download_count": 26,
+ "created_at": "2022-12-06T01:31:22Z",
+ "updated_at": "2022-12-06T01:31:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.19.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.19.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.19.0",
+ "body": "- Installation via npm now supports [pnpm](https://pnpm.io/) as well ([go-task/go-npm#2](https://github.com/go-task/go-npm/issues/2), [go-task/go-npm#3](https://github.com/go-task/go-npm/pull/3)).\r\n- It's now possible to run Taskfiles from subdirectories! A new `USER_WORKING_DIR` special variable was added to add even more flexibility for monorepos ([#289](https://github.com/go-task/task/issues/289), [#920](https://github.com/go-task/task/pull/920)).\r\n- Add task-level `dotenv` support ([#389](https://github.com/go-task/task/issues/389), [#904](https://github.com/go-task/task/pull/904)).\r\n- It's now possible to use global level variables on `includes` ([#942](https://github.com/go-task/task/issues/942), [#943](https://github.com/go-task/task/pull/943)).\r\n- The website got a brand new [translation to Chinese](https://task-zh.readthedocs.io/zh_CN/latest/) by @DeronW. Thanks!\r\n\r\nSpecial thanks to @pd93 for working on 3 of the topics above. Some other important contributions in recent releases were from him as well.\r\n\r\nAlso, thanks @appwrite for [sponsoring Task](https://twitter.com/appwrite/status/1595808355733606402) as part of their [OSS Fund Program](https://appwrite.io/oss-fund).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/85078612/reactions",
+ "total_count": 13,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 1,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 12,
+ "eyes": 0
+ },
+ "mentions_count": 3
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/82884292",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/82884292/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/82884292/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.18.0",
+ "id": 82884292,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984E8LbE",
+ "tag_name": "v3.18.0",
+ "target_commitish": "master",
+ "name": "v3.18.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-11-12T16:37:02Z",
+ "published_at": "2022-11-12T16:47:06Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378429",
+ "id": 84378429,
+ "node_id": "RA_kwDOBPZW984FB4M9",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 40547,
+ "created_at": "2022-11-12T16:40:27Z",
+ "updated_at": "2022-11-12T16:40:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378418",
+ "id": 84378418,
+ "node_id": "RA_kwDOBPZW984FB4My",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2283578,
+ "download_count": 5612,
+ "created_at": "2022-11-12T16:40:24Z",
+ "updated_at": "2022-11-12T16:40:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378413",
+ "id": 84378413,
+ "node_id": "RA_kwDOBPZW984FB4Mt",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2186743,
+ "download_count": 2513,
+ "created_at": "2022-11-12T16:40:22Z",
+ "updated_at": "2022-11-12T16:40:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378420",
+ "id": 84378420,
+ "node_id": "RA_kwDOBPZW984FB4M0",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2192278,
+ "download_count": 126,
+ "created_at": "2022-11-12T16:40:25Z",
+ "updated_at": "2022-11-12T16:40:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378426",
+ "id": 84378426,
+ "node_id": "RA_kwDOBPZW984FB4M6",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2193350,
+ "download_count": 151,
+ "created_at": "2022-11-12T16:40:26Z",
+ "updated_at": "2022-11-12T16:40:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378412",
+ "id": 84378412,
+ "node_id": "RA_kwDOBPZW984FB4Ms",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2131516,
+ "download_count": 126,
+ "created_at": "2022-11-12T16:40:22Z",
+ "updated_at": "2022-11-12T16:40:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378421",
+ "id": 84378421,
+ "node_id": "RA_kwDOBPZW984FB4M1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2274064,
+ "download_count": 730,
+ "created_at": "2022-11-12T16:40:25Z",
+ "updated_at": "2022-11-12T16:40:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378427",
+ "id": 84378427,
+ "node_id": "RA_kwDOBPZW984FB4M7",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2273980,
+ "download_count": 24821,
+ "created_at": "2022-11-12T16:40:27Z",
+ "updated_at": "2022-11-12T16:40:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378414",
+ "id": 84378414,
+ "node_id": "RA_kwDOBPZW984FB4Mu",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2204713,
+ "download_count": 104488,
+ "created_at": "2022-11-12T16:40:23Z",
+ "updated_at": "2022-11-12T16:40:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378422",
+ "id": 84378422,
+ "node_id": "RA_kwDOBPZW984FB4M2",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2172244,
+ "download_count": 16,
+ "created_at": "2022-11-12T16:40:25Z",
+ "updated_at": "2022-11-12T16:40:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378424",
+ "id": 84378424,
+ "node_id": "RA_kwDOBPZW984FB4M4",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2171693,
+ "download_count": 14,
+ "created_at": "2022-11-12T16:40:26Z",
+ "updated_at": "2022-11-12T16:40:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378417",
+ "id": 84378417,
+ "node_id": "RA_kwDOBPZW984FB4Mx",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2109287,
+ "download_count": 15,
+ "created_at": "2022-11-12T16:40:24Z",
+ "updated_at": "2022-11-12T16:40:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378423",
+ "id": 84378423,
+ "node_id": "RA_kwDOBPZW984FB4M3",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2069964,
+ "download_count": 37,
+ "created_at": "2022-11-12T16:40:25Z",
+ "updated_at": "2022-11-12T16:40:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378425",
+ "id": 84378425,
+ "node_id": "RA_kwDOBPZW984FB4M5",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2070221,
+ "download_count": 484,
+ "created_at": "2022-11-12T16:40:26Z",
+ "updated_at": "2022-11-12T16:40:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378419",
+ "id": 84378419,
+ "node_id": "RA_kwDOBPZW984FB4Mz",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2016447,
+ "download_count": 1003,
+ "created_at": "2022-11-12T16:40:24Z",
+ "updated_at": "2022-11-12T16:40:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378411",
+ "id": 84378411,
+ "node_id": "RA_kwDOBPZW984FB4Mr",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2284027,
+ "download_count": 139,
+ "created_at": "2022-11-12T16:40:21Z",
+ "updated_at": "2022-11-12T16:40:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378415",
+ "id": 84378415,
+ "node_id": "RA_kwDOBPZW984FB4Mv",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2314299,
+ "download_count": 3686,
+ "created_at": "2022-11-12T16:40:23Z",
+ "updated_at": "2022-11-12T16:40:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378416",
+ "id": 84378416,
+ "node_id": "RA_kwDOBPZW984FB4Mw",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2232546,
+ "download_count": 14,
+ "created_at": "2022-11-12T16:40:23Z",
+ "updated_at": "2022-11-12T16:40:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/84378410",
+ "id": 84378410,
+ "node_id": "RA_kwDOBPZW984FB4Mq",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2116617,
+ "download_count": 46,
+ "created_at": "2022-11-12T16:40:21Z",
+ "updated_at": "2022-11-12T16:40:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.18.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.18.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.18.0",
+ "body": "- Show aliases on `task --list --silent` (`task --ls`). This means that aliases will be completed by the completion scripts ([#919](https://github.com/go-task/task/pull/919)).\r\n- Tasks in the root Taskfile will now be displayed first in `--list`/`--list-all` output ([#806](https://github.com/go-task/task/pull/806), [#890](https://github.com/go-task/task/pull/890)).\r\n- It's now possible to call a `default` task in an included Taskfile by using just the namespace. For example: `docs:default` is now automatically aliased to `docs` ([#661](https://github.com/go-task/task/issues/661), [#815](https://github.com/go-task/task/pull/815)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/82884292/reactions",
+ "total_count": 11,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 6,
+ "confused": 0,
+ "heart": 5,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/79970830",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/79970830/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/79970830/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.17.0",
+ "id": 79970830,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984ExEIO",
+ "tag_name": "v3.17.0",
+ "target_commitish": "master",
+ "name": "v3.17.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-10-15T00:12:01Z",
+ "published_at": "2022-10-15T00:16:28Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068384",
+ "id": 81068384,
+ "node_id": "RA_kwDOBPZW984E1QFg",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 47403,
+ "created_at": "2022-10-15T00:15:10Z",
+ "updated_at": "2022-10-15T00:15:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068365",
+ "id": 81068365,
+ "node_id": "RA_kwDOBPZW984E1QFN",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2281229,
+ "download_count": 6724,
+ "created_at": "2022-10-15T00:15:06Z",
+ "updated_at": "2022-10-15T00:15:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068366",
+ "id": 81068366,
+ "node_id": "RA_kwDOBPZW984E1QFO",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2181609,
+ "download_count": 2231,
+ "created_at": "2022-10-15T00:15:06Z",
+ "updated_at": "2022-10-15T00:15:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068378",
+ "id": 81068378,
+ "node_id": "RA_kwDOBPZW984E1QFa",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2186636,
+ "download_count": 131,
+ "created_at": "2022-10-15T00:15:09Z",
+ "updated_at": "2022-10-15T00:15:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068381",
+ "id": 81068381,
+ "node_id": "RA_kwDOBPZW984E1QFd",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2187567,
+ "download_count": 122,
+ "created_at": "2022-10-15T00:15:09Z",
+ "updated_at": "2022-10-15T00:15:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068367",
+ "id": 81068367,
+ "node_id": "RA_kwDOBPZW984E1QFP",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2127825,
+ "download_count": 138,
+ "created_at": "2022-10-15T00:15:06Z",
+ "updated_at": "2022-10-15T00:15:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068376",
+ "id": 81068376,
+ "node_id": "RA_kwDOBPZW984E1QFY",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2271584,
+ "download_count": 28649,
+ "created_at": "2022-10-15T00:15:09Z",
+ "updated_at": "2022-10-15T00:15:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068382",
+ "id": 81068382,
+ "node_id": "RA_kwDOBPZW984E1QFe",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2271807,
+ "download_count": 144,
+ "created_at": "2022-10-15T00:15:10Z",
+ "updated_at": "2022-10-15T00:15:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068373",
+ "id": 81068373,
+ "node_id": "RA_kwDOBPZW984E1QFV",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2201603,
+ "download_count": 271551,
+ "created_at": "2022-10-15T00:15:08Z",
+ "updated_at": "2022-10-15T00:15:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068375",
+ "id": 81068375,
+ "node_id": "RA_kwDOBPZW984E1QFX",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2156178,
+ "download_count": 24,
+ "created_at": "2022-10-15T00:15:08Z",
+ "updated_at": "2022-10-15T00:15:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068383",
+ "id": 81068383,
+ "node_id": "RA_kwDOBPZW984E1QFf",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2156639,
+ "download_count": 13,
+ "created_at": "2022-10-15T00:15:10Z",
+ "updated_at": "2022-10-15T00:15:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068368",
+ "id": 81068368,
+ "node_id": "RA_kwDOBPZW984E1QFQ",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2103618,
+ "download_count": 17,
+ "created_at": "2022-10-15T00:15:06Z",
+ "updated_at": "2022-10-15T00:15:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068377",
+ "id": 81068377,
+ "node_id": "RA_kwDOBPZW984E1QFZ",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2071356,
+ "download_count": 252,
+ "created_at": "2022-10-15T00:15:09Z",
+ "updated_at": "2022-10-15T00:15:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068380",
+ "id": 81068380,
+ "node_id": "RA_kwDOBPZW984E1QFc",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2069798,
+ "download_count": 12,
+ "created_at": "2022-10-15T00:15:09Z",
+ "updated_at": "2022-10-15T00:15:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068370",
+ "id": 81068370,
+ "node_id": "RA_kwDOBPZW984E1QFS",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2012839,
+ "download_count": 84112,
+ "created_at": "2022-10-15T00:15:07Z",
+ "updated_at": "2022-10-15T00:15:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068369",
+ "id": 81068369,
+ "node_id": "RA_kwDOBPZW984E1QFR",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2278413,
+ "download_count": 144,
+ "created_at": "2022-10-15T00:15:07Z",
+ "updated_at": "2022-10-15T00:15:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068374",
+ "id": 81068374,
+ "node_id": "RA_kwDOBPZW984E1QFW",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2308935,
+ "download_count": 3368,
+ "created_at": "2022-10-15T00:15:08Z",
+ "updated_at": "2022-10-15T00:15:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068371",
+ "id": 81068371,
+ "node_id": "RA_kwDOBPZW984E1QFT",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2227934,
+ "download_count": 14,
+ "created_at": "2022-10-15T00:15:07Z",
+ "updated_at": "2022-10-15T00:15:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/81068372",
+ "id": 81068372,
+ "node_id": "RA_kwDOBPZW984E1QFU",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2112972,
+ "download_count": 30,
+ "created_at": "2022-10-15T00:15:08Z",
+ "updated_at": "2022-10-15T00:15:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.17.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.17.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.17.0",
+ "body": "- Add a \"Did you mean ...?\" suggestion when a task does not exits another one with a similar name is found ([#867](https://github.com/go-task/task/issues/867), [#880](https://github.com/go-task/task/pull/880)).\r\n- Now YAML parse errors will print which Taskfile failed to parse ([#885](https://github.com/go-task/task/issues/885), [#887](https://github.com/go-task/task/pull/887)).\r\n- Add ability to set `aliases` for tasks and namespaces ([#268](https://github.com/go-task/task/pull/268), [#340](https://github.com/go-task/task/pull/340), [#879](https://github.com/go-task/task/pull/879)).\r\n- Improvements to Fish shell completion ([#897](https://github.com/go-task/task/pull/897)).\r\n- Added ability to set a different watch interval by setting `interval: '500ms'` or using the `--interval=500ms` flag ([#813](https://github.com/go-task/task/issues/813), [#865](https://github.com/go-task/task/pull/865)).\r\n- Add colored output to `--list`, `--list-all` and `--summary` flags ([#845](https://github.com/go-task/task/pull/845), [#874](https://github.com/go-task/task/pull/874)).\r\n- Fix unexpected behavior where `label:` was being shown instead of the task name on `--list` ([#603](https://github.com/go-task/task/issues/603), [#877](https://github.com/go-task/task/pull/877)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/79970830/reactions",
+ "total_count": 8,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 8,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/78646338",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/78646338/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/78646338/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.16.0",
+ "id": 78646338,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984EsAxC",
+ "tag_name": "v3.16.0",
+ "target_commitish": "master",
+ "name": "v3.16.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-09-30T01:01:31Z",
+ "published_at": "2022-09-30T01:06:02Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477774",
+ "id": 79477774,
+ "node_id": "RA_kwDOBPZW984EvLwO",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 25117,
+ "created_at": "2022-09-30T01:05:01Z",
+ "updated_at": "2022-09-30T01:05:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477756",
+ "id": 79477756,
+ "node_id": "RA_kwDOBPZW984EvLv8",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2247408,
+ "download_count": 3791,
+ "created_at": "2022-09-30T01:04:55Z",
+ "updated_at": "2022-09-30T01:04:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477751",
+ "id": 79477751,
+ "node_id": "RA_kwDOBPZW984EvLv3",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2149551,
+ "download_count": 1188,
+ "created_at": "2022-09-30T01:04:52Z",
+ "updated_at": "2022-09-30T01:04:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477763",
+ "id": 79477763,
+ "node_id": "RA_kwDOBPZW984EvLwD",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2156098,
+ "download_count": 126,
+ "created_at": "2022-09-30T01:04:57Z",
+ "updated_at": "2022-09-30T01:04:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477770",
+ "id": 79477770,
+ "node_id": "RA_kwDOBPZW984EvLwK",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2158409,
+ "download_count": 122,
+ "created_at": "2022-09-30T01:04:59Z",
+ "updated_at": "2022-09-30T01:04:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477750",
+ "id": 79477750,
+ "node_id": "RA_kwDOBPZW984EvLv2",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2092993,
+ "download_count": 389,
+ "created_at": "2022-09-30T01:04:52Z",
+ "updated_at": "2022-09-30T01:04:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477765",
+ "id": 79477765,
+ "node_id": "RA_kwDOBPZW984EvLwF",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2240708,
+ "download_count": 505,
+ "created_at": "2022-09-30T01:04:57Z",
+ "updated_at": "2022-09-30T01:04:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477771",
+ "id": 79477771,
+ "node_id": "RA_kwDOBPZW984EvLwL",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2241408,
+ "download_count": 148,
+ "created_at": "2022-09-30T01:05:00Z",
+ "updated_at": "2022-09-30T01:05:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477759",
+ "id": 79477759,
+ "node_id": "RA_kwDOBPZW984EvLv_",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2168742,
+ "download_count": 57344,
+ "created_at": "2022-09-30T01:04:56Z",
+ "updated_at": "2022-09-30T01:04:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477766",
+ "id": 79477766,
+ "node_id": "RA_kwDOBPZW984EvLwG",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2126568,
+ "download_count": 20,
+ "created_at": "2022-09-30T01:04:57Z",
+ "updated_at": "2022-09-30T01:04:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477773",
+ "id": 79477773,
+ "node_id": "RA_kwDOBPZW984EvLwN",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2128450,
+ "download_count": 12,
+ "created_at": "2022-09-30T01:05:00Z",
+ "updated_at": "2022-09-30T01:05:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477758",
+ "id": 79477758,
+ "node_id": "RA_kwDOBPZW984EvLv-",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2071562,
+ "download_count": 30,
+ "created_at": "2022-09-30T01:04:55Z",
+ "updated_at": "2022-09-30T01:04:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477768",
+ "id": 79477768,
+ "node_id": "RA_kwDOBPZW984EvLwI",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2040250,
+ "download_count": 70,
+ "created_at": "2022-09-30T01:04:58Z",
+ "updated_at": "2022-09-30T01:05:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477769",
+ "id": 79477769,
+ "node_id": "RA_kwDOBPZW984EvLwJ",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2042683,
+ "download_count": 2340,
+ "created_at": "2022-09-30T01:04:58Z",
+ "updated_at": "2022-09-30T01:04:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477761",
+ "id": 79477761,
+ "node_id": "RA_kwDOBPZW984EvLwB",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1984955,
+ "download_count": 812,
+ "created_at": "2022-09-30T01:04:56Z",
+ "updated_at": "2022-09-30T01:04:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477757",
+ "id": 79477757,
+ "node_id": "RA_kwDOBPZW984EvLv9",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2241149,
+ "download_count": 134,
+ "created_at": "2022-09-30T01:04:55Z",
+ "updated_at": "2022-09-30T01:04:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477754",
+ "id": 79477754,
+ "node_id": "RA_kwDOBPZW984EvLv6",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2276933,
+ "download_count": 2296,
+ "created_at": "2022-09-30T01:04:54Z",
+ "updated_at": "2022-09-30T01:04:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477753",
+ "id": 79477753,
+ "node_id": "RA_kwDOBPZW984EvLv5",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2193622,
+ "download_count": 15,
+ "created_at": "2022-09-30T01:04:53Z",
+ "updated_at": "2022-09-30T01:04:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/79477755",
+ "id": 79477755,
+ "node_id": "RA_kwDOBPZW984EvLv7",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2082654,
+ "download_count": 19,
+ "created_at": "2022-09-30T01:04:54Z",
+ "updated_at": "2022-09-30T01:04:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.16.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.16.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.16.0",
+ "body": "- Add `npm` as new installation method: `npm i -g @go-task/cli` ([#870](https://github.com/go-task/task/issues/870), [#871](https://github.com/go-task/task/pull/871), [npm package](https://www.npmjs.com/package/@go-task/cli)).\r\n- Add support to marking tasks and includes as internal, which will hide them from `--list` and `--list-all` ([#818](https://github.com/go-task/task/pull/818)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/78646338/reactions",
+ "total_count": 7,
+ "+1": 2,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 4,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 1,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/76657592",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/76657592/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/76657592/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.15.2",
+ "id": 76657592,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984EkbO4",
+ "tag_name": "v3.15.2",
+ "target_commitish": "master",
+ "name": "v3.15.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-09-09T00:28:54Z",
+ "published_at": "2022-09-09T00:33:33Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301322",
+ "id": 77301322,
+ "node_id": "RA_kwDOBPZW984Em4ZK",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 34304,
+ "created_at": "2022-09-09T00:32:08Z",
+ "updated_at": "2022-09-09T00:32:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301306",
+ "id": 77301306,
+ "node_id": "RA_kwDOBPZW984Em4Y6",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2246906,
+ "download_count": 4629,
+ "created_at": "2022-09-09T00:32:05Z",
+ "updated_at": "2022-09-09T00:32:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301307",
+ "id": 77301307,
+ "node_id": "RA_kwDOBPZW984Em4Y7",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2148327,
+ "download_count": 1370,
+ "created_at": "2022-09-09T00:32:05Z",
+ "updated_at": "2022-09-09T00:32:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301316",
+ "id": 77301316,
+ "node_id": "RA_kwDOBPZW984Em4ZE",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2152810,
+ "download_count": 126,
+ "created_at": "2022-09-09T00:32:07Z",
+ "updated_at": "2022-09-09T00:32:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301317",
+ "id": 77301317,
+ "node_id": "RA_kwDOBPZW984Em4ZF",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2155223,
+ "download_count": 120,
+ "created_at": "2022-09-09T00:32:07Z",
+ "updated_at": "2022-09-09T00:32:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301299",
+ "id": 77301299,
+ "node_id": "RA_kwDOBPZW984Em4Yz",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2092192,
+ "download_count": 161,
+ "created_at": "2022-09-09T00:32:03Z",
+ "updated_at": "2022-09-09T00:32:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301315",
+ "id": 77301315,
+ "node_id": "RA_kwDOBPZW984Em4ZD",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2240226,
+ "download_count": 793,
+ "created_at": "2022-09-09T00:32:07Z",
+ "updated_at": "2022-09-09T00:32:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301318",
+ "id": 77301318,
+ "node_id": "RA_kwDOBPZW984Em4ZG",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2241004,
+ "download_count": 162,
+ "created_at": "2022-09-09T00:32:07Z",
+ "updated_at": "2022-09-09T00:32:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301301",
+ "id": 77301301,
+ "node_id": "RA_kwDOBPZW984Em4Y1",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2168479,
+ "download_count": 91698,
+ "created_at": "2022-09-09T00:32:04Z",
+ "updated_at": "2022-09-09T00:32:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301313",
+ "id": 77301313,
+ "node_id": "RA_kwDOBPZW984Em4ZB",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2127970,
+ "download_count": 15,
+ "created_at": "2022-09-09T00:32:06Z",
+ "updated_at": "2022-09-09T00:32:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301321",
+ "id": 77301321,
+ "node_id": "RA_kwDOBPZW984Em4ZJ",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2129817,
+ "download_count": 12,
+ "created_at": "2022-09-09T00:32:08Z",
+ "updated_at": "2022-09-09T00:32:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301308",
+ "id": 77301308,
+ "node_id": "RA_kwDOBPZW984Em4Y8",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2070437,
+ "download_count": 37,
+ "created_at": "2022-09-09T00:32:05Z",
+ "updated_at": "2022-09-09T00:32:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301311",
+ "id": 77301311,
+ "node_id": "RA_kwDOBPZW984Em4Y_",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2039120,
+ "download_count": 69,
+ "created_at": "2022-09-09T00:32:06Z",
+ "updated_at": "2022-09-09T00:32:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301320",
+ "id": 77301320,
+ "node_id": "RA_kwDOBPZW984Em4ZI",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2040019,
+ "download_count": 61,
+ "created_at": "2022-09-09T00:32:08Z",
+ "updated_at": "2022-09-09T00:32:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301302",
+ "id": 77301302,
+ "node_id": "RA_kwDOBPZW984Em4Y2",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1982754,
+ "download_count": 1052,
+ "created_at": "2022-09-09T00:32:04Z",
+ "updated_at": "2022-09-09T00:32:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301303",
+ "id": 77301303,
+ "node_id": "RA_kwDOBPZW984Em4Y3",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2240515,
+ "download_count": 143,
+ "created_at": "2022-09-09T00:32:04Z",
+ "updated_at": "2022-09-09T00:32:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301304",
+ "id": 77301304,
+ "node_id": "RA_kwDOBPZW984Em4Y4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2276601,
+ "download_count": 2392,
+ "created_at": "2022-09-09T00:32:04Z",
+ "updated_at": "2022-09-09T00:32:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301305",
+ "id": 77301305,
+ "node_id": "RA_kwDOBPZW984Em4Y5",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2192523,
+ "download_count": 22,
+ "created_at": "2022-09-09T00:32:05Z",
+ "updated_at": "2022-09-09T00:32:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/77301300",
+ "id": 77301300,
+ "node_id": "RA_kwDOBPZW984Em4Y0",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2080274,
+ "download_count": 28,
+ "created_at": "2022-09-09T00:32:03Z",
+ "updated_at": "2022-09-09T00:32:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.2/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.15.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.15.2",
+ "body": "- Fix error when using variable in `env:` introduced in the previous release ([#858](https://github.com/go-task/task/issues/858), [#866](https://github.com/go-task/task/pull/866)).\r\n- Fix handling of `CLI_ARGS` (`--`) in Bash completion ([#863](https://github.com/go-task/task/pull/863)).\r\n- On zsh completion, add ability to replace `--list-all` with `--list` as already possible on the Bash completion ([#861](https://github.com/go-task/task/pull/861)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/76657592/reactions",
+ "total_count": 4,
+ "+1": 4,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/76214284",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/76214284/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/76214284/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.15.0",
+ "id": 76214284,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984EivAM",
+ "tag_name": "v3.15.0",
+ "target_commitish": "master",
+ "name": "v3.15.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-09-03T21:21:48Z",
+ "published_at": "2022-09-03T21:25:41Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786328",
+ "id": 76786328,
+ "node_id": "RA_kwDOBPZW984Ek6qY",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 7677,
+ "created_at": "2022-09-03T21:24:28Z",
+ "updated_at": "2022-09-03T21:24:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786303",
+ "id": 76786303,
+ "node_id": "RA_kwDOBPZW984Ek6p_",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2246670,
+ "download_count": 1311,
+ "created_at": "2022-09-03T21:24:24Z",
+ "updated_at": "2022-09-03T21:24:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786302",
+ "id": 76786302,
+ "node_id": "RA_kwDOBPZW984Ek6p-",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2148062,
+ "download_count": 596,
+ "created_at": "2022-09-03T21:24:24Z",
+ "updated_at": "2022-09-03T21:24:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786322",
+ "id": 76786322,
+ "node_id": "RA_kwDOBPZW984Ek6qS",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2152700,
+ "download_count": 122,
+ "created_at": "2022-09-03T21:24:27Z",
+ "updated_at": "2022-09-03T21:24:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786324",
+ "id": 76786324,
+ "node_id": "RA_kwDOBPZW984Ek6qU",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2154927,
+ "download_count": 122,
+ "created_at": "2022-09-03T21:24:27Z",
+ "updated_at": "2022-09-03T21:24:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786309",
+ "id": 76786309,
+ "node_id": "RA_kwDOBPZW984Ek6qF",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2091984,
+ "download_count": 131,
+ "created_at": "2022-09-03T21:24:26Z",
+ "updated_at": "2022-09-03T21:24:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786323",
+ "id": 76786323,
+ "node_id": "RA_kwDOBPZW984Ek6qT",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2240040,
+ "download_count": 723,
+ "created_at": "2022-09-03T21:24:27Z",
+ "updated_at": "2022-09-03T21:24:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786326",
+ "id": 76786326,
+ "node_id": "RA_kwDOBPZW984Ek6qW",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2240736,
+ "download_count": 133,
+ "created_at": "2022-09-03T21:24:27Z",
+ "updated_at": "2022-09-03T21:24:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786318",
+ "id": 76786318,
+ "node_id": "RA_kwDOBPZW984Ek6qO",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2168338,
+ "download_count": 17960,
+ "created_at": "2022-09-03T21:24:26Z",
+ "updated_at": "2022-09-03T21:24:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786320",
+ "id": 76786320,
+ "node_id": "RA_kwDOBPZW984Ek6qQ",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2127808,
+ "download_count": 13,
+ "created_at": "2022-09-03T21:24:26Z",
+ "updated_at": "2022-09-03T21:24:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786325",
+ "id": 76786325,
+ "node_id": "RA_kwDOBPZW984Ek6qV",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2129573,
+ "download_count": 13,
+ "created_at": "2022-09-03T21:24:27Z",
+ "updated_at": "2022-09-03T21:24:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786317",
+ "id": 76786317,
+ "node_id": "RA_kwDOBPZW984Ek6qN",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2070214,
+ "download_count": 19,
+ "created_at": "2022-09-03T21:24:26Z",
+ "updated_at": "2022-09-03T21:24:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786319",
+ "id": 76786319,
+ "node_id": "RA_kwDOBPZW984Ek6qP",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2038936,
+ "download_count": 20,
+ "created_at": "2022-09-03T21:24:26Z",
+ "updated_at": "2022-09-03T21:24:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786327",
+ "id": 76786327,
+ "node_id": "RA_kwDOBPZW984Ek6qX",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2039990,
+ "download_count": 15,
+ "created_at": "2022-09-03T21:24:28Z",
+ "updated_at": "2022-09-03T21:24:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786305",
+ "id": 76786305,
+ "node_id": "RA_kwDOBPZW984Ek6qB",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1982534,
+ "download_count": 326,
+ "created_at": "2022-09-03T21:24:24Z",
+ "updated_at": "2022-09-03T21:24:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786304",
+ "id": 76786304,
+ "node_id": "RA_kwDOBPZW984Ek6qA",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2240290,
+ "download_count": 137,
+ "created_at": "2022-09-03T21:24:24Z",
+ "updated_at": "2022-09-03T21:24:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786307",
+ "id": 76786307,
+ "node_id": "RA_kwDOBPZW984Ek6qD",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2276373,
+ "download_count": 654,
+ "created_at": "2022-09-03T21:24:25Z",
+ "updated_at": "2022-09-03T21:24:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786306",
+ "id": 76786306,
+ "node_id": "RA_kwDOBPZW984Ek6qC",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2192282,
+ "download_count": 35,
+ "created_at": "2022-09-03T21:24:25Z",
+ "updated_at": "2022-09-03T21:24:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/76786308",
+ "id": 76786308,
+ "node_id": "RA_kwDOBPZW984Ek6qE",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2080043,
+ "download_count": 18,
+ "created_at": "2022-09-03T21:24:25Z",
+ "updated_at": "2022-09-03T21:24:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.15.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.15.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.15.0",
+ "body": "- Add new special variables `ROOT_DIR` and `TASKFILE_DIR`. This was a highly requested feature ([#215](https://github.com/go-task/task/issues/215), [#857](https://github.com/go-task/task/pull/857), [Documentation](https://taskfile.dev/api/#special-variables)).\r\n- Follow symlinks on `sources` ([#826](https://github.com/go-task/task/issues/826), [#831](https://github.com/go-task/task/pull/831)).\r\n- Improvements and fixes to Bash completion ([#835](https://github.com/go-task/task/pull/835), [#844](https://github.com/go-task/task/pull/844)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/76214284/reactions",
+ "total_count": 10,
+ "+1": 10,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/73596056",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/73596056/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/73596056/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.14.1",
+ "id": 73596056,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984EYvyY",
+ "tag_name": "v3.14.1",
+ "target_commitish": "master",
+ "name": "v3.14.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-08-04T01:08:23Z",
+ "published_at": "2022-08-04T01:18:13Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620547",
+ "id": 73620547,
+ "node_id": "RA_kwDOBPZW984EY1xD",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 63183,
+ "created_at": "2022-08-04T01:11:07Z",
+ "updated_at": "2022-08-04T01:11:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620525",
+ "id": 73620525,
+ "node_id": "RA_kwDOBPZW984EY1wt",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2246683,
+ "download_count": 6154,
+ "created_at": "2022-08-04T01:11:02Z",
+ "updated_at": "2022-08-04T01:11:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620534",
+ "id": 73620534,
+ "node_id": "RA_kwDOBPZW984EY1w2",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2149081,
+ "download_count": 1509,
+ "created_at": "2022-08-04T01:11:03Z",
+ "updated_at": "2022-08-04T01:11:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620539",
+ "id": 73620539,
+ "node_id": "RA_kwDOBPZW984EY1w7",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2153004,
+ "download_count": 137,
+ "created_at": "2022-08-04T01:11:05Z",
+ "updated_at": "2022-08-04T01:11:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620543",
+ "id": 73620543,
+ "node_id": "RA_kwDOBPZW984EY1w_",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2154375,
+ "download_count": 125,
+ "created_at": "2022-08-04T01:11:06Z",
+ "updated_at": "2022-08-04T01:11:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620536",
+ "id": 73620536,
+ "node_id": "RA_kwDOBPZW984EY1w4",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2092272,
+ "download_count": 168,
+ "created_at": "2022-08-04T01:11:04Z",
+ "updated_at": "2022-08-04T01:11:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620540",
+ "id": 73620540,
+ "node_id": "RA_kwDOBPZW984EY1w8",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2238086,
+ "download_count": 951,
+ "created_at": "2022-08-04T01:11:05Z",
+ "updated_at": "2022-08-04T01:11:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620546",
+ "id": 73620546,
+ "node_id": "RA_kwDOBPZW984EY1xC",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2238657,
+ "download_count": 163,
+ "created_at": "2022-08-04T01:11:06Z",
+ "updated_at": "2022-08-04T01:11:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620535",
+ "id": 73620535,
+ "node_id": "RA_kwDOBPZW984EY1w3",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2168750,
+ "download_count": 216726,
+ "created_at": "2022-08-04T01:11:04Z",
+ "updated_at": "2022-08-04T01:11:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620541",
+ "id": 73620541,
+ "node_id": "RA_kwDOBPZW984EY1w9",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2124778,
+ "download_count": 16,
+ "created_at": "2022-08-04T01:11:05Z",
+ "updated_at": "2022-08-04T01:11:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620544",
+ "id": 73620544,
+ "node_id": "RA_kwDOBPZW984EY1xA",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2125877,
+ "download_count": 13,
+ "created_at": "2022-08-04T01:11:06Z",
+ "updated_at": "2022-08-04T01:11:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620528",
+ "id": 73620528,
+ "node_id": "RA_kwDOBPZW984EY1ww",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2070505,
+ "download_count": 42,
+ "created_at": "2022-08-04T01:11:03Z",
+ "updated_at": "2022-08-04T01:11:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620542",
+ "id": 73620542,
+ "node_id": "RA_kwDOBPZW984EY1w-",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2038570,
+ "download_count": 68,
+ "created_at": "2022-08-04T01:11:05Z",
+ "updated_at": "2022-08-04T01:11:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620545",
+ "id": 73620545,
+ "node_id": "RA_kwDOBPZW984EY1xB",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2039915,
+ "download_count": 17,
+ "created_at": "2022-08-04T01:11:06Z",
+ "updated_at": "2022-08-04T01:11:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620537",
+ "id": 73620537,
+ "node_id": "RA_kwDOBPZW984EY1w5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1982808,
+ "download_count": 5847,
+ "created_at": "2022-08-04T01:11:04Z",
+ "updated_at": "2022-08-04T01:11:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620538",
+ "id": 73620538,
+ "node_id": "RA_kwDOBPZW984EY1w6",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2239841,
+ "download_count": 145,
+ "created_at": "2022-08-04T01:11:04Z",
+ "updated_at": "2022-08-04T01:11:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620533",
+ "id": 73620533,
+ "node_id": "RA_kwDOBPZW984EY1w1",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2276065,
+ "download_count": 3203,
+ "created_at": "2022-08-04T01:11:03Z",
+ "updated_at": "2022-08-04T01:11:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620526",
+ "id": 73620526,
+ "node_id": "RA_kwDOBPZW984EY1wu",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2193122,
+ "download_count": 20,
+ "created_at": "2022-08-04T01:11:02Z",
+ "updated_at": "2022-08-04T01:11:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/73620529",
+ "id": 73620529,
+ "node_id": "RA_kwDOBPZW984EY1wx",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2080047,
+ "download_count": 29,
+ "created_at": "2022-08-04T01:11:03Z",
+ "updated_at": "2022-08-04T01:11:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.14.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.14.1",
+ "body": "- Always resolve relative include paths relative to the including Taskfile ([#822](https://github.com/go-task/task/issues/822), [#823](https://github.com/go-task/task/pull/823)).\r\n- Fix ZSH and PowerShell completions to consider all tasks instead of just the public ones (those with descriptions) ([#803](https://github.com/go-task/task/pull/803)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/73596056/reactions",
+ "total_count": 4,
+ "+1": 4,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/71592888",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/71592888/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/71592888/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.14.0",
+ "id": 71592888,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984ERGu4",
+ "tag_name": "v3.14.0",
+ "target_commitish": "master",
+ "name": "v3.14.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-07-08T18:19:42Z",
+ "published_at": "2022-07-08T18:24:27Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995378",
+ "id": 70995378,
+ "node_id": "RA_kwDOBPZW984EO02y",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 651346,
+ "created_at": "2022-07-08T18:22:29Z",
+ "updated_at": "2022-07-08T18:22:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995359",
+ "id": 70995359,
+ "node_id": "RA_kwDOBPZW984EO02f",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2194096,
+ "download_count": 5285,
+ "created_at": "2022-07-08T18:22:26Z",
+ "updated_at": "2022-07-08T18:22:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995360",
+ "id": 70995360,
+ "node_id": "RA_kwDOBPZW984EO02g",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2108518,
+ "download_count": 1214,
+ "created_at": "2022-07-08T18:22:26Z",
+ "updated_at": "2022-07-08T18:22:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995367",
+ "id": 70995367,
+ "node_id": "RA_kwDOBPZW984EO02n",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2103720,
+ "download_count": 137,
+ "created_at": "2022-07-08T18:22:27Z",
+ "updated_at": "2022-07-08T18:22:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995372",
+ "id": 70995372,
+ "node_id": "RA_kwDOBPZW984EO02s",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2107065,
+ "download_count": 126,
+ "created_at": "2022-07-08T18:22:28Z",
+ "updated_at": "2022-07-08T18:22:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995350",
+ "id": 70995350,
+ "node_id": "RA_kwDOBPZW984EO02W",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2044308,
+ "download_count": 159,
+ "created_at": "2022-07-08T18:22:24Z",
+ "updated_at": "2022-07-08T18:22:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995366",
+ "id": 70995366,
+ "node_id": "RA_kwDOBPZW984EO02m",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2186486,
+ "download_count": 5235,
+ "created_at": "2022-07-08T18:22:27Z",
+ "updated_at": "2022-07-08T18:22:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995373",
+ "id": 70995373,
+ "node_id": "RA_kwDOBPZW984EO02t",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2186739,
+ "download_count": 477,
+ "created_at": "2022-07-08T18:22:28Z",
+ "updated_at": "2022-07-08T18:22:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995364",
+ "id": 70995364,
+ "node_id": "RA_kwDOBPZW984EO02k",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2118880,
+ "download_count": 1458042,
+ "created_at": "2022-07-08T18:22:27Z",
+ "updated_at": "2022-07-08T18:22:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995370",
+ "id": 70995370,
+ "node_id": "RA_kwDOBPZW984EO02q",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2086040,
+ "download_count": 19,
+ "created_at": "2022-07-08T18:22:27Z",
+ "updated_at": "2022-07-08T18:22:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995376",
+ "id": 70995376,
+ "node_id": "RA_kwDOBPZW984EO02w",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2086266,
+ "download_count": 12,
+ "created_at": "2022-07-08T18:22:28Z",
+ "updated_at": "2022-07-08T18:22:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995362",
+ "id": 70995362,
+ "node_id": "RA_kwDOBPZW984EO02i",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2026842,
+ "download_count": 276,
+ "created_at": "2022-07-08T18:22:26Z",
+ "updated_at": "2022-07-08T18:22:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995369",
+ "id": 70995369,
+ "node_id": "RA_kwDOBPZW984EO02p",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2000624,
+ "download_count": 94,
+ "created_at": "2022-07-08T18:22:27Z",
+ "updated_at": "2022-07-08T18:22:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995375",
+ "id": 70995375,
+ "node_id": "RA_kwDOBPZW984EO02v",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2001806,
+ "download_count": 19,
+ "created_at": "2022-07-08T18:22:28Z",
+ "updated_at": "2022-07-08T18:22:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995353",
+ "id": 70995353,
+ "node_id": "RA_kwDOBPZW984EO02Z",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1943374,
+ "download_count": 2199,
+ "created_at": "2022-07-08T18:22:25Z",
+ "updated_at": "2022-07-08T18:22:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995354",
+ "id": 70995354,
+ "node_id": "RA_kwDOBPZW984EO02a",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2013484,
+ "download_count": 247,
+ "created_at": "2022-07-08T18:22:25Z",
+ "updated_at": "2022-07-08T18:22:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995349",
+ "id": 70995349,
+ "node_id": "RA_kwDOBPZW984EO02V",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2051686,
+ "download_count": 2519,
+ "created_at": "2022-07-08T18:22:24Z",
+ "updated_at": "2022-07-08T18:22:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995356",
+ "id": 70995356,
+ "node_id": "RA_kwDOBPZW984EO02c",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1975628,
+ "download_count": 15,
+ "created_at": "2022-07-08T18:22:25Z",
+ "updated_at": "2022-07-08T18:22:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/70995357",
+ "id": 70995357,
+ "node_id": "RA_kwDOBPZW984EO02d",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1881689,
+ "download_count": 38,
+ "created_at": "2022-07-08T18:22:26Z",
+ "updated_at": "2022-07-08T18:22:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.14.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.14.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.14.0",
+ "body": "- Add ability to override the `.task` directory location with the `TASK_TEMP_DIR` environment variable.\r\n- Allow to override Task colors using environment variables: `TASK_COLOR_RESET`, `TASK_COLOR_BLUE`, `TASK_COLOR_GREEN`, `TASK_COLOR_CYAN`, `TASK_COLOR_YELLOW`, `TASK_COLOR_MAGENTA` and `TASK_COLOR_RED` ([#568](https://github.com/go-task/task/pull/568), [#792](https://github.com/go-task/task/pull/792)).\r\n- Fixed bug when using the `output: group` mode where STDOUT and STDERR were being print in separated blocks instead of in the right order ([#779](https://github.com/go-task/task/issues/779)).\r\n- Starting on this release, ARM architecture binaries are been released to Snap as well ([#795](https://github.com/go-task/task/issues/795)).\r\n- i386 binaries won't be available anymore on Snap because Ubuntu removed the support for this architecture.\r\n- Upgrade mvdan.cc/sh, which fixes a bug with associative arrays ([#785](https://github.com/go-task/task/issues/785), [mvdan/sh#884](https://github.com/mvdan/sh/issues/884), [mvdan/sh#893](https://github.com/mvdan/sh/pull/893)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/71592888/reactions",
+ "total_count": 6,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 6,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/69349352",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/69349352/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/69349352/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.13.0",
+ "id": 69349352,
+ "author": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984EIi_o",
+ "tag_name": "v3.13.0",
+ "target_commitish": "master",
+ "name": "v3.13.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-06-14T00:08:49Z",
+ "published_at": "2022-06-14T00:16:05Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388789",
+ "id": 68388789,
+ "node_id": "RA_kwDOBPZW984EE4e1",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 26126,
+ "created_at": "2022-06-14T00:11:51Z",
+ "updated_at": "2022-06-14T00:11:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388797",
+ "id": 68388797,
+ "node_id": "RA_kwDOBPZW984EE4e9",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2186333,
+ "download_count": 4170,
+ "created_at": "2022-06-14T00:11:53Z",
+ "updated_at": "2022-06-14T00:11:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388809",
+ "id": 68388809,
+ "node_id": "RA_kwDOBPZW984EE4fJ",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2101269,
+ "download_count": 1055,
+ "created_at": "2022-06-14T00:11:56Z",
+ "updated_at": "2022-06-14T00:11:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388804",
+ "id": 68388804,
+ "node_id": "RA_kwDOBPZW984EE4fE",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2095086,
+ "download_count": 131,
+ "created_at": "2022-06-14T00:11:55Z",
+ "updated_at": "2022-06-14T00:11:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388802",
+ "id": 68388802,
+ "node_id": "RA_kwDOBPZW984EE4fC",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2094655,
+ "download_count": 123,
+ "created_at": "2022-06-14T00:11:54Z",
+ "updated_at": "2022-06-14T00:11:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388788",
+ "id": 68388788,
+ "node_id": "RA_kwDOBPZW984EE4e0",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2036346,
+ "download_count": 127,
+ "created_at": "2022-06-14T00:11:51Z",
+ "updated_at": "2022-06-14T00:11:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388805",
+ "id": 68388805,
+ "node_id": "RA_kwDOBPZW984EE4fF",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2179836,
+ "download_count": 7196,
+ "created_at": "2022-06-14T00:11:55Z",
+ "updated_at": "2022-06-14T00:11:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388800",
+ "id": 68388800,
+ "node_id": "RA_kwDOBPZW984EE4fA",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2181219,
+ "download_count": 185,
+ "created_at": "2022-06-14T00:11:54Z",
+ "updated_at": "2022-06-14T00:11:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388794",
+ "id": 68388794,
+ "node_id": "RA_kwDOBPZW984EE4e6",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2111613,
+ "download_count": 60103,
+ "created_at": "2022-06-14T00:11:53Z",
+ "updated_at": "2022-06-14T00:11:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388806",
+ "id": 68388806,
+ "node_id": "RA_kwDOBPZW984EE4fG",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2072700,
+ "download_count": 15,
+ "created_at": "2022-06-14T00:11:55Z",
+ "updated_at": "2022-06-14T00:11:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388801",
+ "id": 68388801,
+ "node_id": "RA_kwDOBPZW984EE4fB",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2072167,
+ "download_count": 13,
+ "created_at": "2022-06-14T00:11:54Z",
+ "updated_at": "2022-06-14T00:11:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388790",
+ "id": 68388790,
+ "node_id": "RA_kwDOBPZW984EE4e2",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2020024,
+ "download_count": 17,
+ "created_at": "2022-06-14T00:11:52Z",
+ "updated_at": "2022-06-14T00:11:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388803",
+ "id": 68388803,
+ "node_id": "RA_kwDOBPZW984EE4fD",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1994912,
+ "download_count": 84,
+ "created_at": "2022-06-14T00:11:54Z",
+ "updated_at": "2022-06-14T00:11:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388807",
+ "id": 68388807,
+ "node_id": "RA_kwDOBPZW984EE4fH",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1995161,
+ "download_count": 13,
+ "created_at": "2022-06-14T00:11:55Z",
+ "updated_at": "2022-06-14T00:11:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388796",
+ "id": 68388796,
+ "node_id": "RA_kwDOBPZW984EE4e8",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1938476,
+ "download_count": 1129,
+ "created_at": "2022-06-14T00:11:53Z",
+ "updated_at": "2022-06-14T00:11:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388795",
+ "id": 68388795,
+ "node_id": "RA_kwDOBPZW984EE4e7",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2006349,
+ "download_count": 143,
+ "created_at": "2022-06-14T00:11:53Z",
+ "updated_at": "2022-06-14T00:11:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388793",
+ "id": 68388793,
+ "node_id": "RA_kwDOBPZW984EE4e5",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2044429,
+ "download_count": 2709,
+ "created_at": "2022-06-14T00:11:52Z",
+ "updated_at": "2022-06-14T00:11:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388792",
+ "id": 68388792,
+ "node_id": "RA_kwDOBPZW984EE4e4",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1970853,
+ "download_count": 19,
+ "created_at": "2022-06-14T00:11:52Z",
+ "updated_at": "2022-06-14T00:11:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/68388791",
+ "id": 68388791,
+ "node_id": "RA_kwDOBPZW984EE4e3",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "task-bot",
+ "id": 106601941,
+ "node_id": "U_kgDOBlqd1Q",
+ "avatar_url": "https://avatars.githubusercontent.com/u/106601941?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/task-bot",
+ "html_url": "https://github.com/task-bot",
+ "followers_url": "https://api.github.com/users/task-bot/followers",
+ "following_url": "https://api.github.com/users/task-bot/following{/other_user}",
+ "gists_url": "https://api.github.com/users/task-bot/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/task-bot/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/task-bot/subscriptions",
+ "organizations_url": "https://api.github.com/users/task-bot/orgs",
+ "repos_url": "https://api.github.com/users/task-bot/repos",
+ "events_url": "https://api.github.com/users/task-bot/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/task-bot/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1878240,
+ "download_count": 36,
+ "created_at": "2022-06-14T00:11:52Z",
+ "updated_at": "2022-06-14T00:11:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.13.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.13.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.13.0",
+ "body": "- Added `-n` as an alias to `--dry` ([#776](https://github.com/go-task/task/issues/776), [#777](https://github.com/go-task/task/pull/777)).\r\n- Fix behavior of interrupt (SIGINT, SIGTERM) signals. Task will now give time for the processes running to do cleanup work ([#458](https://github.com/go-task/task/issues/458), [#479](https://github.com/go-task/task/pull/479), [#728](https://github.com/go-task/task/issues/728)).\r\n- Add new `--exit-code` (`-x`) flag that will pass-through the exit form the command being ran ([#755](https://github.com/go-task/task/pull/755)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/69349352/reactions",
+ "total_count": 7,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 7,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/66516728",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/66516728/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/66516728/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.12.1",
+ "id": 66516728,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984D9vb4",
+ "tag_name": "v3.12.1",
+ "target_commitish": "master",
+ "name": "v3.12.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-05-10T21:00:56Z",
+ "published_at": "2022-05-10T21:04:05Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100469",
+ "id": 65100469,
+ "node_id": "RA_kwDOBPZW984D4Vq1",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 33820,
+ "created_at": "2022-05-10T21:03:12Z",
+ "updated_at": "2022-05-10T21:03:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100470",
+ "id": 65100470,
+ "node_id": "RA_kwDOBPZW984D4Vq2",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2130183,
+ "download_count": 6174,
+ "created_at": "2022-05-10T21:03:12Z",
+ "updated_at": "2022-05-10T21:03:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100476",
+ "id": 65100476,
+ "node_id": "RA_kwDOBPZW984D4Vq8",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2042304,
+ "download_count": 1062,
+ "created_at": "2022-05-10T21:03:14Z",
+ "updated_at": "2022-05-10T21:03:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100489",
+ "id": 65100489,
+ "node_id": "RA_kwDOBPZW984D4VrJ",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2045204,
+ "download_count": 131,
+ "created_at": "2022-05-10T21:03:16Z",
+ "updated_at": "2022-05-10T21:03:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100486",
+ "id": 65100486,
+ "node_id": "RA_kwDOBPZW984D4VrG",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2049225,
+ "download_count": 125,
+ "created_at": "2022-05-10T21:03:16Z",
+ "updated_at": "2022-05-10T21:03:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100479",
+ "id": 65100479,
+ "node_id": "RA_kwDOBPZW984D4Vq_",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1983892,
+ "download_count": 135,
+ "created_at": "2022-05-10T21:03:14Z",
+ "updated_at": "2022-05-10T21:03:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100484",
+ "id": 65100484,
+ "node_id": "RA_kwDOBPZW984D4VrE",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2127090,
+ "download_count": 139959,
+ "created_at": "2022-05-10T21:03:15Z",
+ "updated_at": "2022-05-10T21:03:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100485",
+ "id": 65100485,
+ "node_id": "RA_kwDOBPZW984D4VrF",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2128346,
+ "download_count": 11922,
+ "created_at": "2022-05-10T21:03:15Z",
+ "updated_at": "2022-05-10T21:03:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100478",
+ "id": 65100478,
+ "node_id": "RA_kwDOBPZW984D4Vq-",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2056529,
+ "download_count": 97616,
+ "created_at": "2022-05-10T21:03:14Z",
+ "updated_at": "2022-05-10T21:03:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100488",
+ "id": 65100488,
+ "node_id": "RA_kwDOBPZW984D4VrI",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2023314,
+ "download_count": 22,
+ "created_at": "2022-05-10T21:03:16Z",
+ "updated_at": "2022-05-10T21:03:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100474",
+ "id": 65100474,
+ "node_id": "RA_kwDOBPZW984D4Vq6",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2024455,
+ "download_count": 16,
+ "created_at": "2022-05-10T21:03:14Z",
+ "updated_at": "2022-05-10T21:03:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100477",
+ "id": 65100477,
+ "node_id": "RA_kwDOBPZW984D4Vq9",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1967500,
+ "download_count": 738,
+ "created_at": "2022-05-10T21:03:14Z",
+ "updated_at": "2022-05-10T21:03:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100487",
+ "id": 65100487,
+ "node_id": "RA_kwDOBPZW984D4VrH",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1939514,
+ "download_count": 88,
+ "created_at": "2022-05-10T21:03:16Z",
+ "updated_at": "2022-05-10T21:03:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100490",
+ "id": 65100490,
+ "node_id": "RA_kwDOBPZW984D4VrK",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1941157,
+ "download_count": 228,
+ "created_at": "2022-05-10T21:03:17Z",
+ "updated_at": "2022-05-10T21:03:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100473",
+ "id": 65100473,
+ "node_id": "RA_kwDOBPZW984D4Vq5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1881713,
+ "download_count": 1710,
+ "created_at": "2022-05-10T21:03:13Z",
+ "updated_at": "2022-05-10T21:03:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100482",
+ "id": 65100482,
+ "node_id": "RA_kwDOBPZW984D4VrC",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1949437,
+ "download_count": 146,
+ "created_at": "2022-05-10T21:03:15Z",
+ "updated_at": "2022-05-10T21:03:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100472",
+ "id": 65100472,
+ "node_id": "RA_kwDOBPZW984D4Vq4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1983437,
+ "download_count": 3145,
+ "created_at": "2022-05-10T21:03:13Z",
+ "updated_at": "2022-05-10T21:03:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100471",
+ "id": 65100471,
+ "node_id": "RA_kwDOBPZW984D4Vq3",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1912769,
+ "download_count": 18,
+ "created_at": "2022-05-10T21:03:13Z",
+ "updated_at": "2022-05-10T21:03:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/65100481",
+ "id": 65100481,
+ "node_id": "RA_kwDOBPZW984D4VrB",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1820117,
+ "download_count": 36,
+ "created_at": "2022-05-10T21:03:15Z",
+ "updated_at": "2022-05-10T21:03:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.12.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.12.1",
+ "body": "- Fixed bug where, on Windows, variables were ending with `\\r` because we were only removing the final `\\n` but not `\\r\\n` ([#717](https://github.com/go-task/task/issues/717)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/66516728/reactions",
+ "total_count": 5,
+ "+1": 3,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 2,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/63334399",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/63334399/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/63334399/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.12.0",
+ "id": 63334399,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Dxmf_",
+ "tag_name": "v3.12.0",
+ "target_commitish": "master",
+ "name": "v3.12.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-04-01T00:45:05Z",
+ "published_at": "2022-04-01T00:55:50Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210594",
+ "id": 61210594,
+ "node_id": "RA_kwDOBPZW984Dpf_i",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 38558,
+ "created_at": "2022-04-01T00:48:17Z",
+ "updated_at": "2022-04-01T00:48:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210615",
+ "id": 61210615,
+ "node_id": "RA_kwDOBPZW984Dpf_3",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2129546,
+ "download_count": 5696,
+ "created_at": "2022-04-01T00:48:21Z",
+ "updated_at": "2022-04-01T00:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210620",
+ "id": 61210620,
+ "node_id": "RA_kwDOBPZW984Dpf_8",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2041895,
+ "download_count": 1030,
+ "created_at": "2022-04-01T00:48:22Z",
+ "updated_at": "2022-04-01T00:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210602",
+ "id": 61210602,
+ "node_id": "RA_kwDOBPZW984Dpf_q",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2046472,
+ "download_count": 134,
+ "created_at": "2022-04-01T00:48:19Z",
+ "updated_at": "2022-04-01T00:48:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210606",
+ "id": 61210606,
+ "node_id": "RA_kwDOBPZW984Dpf_u",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2049210,
+ "download_count": 130,
+ "created_at": "2022-04-01T00:48:20Z",
+ "updated_at": "2022-04-01T00:48:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210619",
+ "id": 61210619,
+ "node_id": "RA_kwDOBPZW984Dpf_7",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1983656,
+ "download_count": 152,
+ "created_at": "2022-04-01T00:48:22Z",
+ "updated_at": "2022-04-01T00:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210600",
+ "id": 61210600,
+ "node_id": "RA_kwDOBPZW984Dpf_o",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2126628,
+ "download_count": 8380,
+ "created_at": "2022-04-01T00:48:19Z",
+ "updated_at": "2022-04-01T00:48:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210605",
+ "id": 61210605,
+ "node_id": "RA_kwDOBPZW984Dpf_t",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2128373,
+ "download_count": 179,
+ "created_at": "2022-04-01T00:48:20Z",
+ "updated_at": "2022-04-01T00:48:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210608",
+ "id": 61210608,
+ "node_id": "RA_kwDOBPZW984Dpf_w",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2056117,
+ "download_count": 80854,
+ "created_at": "2022-04-01T00:48:20Z",
+ "updated_at": "2022-04-01T00:48:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210603",
+ "id": 61210603,
+ "node_id": "RA_kwDOBPZW984Dpf_r",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 2022378,
+ "download_count": 24,
+ "created_at": "2022-04-01T00:48:19Z",
+ "updated_at": "2022-04-01T00:48:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210599",
+ "id": 61210599,
+ "node_id": "RA_kwDOBPZW984Dpf_n",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 2024139,
+ "download_count": 16,
+ "created_at": "2022-04-01T00:48:18Z",
+ "updated_at": "2022-04-01T00:48:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210614",
+ "id": 61210614,
+ "node_id": "RA_kwDOBPZW984Dpf_2",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1967205,
+ "download_count": 23,
+ "created_at": "2022-04-01T00:48:21Z",
+ "updated_at": "2022-04-01T00:48:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210597",
+ "id": 61210597,
+ "node_id": "RA_kwDOBPZW984Dpf_l",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1938954,
+ "download_count": 141,
+ "created_at": "2022-04-01T00:48:18Z",
+ "updated_at": "2022-04-01T00:48:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210604",
+ "id": 61210604,
+ "node_id": "RA_kwDOBPZW984Dpf_s",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1940501,
+ "download_count": 32,
+ "created_at": "2022-04-01T00:48:20Z",
+ "updated_at": "2022-04-01T00:48:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210593",
+ "id": 61210593,
+ "node_id": "RA_kwDOBPZW984Dpf_h",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1881202,
+ "download_count": 431,
+ "created_at": "2022-04-01T00:48:17Z",
+ "updated_at": "2022-04-01T00:48:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210611",
+ "id": 61210611,
+ "node_id": "RA_kwDOBPZW984Dpf_z",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1949194,
+ "download_count": 253,
+ "created_at": "2022-04-01T00:48:20Z",
+ "updated_at": "2022-04-01T00:48:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210596",
+ "id": 61210596,
+ "node_id": "RA_kwDOBPZW984Dpf_k",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1983200,
+ "download_count": 2151,
+ "created_at": "2022-04-01T00:48:18Z",
+ "updated_at": "2022-04-01T00:48:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210617",
+ "id": 61210617,
+ "node_id": "RA_kwDOBPZW984Dpf_5",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1912671,
+ "download_count": 19,
+ "created_at": "2022-04-01T00:48:22Z",
+ "updated_at": "2022-04-01T00:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/61210613",
+ "id": 61210613,
+ "node_id": "RA_kwDOBPZW984Dpf_1",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1819959,
+ "download_count": 43,
+ "created_at": "2022-04-01T00:48:21Z",
+ "updated_at": "2022-04-01T00:48:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.12.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.12.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.12.0",
+ "body": "- The `--list` and `--list-all` flags can now be combined with the `--silent` flag to print the task names only, without their description ([#691](https://github.com/go-task/task/pull/691)).\r\n- Added support for multi-level inclusion of Taskfiles. This means that included Taskfiles can also include other Taskfiles. Before this was limited to one level ([#390](https://github.com/go-task/task/issues/390), [#623](https://github.com/go-task/task/discussions/623), [#656](https://github.com/go-task/task/pull/656)).\r\n- Add ability to specify vars when including a Taskfile. [Check out the documentation](https://taskfile.dev/#/usage?id=vars-of-included-taskfiles) for more information ([#677](https://github.com/go-task/task/pull/677)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/63334399/reactions",
+ "total_count": 20,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 3,
+ "rocket": 9,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/59979443",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/59979443/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/59979443/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.11.0",
+ "id": 59979443,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984Dkzaz",
+ "tag_name": "v3.11.0",
+ "target_commitish": "master",
+ "name": "v3.11.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-02-19T22:40:51Z",
+ "published_at": "2022-02-19T22:45:12Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367697",
+ "id": 57367697,
+ "node_id": "RA_kwDOBPZW984Da1yR",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 50470,
+ "created_at": "2022-02-19T22:43:06Z",
+ "updated_at": "2022-02-19T22:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367708",
+ "id": 57367708,
+ "node_id": "RA_kwDOBPZW984Da1yc",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2020557,
+ "download_count": 5571,
+ "created_at": "2022-02-19T22:43:08Z",
+ "updated_at": "2022-02-19T22:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367700",
+ "id": 57367700,
+ "node_id": "RA_kwDOBPZW984Da1yU",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1985722,
+ "download_count": 825,
+ "created_at": "2022-02-19T22:43:06Z",
+ "updated_at": "2022-02-19T22:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367710",
+ "id": 57367710,
+ "node_id": "RA_kwDOBPZW984Da1ye",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1851150,
+ "download_count": 139,
+ "created_at": "2022-02-19T22:43:09Z",
+ "updated_at": "2022-02-19T22:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367714",
+ "id": 57367714,
+ "node_id": "RA_kwDOBPZW984Da1yi",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1848654,
+ "download_count": 132,
+ "created_at": "2022-02-19T22:43:10Z",
+ "updated_at": "2022-02-19T22:43:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367707",
+ "id": 57367707,
+ "node_id": "RA_kwDOBPZW984Da1yb",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1848818,
+ "download_count": 139,
+ "created_at": "2022-02-19T22:43:08Z",
+ "updated_at": "2022-02-19T22:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367713",
+ "id": 57367713,
+ "node_id": "RA_kwDOBPZW984Da1yh",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1949894,
+ "download_count": 2167,
+ "created_at": "2022-02-19T22:43:09Z",
+ "updated_at": "2022-02-19T22:43:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367716",
+ "id": 57367716,
+ "node_id": "RA_kwDOBPZW984Da1yk",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1947551,
+ "download_count": 281,
+ "created_at": "2022-02-19T22:43:10Z",
+ "updated_at": "2022-02-19T22:43:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367701",
+ "id": 57367701,
+ "node_id": "RA_kwDOBPZW984Da1yV",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1945804,
+ "download_count": 116248,
+ "created_at": "2022-02-19T22:43:07Z",
+ "updated_at": "2022-02-19T22:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367712",
+ "id": 57367712,
+ "node_id": "RA_kwDOBPZW984Da1yg",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1841112,
+ "download_count": 18,
+ "created_at": "2022-02-19T22:43:09Z",
+ "updated_at": "2022-02-19T22:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367711",
+ "id": 57367711,
+ "node_id": "RA_kwDOBPZW984Da1yf",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1839998,
+ "download_count": 19,
+ "created_at": "2022-02-19T22:43:09Z",
+ "updated_at": "2022-02-19T22:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367702",
+ "id": 57367702,
+ "node_id": "RA_kwDOBPZW984Da1yW",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1839101,
+ "download_count": 50,
+ "created_at": "2022-02-19T22:43:07Z",
+ "updated_at": "2022-02-19T22:43:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367709",
+ "id": 57367709,
+ "node_id": "RA_kwDOBPZW984Da1yd",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1794502,
+ "download_count": 181,
+ "created_at": "2022-02-19T22:43:08Z",
+ "updated_at": "2022-02-19T22:43:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367715",
+ "id": 57367715,
+ "node_id": "RA_kwDOBPZW984Da1yj",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1791146,
+ "download_count": 18,
+ "created_at": "2022-02-19T22:43:10Z",
+ "updated_at": "2022-02-19T22:43:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367704",
+ "id": 57367704,
+ "node_id": "RA_kwDOBPZW984Da1yY",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1790476,
+ "download_count": 546,
+ "created_at": "2022-02-19T22:43:07Z",
+ "updated_at": "2022-02-19T22:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367698",
+ "id": 57367698,
+ "node_id": "RA_kwDOBPZW984Da1yS",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1881655,
+ "download_count": 172,
+ "created_at": "2022-02-19T22:43:06Z",
+ "updated_at": "2022-02-19T22:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367705",
+ "id": 57367705,
+ "node_id": "RA_kwDOBPZW984Da1yZ",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1935652,
+ "download_count": 2326,
+ "created_at": "2022-02-19T22:43:07Z",
+ "updated_at": "2022-02-19T22:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367706",
+ "id": 57367706,
+ "node_id": "RA_kwDOBPZW984Da1ya",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1850340,
+ "download_count": 22,
+ "created_at": "2022-02-19T22:43:08Z",
+ "updated_at": "2022-02-19T22:43:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/57367699",
+ "id": 57367699,
+ "node_id": "RA_kwDOBPZW984Da1yT",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1781782,
+ "download_count": 46,
+ "created_at": "2022-02-19T22:43:06Z",
+ "updated_at": "2022-02-19T22:43:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.11.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.11.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.11.0",
+ "body": "- Task now supports printing begin and end messages when using the `group` output mode, useful for grouping tasks in CI systems. [Check out the documentation](http://taskfile.dev/#/usage?id=output-syntax) for more information ([#647](https://github.com/go-task/task/issues/647), [#651](https://github.com/go-task/task/pull/651)).\r\n- Add `Taskfile.dist.yml` and `Taskfile.dist.yaml` to the supported file name list. [Check out the documentation](https://taskfile.dev/#/usage?id=supported-file-names) for more information ([#498](https://github.com/go-task/task/issues/498), [#666](https://github.com/go-task/task/pull/666)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/59979443/reactions",
+ "total_count": 7,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 5,
+ "rocket": 2,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/56410899",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/56410899/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/56410899/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.10.0",
+ "id": 56410899,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984DXMMT",
+ "tag_name": "v3.10.0",
+ "target_commitish": "master",
+ "name": "v3.10.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-01-04T21:20:03Z",
+ "published_at": "2022-01-04T21:26:56Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205677",
+ "id": 53205677,
+ "node_id": "RA_kwDOBPZW984DK9qt",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 49665,
+ "created_at": "2022-01-04T21:22:42Z",
+ "updated_at": "2022-01-04T21:22:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205685",
+ "id": 53205685,
+ "node_id": "RA_kwDOBPZW984DK9q1",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2016268,
+ "download_count": 4559,
+ "created_at": "2022-01-04T21:22:44Z",
+ "updated_at": "2022-01-04T21:22:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205687",
+ "id": 53205687,
+ "node_id": "RA_kwDOBPZW984DK9q3",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1983235,
+ "download_count": 739,
+ "created_at": "2022-01-04T21:22:45Z",
+ "updated_at": "2022-01-04T21:22:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205698",
+ "id": 53205698,
+ "node_id": "RA_kwDOBPZW984DK9rC",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1845380,
+ "download_count": 138,
+ "created_at": "2022-01-04T21:22:47Z",
+ "updated_at": "2022-01-04T21:22:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205691",
+ "id": 53205691,
+ "node_id": "RA_kwDOBPZW984DK9q7",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1842708,
+ "download_count": 132,
+ "created_at": "2022-01-04T21:22:46Z",
+ "updated_at": "2022-01-04T21:22:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205678",
+ "id": 53205678,
+ "node_id": "RA_kwDOBPZW984DK9qu",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1845004,
+ "download_count": 533,
+ "created_at": "2022-01-04T21:22:43Z",
+ "updated_at": "2022-01-04T21:22:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205697",
+ "id": 53205697,
+ "node_id": "RA_kwDOBPZW984DK9rB",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1945264,
+ "download_count": 10187,
+ "created_at": "2022-01-04T21:22:47Z",
+ "updated_at": "2022-01-04T21:22:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205696",
+ "id": 53205696,
+ "node_id": "RA_kwDOBPZW984DK9rA",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1941267,
+ "download_count": 187,
+ "created_at": "2022-01-04T21:22:47Z",
+ "updated_at": "2022-01-04T21:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205686",
+ "id": 53205686,
+ "node_id": "RA_kwDOBPZW984DK9q2",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1943178,
+ "download_count": 132460,
+ "created_at": "2022-01-04T21:22:45Z",
+ "updated_at": "2022-01-04T21:22:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205689",
+ "id": 53205689,
+ "node_id": "RA_kwDOBPZW984DK9q5",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1836018,
+ "download_count": 26,
+ "created_at": "2022-01-04T21:22:45Z",
+ "updated_at": "2022-01-04T21:22:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205693",
+ "id": 53205693,
+ "node_id": "RA_kwDOBPZW984DK9q9",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1834020,
+ "download_count": 20,
+ "created_at": "2022-01-04T21:22:46Z",
+ "updated_at": "2022-01-04T21:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205690",
+ "id": 53205690,
+ "node_id": "RA_kwDOBPZW984DK9q6",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1835973,
+ "download_count": 27,
+ "created_at": "2022-01-04T21:22:46Z",
+ "updated_at": "2022-01-04T21:22:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205694",
+ "id": 53205694,
+ "node_id": "RA_kwDOBPZW984DK9q-",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1789300,
+ "download_count": 36,
+ "created_at": "2022-01-04T21:22:47Z",
+ "updated_at": "2022-01-04T21:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205699",
+ "id": 53205699,
+ "node_id": "RA_kwDOBPZW984DK9rD",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1786006,
+ "download_count": 24,
+ "created_at": "2022-01-04T21:22:48Z",
+ "updated_at": "2022-01-04T21:22:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205681",
+ "id": 53205681,
+ "node_id": "RA_kwDOBPZW984DK9qx",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1787330,
+ "download_count": 293,
+ "created_at": "2022-01-04T21:22:43Z",
+ "updated_at": "2022-01-04T21:22:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205682",
+ "id": 53205682,
+ "node_id": "RA_kwDOBPZW984DK9qy",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1878577,
+ "download_count": 182,
+ "created_at": "2022-01-04T21:22:44Z",
+ "updated_at": "2022-01-04T21:22:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205688",
+ "id": 53205688,
+ "node_id": "RA_kwDOBPZW984DK9q4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1931938,
+ "download_count": 2228,
+ "created_at": "2022-01-04T21:22:45Z",
+ "updated_at": "2022-01-04T21:22:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205684",
+ "id": 53205684,
+ "node_id": "RA_kwDOBPZW984DK9q0",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1848007,
+ "download_count": 25,
+ "created_at": "2022-01-04T21:22:44Z",
+ "updated_at": "2022-01-04T21:22:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/53205676",
+ "id": 53205676,
+ "node_id": "RA_kwDOBPZW984DK9qs",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1777739,
+ "download_count": 41,
+ "created_at": "2022-01-04T21:22:42Z",
+ "updated_at": "2022-01-04T21:22:44Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.10.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.10.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.10.0",
+ "body": "- A new `--list-all` (alias `-a`) flag is now available. It's similar to the existing `--list` (`-l`) but prints all tasks, even those without a description ([#383](https://github.com/go-task/task/issues/383), [#401](https://github.com/go-task/task/pull/401)).\r\n- It's now possible to schedule cleanup commands to run once a task finishes with the `defer:` keyword ([Documentation](https://taskfile.dev/#/usage?id=doing-task-cleanup-with-defer), [#475](https://github.com/go-task/task/issues/475), [#626](https://github.com/go-task/task/pull/626)).\r\n- Remove long deprecated and undocumented `$` variable prefix and `^` command prefix ([#642](https://github.com/go-task/task/issues/642), [#644](https://github.com/go-task/task/issues/644), [#645](https://github.com/go-task/task/pull/645)).\r\n- Add support for `.yaml` extension (as an alternative to `.yml`). This was requested multiple times throughout the years. Enjoy! ([#183](https://github.com/go-task/task/issues/183), [#184](https://github.com/go-task/task/pull/184), [#369](https://github.com/go-task/task/issues/369), [#584](https://github.com/go-task/task/issues/584), [#621](https://github.com/go-task/task/pull/621)).\r\n- Fixed error when computing a variable when the task directory do not exist yet ([#481](https://github.com/go-task/task/issues/481), [#579](https://github.com/go-task/task/pull/579)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/56410899/reactions",
+ "total_count": 6,
+ "+1": 1,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 1,
+ "confused": 0,
+ "heart": 4,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/54492225",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/54492225/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/54492225/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.9.2",
+ "id": 54492225,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984DP3xB",
+ "tag_name": "v3.9.2",
+ "target_commitish": "master",
+ "name": "v3.9.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-12-02T12:48:36Z",
+ "published_at": "2021-12-02T12:52:58Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828228",
+ "id": 50828228,
+ "node_id": "RA_kwDOBPZW984DB5PE",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 25594,
+ "created_at": "2021-12-02T12:50:55Z",
+ "updated_at": "2021-12-02T12:50:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828251",
+ "id": 50828251,
+ "node_id": "RA_kwDOBPZW984DB5Pb",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2014774,
+ "download_count": 2922,
+ "created_at": "2021-12-02T12:50:58Z",
+ "updated_at": "2021-12-02T12:50:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828244",
+ "id": 50828244,
+ "node_id": "RA_kwDOBPZW984DB5PU",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1982170,
+ "download_count": 427,
+ "created_at": "2021-12-02T12:50:58Z",
+ "updated_at": "2021-12-02T12:50:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828236",
+ "id": 50828236,
+ "node_id": "RA_kwDOBPZW984DB5PM",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1844374,
+ "download_count": 133,
+ "created_at": "2021-12-02T12:50:56Z",
+ "updated_at": "2021-12-02T12:50:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828234",
+ "id": 50828234,
+ "node_id": "RA_kwDOBPZW984DB5PK",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1841525,
+ "download_count": 131,
+ "created_at": "2021-12-02T12:50:56Z",
+ "updated_at": "2021-12-02T12:50:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828254",
+ "id": 50828254,
+ "node_id": "RA_kwDOBPZW984DB5Pe",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1844208,
+ "download_count": 140,
+ "created_at": "2021-12-02T12:50:59Z",
+ "updated_at": "2021-12-02T12:50:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828237",
+ "id": 50828237,
+ "node_id": "RA_kwDOBPZW984DB5PN",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1943820,
+ "download_count": 302,
+ "created_at": "2021-12-02T12:50:57Z",
+ "updated_at": "2021-12-02T12:50:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828238",
+ "id": 50828238,
+ "node_id": "RA_kwDOBPZW984DB5PO",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1939541,
+ "download_count": 151,
+ "created_at": "2021-12-02T12:50:57Z",
+ "updated_at": "2021-12-02T12:50:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828249",
+ "id": 50828249,
+ "node_id": "RA_kwDOBPZW984DB5PZ",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1941661,
+ "download_count": 59066,
+ "created_at": "2021-12-02T12:50:58Z",
+ "updated_at": "2021-12-02T12:50:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828239",
+ "id": 50828239,
+ "node_id": "RA_kwDOBPZW984DB5PP",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1835058,
+ "download_count": 27,
+ "created_at": "2021-12-02T12:50:57Z",
+ "updated_at": "2021-12-02T12:50:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828231",
+ "id": 50828231,
+ "node_id": "RA_kwDOBPZW984DB5PH",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1832953,
+ "download_count": 23,
+ "created_at": "2021-12-02T12:50:55Z",
+ "updated_at": "2021-12-02T12:50:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828255",
+ "id": 50828255,
+ "node_id": "RA_kwDOBPZW984DB5Pf",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1835178,
+ "download_count": 23,
+ "created_at": "2021-12-02T12:50:59Z",
+ "updated_at": "2021-12-02T12:51:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828235",
+ "id": 50828235,
+ "node_id": "RA_kwDOBPZW984DB5PL",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1787822,
+ "download_count": 28,
+ "created_at": "2021-12-02T12:50:56Z",
+ "updated_at": "2021-12-02T12:50:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828232",
+ "id": 50828232,
+ "node_id": "RA_kwDOBPZW984DB5PI",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1784660,
+ "download_count": 24,
+ "created_at": "2021-12-02T12:50:56Z",
+ "updated_at": "2021-12-02T12:50:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828247",
+ "id": 50828247,
+ "node_id": "RA_kwDOBPZW984DB5PX",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1786139,
+ "download_count": 123,
+ "created_at": "2021-12-02T12:50:58Z",
+ "updated_at": "2021-12-02T12:50:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828229",
+ "id": 50828229,
+ "node_id": "RA_kwDOBPZW984DB5PF",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1876973,
+ "download_count": 160,
+ "created_at": "2021-12-02T12:50:55Z",
+ "updated_at": "2021-12-02T12:50:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828253",
+ "id": 50828253,
+ "node_id": "RA_kwDOBPZW984DB5Pd",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1930860,
+ "download_count": 1192,
+ "created_at": "2021-12-02T12:50:59Z",
+ "updated_at": "2021-12-02T12:50:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828240",
+ "id": 50828240,
+ "node_id": "RA_kwDOBPZW984DB5PQ",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1846881,
+ "download_count": 25,
+ "created_at": "2021-12-02T12:50:57Z",
+ "updated_at": "2021-12-02T12:50:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50828243",
+ "id": 50828243,
+ "node_id": "RA_kwDOBPZW984DB5PT",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1776494,
+ "download_count": 33,
+ "created_at": "2021-12-02T12:50:58Z",
+ "updated_at": "2021-12-02T12:50:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.2/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.9.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.9.2",
+ "body": "- Upgrade [mvdan/sh](https://github.com/mvdan/sh) which contains a fix a for a important regression on Windows ([#619](https://github.com/go-task/task/issues/619), [mvdan/sh#768](https://github.com/mvdan/sh/issues/768), [mvdan/sh#769](https://github.com/mvdan/sh/pull/769)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/54492225/reactions",
+ "total_count": 5,
+ "+1": 3,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 2,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/54199183",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/54199183/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/54199183/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.9.1",
+ "id": 54199183,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984DOwOP",
+ "tag_name": "v3.9.1",
+ "target_commitish": "master",
+ "name": "v3.9.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-11-28T19:19:37Z",
+ "published_at": "2021-11-28T19:24:19Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503247",
+ "id": 50503247,
+ "node_id": "RA_kwDOBPZW984DAp5P",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 4196,
+ "created_at": "2021-11-28T19:22:06Z",
+ "updated_at": "2021-11-28T19:22:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503273",
+ "id": 50503273,
+ "node_id": "RA_kwDOBPZW984DAp5p",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2014768,
+ "download_count": 697,
+ "created_at": "2021-11-28T19:22:09Z",
+ "updated_at": "2021-11-28T19:22:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503249",
+ "id": 50503249,
+ "node_id": "RA_kwDOBPZW984DAp5R",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1982006,
+ "download_count": 122,
+ "created_at": "2021-11-28T19:22:06Z",
+ "updated_at": "2021-11-28T19:22:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503266",
+ "id": 50503266,
+ "node_id": "RA_kwDOBPZW984DAp5i",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1844432,
+ "download_count": 128,
+ "created_at": "2021-11-28T19:22:08Z",
+ "updated_at": "2021-11-28T19:22:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503253",
+ "id": 50503253,
+ "node_id": "RA_kwDOBPZW984DAp5V",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1841611,
+ "download_count": 127,
+ "created_at": "2021-11-28T19:22:07Z",
+ "updated_at": "2021-11-28T19:22:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503275",
+ "id": 50503275,
+ "node_id": "RA_kwDOBPZW984DAp5r",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1844239,
+ "download_count": 127,
+ "created_at": "2021-11-28T19:22:10Z",
+ "updated_at": "2021-11-28T19:22:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503267",
+ "id": 50503267,
+ "node_id": "RA_kwDOBPZW984DAp5j",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1943716,
+ "download_count": 158,
+ "created_at": "2021-11-28T19:22:08Z",
+ "updated_at": "2021-11-28T19:22:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503264",
+ "id": 50503264,
+ "node_id": "RA_kwDOBPZW984DAp5g",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1939439,
+ "download_count": 128,
+ "created_at": "2021-11-28T19:22:07Z",
+ "updated_at": "2021-11-28T19:22:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503251",
+ "id": 50503251,
+ "node_id": "RA_kwDOBPZW984DAp5T",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1941562,
+ "download_count": 9417,
+ "created_at": "2021-11-28T19:22:07Z",
+ "updated_at": "2021-11-28T19:22:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503268",
+ "id": 50503268,
+ "node_id": "RA_kwDOBPZW984DAp5k",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1835026,
+ "download_count": 20,
+ "created_at": "2021-11-28T19:22:08Z",
+ "updated_at": "2021-11-28T19:22:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503269",
+ "id": 50503269,
+ "node_id": "RA_kwDOBPZW984DAp5l",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1832961,
+ "download_count": 19,
+ "created_at": "2021-11-28T19:22:08Z",
+ "updated_at": "2021-11-28T19:22:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503252",
+ "id": 50503252,
+ "node_id": "RA_kwDOBPZW984DAp5U",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1835090,
+ "download_count": 18,
+ "created_at": "2021-11-28T19:22:07Z",
+ "updated_at": "2021-11-28T19:22:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503254",
+ "id": 50503254,
+ "node_id": "RA_kwDOBPZW984DAp5W",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1787974,
+ "download_count": 19,
+ "created_at": "2021-11-28T19:22:07Z",
+ "updated_at": "2021-11-28T19:22:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503270",
+ "id": 50503270,
+ "node_id": "RA_kwDOBPZW984DAp5m",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1784806,
+ "download_count": 19,
+ "created_at": "2021-11-28T19:22:08Z",
+ "updated_at": "2021-11-28T19:22:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503272",
+ "id": 50503272,
+ "node_id": "RA_kwDOBPZW984DAp5o",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1786204,
+ "download_count": 36,
+ "created_at": "2021-11-28T19:22:09Z",
+ "updated_at": "2021-11-28T19:22:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503246",
+ "id": 50503246,
+ "node_id": "RA_kwDOBPZW984DAp5O",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1877726,
+ "download_count": 133,
+ "created_at": "2021-11-28T19:22:06Z",
+ "updated_at": "2021-11-28T19:22:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503274",
+ "id": 50503274,
+ "node_id": "RA_kwDOBPZW984DAp5q",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1931228,
+ "download_count": 283,
+ "created_at": "2021-11-28T19:22:09Z",
+ "updated_at": "2021-11-28T19:22:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503271",
+ "id": 50503271,
+ "node_id": "RA_kwDOBPZW984DAp5n",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1847262,
+ "download_count": 22,
+ "created_at": "2021-11-28T19:22:09Z",
+ "updated_at": "2021-11-28T19:22:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/50503248",
+ "id": 50503248,
+ "node_id": "RA_kwDOBPZW984DAp5Q",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1777087,
+ "download_count": 23,
+ "created_at": "2021-11-28T19:22:06Z",
+ "updated_at": "2021-11-28T19:22:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.1/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.9.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.9.1",
+ "body": "- Add logging in verbose mode for when a task starts and finishes ([#533](https://github.com/go-task/task/issues/533), [#588](https://github.com/go-task/task/pull/588)).\r\n- Fix an issue with preconditions and context errors ([#597](https://github.com/go-task/task/issues/597), [#598](https://github.com/go-task/task/pull/598)).\r\n- Quote each `{{.CLI_ARGS}}` argument to prevent one with spaces to become many ([#613](https://github.com/go-task/task/pull/613)).\r\n- Fix nil pointer when `cmd:` was left empty ([#612](https://github.com/go-task/task/issues/612), [#614](https://github.com/go-task/task/pull/614)).\r\n- Upgrade [mvdan/sh](https://github.com/mvdan/sh) which contains two relevant fixes:\r\n - Fix quote of empty strings in `shellQuote` ([#609](https://github.com/go-task/task/issues/609), [mvdan/sh#763](https://github.com/mvdan/sh/issues/763)).\r\n - Fix issue of wrong environment variable being picked when there's another very similar one ([#586](https://github.com/go-task/task/issues/586), [mvdan/sh#745](https://github.com/mvdan/sh/pull/745)).\r\n- Install shell completions automatically when installing via Homebrew ([#264](https://github.com/go-task/task/issues/264), [#592](https://github.com/go-task/task/pull/592), [go-task/homebrew-tap#2](https://github.com/go-task/homebrew-tap/pull/2)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/54199183/reactions",
+ "total_count": 3,
+ "+1": 0,
+ "-1": 0,
+ "laugh": 1,
+ "hooray": 2,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/50686341",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/50686341/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/50686341/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.9.0",
+ "id": 50686341,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984DBWmF",
+ "tag_name": "v3.9.0",
+ "target_commitish": "master",
+ "name": "v3.9.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-10-02T21:47:40Z",
+ "published_at": "2021-10-02T21:51:23Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109537",
+ "id": 46109537,
+ "node_id": "RA_kwDOBPZW984Cv5Nh",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 48698,
+ "created_at": "2021-10-02T21:49:59Z",
+ "updated_at": "2021-10-02T21:49:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109541",
+ "id": 46109541,
+ "node_id": "RA_kwDOBPZW984Cv5Nl",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2019453,
+ "download_count": 3940,
+ "created_at": "2021-10-02T21:49:59Z",
+ "updated_at": "2021-10-02T21:50:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109542",
+ "id": 46109542,
+ "node_id": "RA_kwDOBPZW984Cv5Nm",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1986137,
+ "download_count": 480,
+ "created_at": "2021-10-02T21:50:00Z",
+ "updated_at": "2021-10-02T21:50:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109548",
+ "id": 46109548,
+ "node_id": "RA_kwDOBPZW984Cv5Ns",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1842042,
+ "download_count": 144,
+ "created_at": "2021-10-02T21:50:01Z",
+ "updated_at": "2021-10-02T21:50:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109550",
+ "id": 46109550,
+ "node_id": "RA_kwDOBPZW984Cv5Nu",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1839869,
+ "download_count": 420,
+ "created_at": "2021-10-02T21:50:01Z",
+ "updated_at": "2021-10-02T21:50:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109546",
+ "id": 46109546,
+ "node_id": "RA_kwDOBPZW984Cv5Nq",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1848352,
+ "download_count": 142,
+ "created_at": "2021-10-02T21:50:00Z",
+ "updated_at": "2021-10-02T21:50:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109555",
+ "id": 46109555,
+ "node_id": "RA_kwDOBPZW984Cv5Nz",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1941720,
+ "download_count": 27195,
+ "created_at": "2021-10-02T21:50:02Z",
+ "updated_at": "2021-10-02T21:50:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109552",
+ "id": 46109552,
+ "node_id": "RA_kwDOBPZW984Cv5Nw",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1937565,
+ "download_count": 8898,
+ "created_at": "2021-10-02T21:50:02Z",
+ "updated_at": "2021-10-02T21:50:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109536",
+ "id": 46109536,
+ "node_id": "RA_kwDOBPZW984Cv5Ng",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1944242,
+ "download_count": 144204,
+ "created_at": "2021-10-02T21:49:59Z",
+ "updated_at": "2021-10-02T21:49:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109558",
+ "id": 46109558,
+ "node_id": "RA_kwDOBPZW984Cv5N2",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1832818,
+ "download_count": 22,
+ "created_at": "2021-10-02T21:50:03Z",
+ "updated_at": "2021-10-02T21:50:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109553",
+ "id": 46109553,
+ "node_id": "RA_kwDOBPZW984Cv5Nx",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1830346,
+ "download_count": 22,
+ "created_at": "2021-10-02T21:50:02Z",
+ "updated_at": "2021-10-02T21:50:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109547",
+ "id": 46109547,
+ "node_id": "RA_kwDOBPZW984Cv5Nr",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1839142,
+ "download_count": 26,
+ "created_at": "2021-10-02T21:50:00Z",
+ "updated_at": "2021-10-02T21:50:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109556",
+ "id": 46109556,
+ "node_id": "RA_kwDOBPZW984Cv5N0",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1786206,
+ "download_count": 49,
+ "created_at": "2021-10-02T21:50:02Z",
+ "updated_at": "2021-10-02T21:50:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109557",
+ "id": 46109557,
+ "node_id": "RA_kwDOBPZW984Cv5N1",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1782105,
+ "download_count": 24,
+ "created_at": "2021-10-02T21:50:03Z",
+ "updated_at": "2021-10-02T21:50:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109539",
+ "id": 46109539,
+ "node_id": "RA_kwDOBPZW984Cv5Nj",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1790496,
+ "download_count": 201,
+ "created_at": "2021-10-02T21:49:59Z",
+ "updated_at": "2021-10-02T21:49:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109538",
+ "id": 46109538,
+ "node_id": "RA_kwDOBPZW984Cv5Ni",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1879899,
+ "download_count": 194,
+ "created_at": "2021-10-02T21:49:59Z",
+ "updated_at": "2021-10-02T21:49:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109543",
+ "id": 46109543,
+ "node_id": "RA_kwDOBPZW984Cv5Nn",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1934416,
+ "download_count": 2514,
+ "created_at": "2021-10-02T21:50:00Z",
+ "updated_at": "2021-10-02T21:50:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109549",
+ "id": 46109549,
+ "node_id": "RA_kwDOBPZW984Cv5Nt",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1850345,
+ "download_count": 29,
+ "created_at": "2021-10-02T21:50:01Z",
+ "updated_at": "2021-10-02T21:50:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/46109545",
+ "id": 46109545,
+ "node_id": "RA_kwDOBPZW984Cv5Np",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1779596,
+ "download_count": 56,
+ "created_at": "2021-10-02T21:50:00Z",
+ "updated_at": "2021-10-02T21:50:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.9.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.9.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.9.0",
+ "body": "- A new `shellQuote` function was added to the template system (`{{shellQuote \"a string\"}}`) to ensure a string is safe for use in shell ([mvdan/sh#727](https://github.com/mvdan/sh/pull/727), [mvdan/sh#737](https://github.com/mvdan/sh/pull/737), [Documentation](https://pkg.go.dev/mvdan.cc/sh/v3@v3.4.0/syntax#Quote))\r\n- In this version [mvdan.cc/sh](https://github.com/mvdan/sh) was upgraded with some small fixes and features\r\n - The `read -p` flag is now supported ([#314](https://github.com/go-task/task/issues/314), [mvdan/sh#551](https://github.com/mvdan/sh/issues/551), [mvdan/sh#772](https://github.com/mvdan/sh/pull/722))\r\n - The `pwd -P` and `pwd -L` flags are now supported ([#553](https://github.com/go-task/task/issues/553), [mvdan/sh#724](https://github.com/mvdan/sh/issues/724), [mvdan/sh#728](https://github.com/mvdan/sh/pull/728))\r\n - The `$GID` environment variable is now correctly being set ([#561](https://github.com/go-task/task/issues/561), [mvdan/sh#723](https://github.com/mvdan/sh/pull/723))",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/50686341/reactions",
+ "total_count": 6,
+ "+1": 6,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/50285635",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/50285635/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/50285635/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.8.0",
+ "id": 50285635,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "RE_kwDOBPZW984C_0xD",
+ "tag_name": "v3.8.0",
+ "target_commitish": "master",
+ "name": "v3.8.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-09-27T01:32:07Z",
+ "published_at": "2021-09-27T01:35:48Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675389",
+ "id": 45675389,
+ "node_id": "RA_kwDOBPZW984CuPN9",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 5464,
+ "created_at": "2021-09-27T01:34:45Z",
+ "updated_at": "2021-09-27T01:34:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675407",
+ "id": 45675407,
+ "node_id": "RA_kwDOBPZW984CuPOP",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2011423,
+ "download_count": 540,
+ "created_at": "2021-09-27T01:34:48Z",
+ "updated_at": "2021-09-27T01:34:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675403",
+ "id": 45675403,
+ "node_id": "RA_kwDOBPZW984CuPOL",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1978196,
+ "download_count": 66,
+ "created_at": "2021-09-27T01:34:47Z",
+ "updated_at": "2021-09-27T01:34:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675397",
+ "id": 45675397,
+ "node_id": "RA_kwDOBPZW984CuPOF",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1836818,
+ "download_count": 129,
+ "created_at": "2021-09-27T01:34:46Z",
+ "updated_at": "2021-09-27T01:34:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675394",
+ "id": 45675394,
+ "node_id": "RA_kwDOBPZW984CuPOC",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1835647,
+ "download_count": 130,
+ "created_at": "2021-09-27T01:34:45Z",
+ "updated_at": "2021-09-27T01:34:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675408",
+ "id": 45675408,
+ "node_id": "RA_kwDOBPZW984CuPOQ",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1842424,
+ "download_count": 129,
+ "created_at": "2021-09-27T01:34:48Z",
+ "updated_at": "2021-09-27T01:34:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675396",
+ "id": 45675396,
+ "node_id": "RA_kwDOBPZW984CuPOE",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1934936,
+ "download_count": 149,
+ "created_at": "2021-09-27T01:34:46Z",
+ "updated_at": "2021-09-27T01:34:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675393",
+ "id": 45675393,
+ "node_id": "RA_kwDOBPZW984CuPOB",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1931891,
+ "download_count": 130,
+ "created_at": "2021-09-27T01:34:45Z",
+ "updated_at": "2021-09-27T01:34:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675402",
+ "id": 45675402,
+ "node_id": "RA_kwDOBPZW984CuPOK",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1939204,
+ "download_count": 11771,
+ "created_at": "2021-09-27T01:34:47Z",
+ "updated_at": "2021-09-27T01:34:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675399",
+ "id": 45675399,
+ "node_id": "RA_kwDOBPZW984CuPOH",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1826444,
+ "download_count": 21,
+ "created_at": "2021-09-27T01:34:47Z",
+ "updated_at": "2021-09-27T01:34:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675392",
+ "id": 45675392,
+ "node_id": "RA_kwDOBPZW984CuPOA",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1825944,
+ "download_count": 21,
+ "created_at": "2021-09-27T01:34:45Z",
+ "updated_at": "2021-09-27T01:34:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675390",
+ "id": 45675390,
+ "node_id": "RA_kwDOBPZW984CuPN-",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1831956,
+ "download_count": 20,
+ "created_at": "2021-09-27T01:34:45Z",
+ "updated_at": "2021-09-27T01:34:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675395",
+ "id": 45675395,
+ "node_id": "RA_kwDOBPZW984CuPOD",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1779962,
+ "download_count": 21,
+ "created_at": "2021-09-27T01:34:46Z",
+ "updated_at": "2021-09-27T01:34:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675398",
+ "id": 45675398,
+ "node_id": "RA_kwDOBPZW984CuPOG",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1777387,
+ "download_count": 23,
+ "created_at": "2021-09-27T01:34:46Z",
+ "updated_at": "2021-09-27T01:34:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675400",
+ "id": 45675400,
+ "node_id": "RA_kwDOBPZW984CuPOI",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1783247,
+ "download_count": 37,
+ "created_at": "2021-09-27T01:34:47Z",
+ "updated_at": "2021-09-27T01:34:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675404",
+ "id": 45675404,
+ "node_id": "RA_kwDOBPZW984CuPOM",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1874055,
+ "download_count": 138,
+ "created_at": "2021-09-27T01:34:48Z",
+ "updated_at": "2021-09-27T01:34:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675401",
+ "id": 45675401,
+ "node_id": "RA_kwDOBPZW984CuPOJ",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1926069,
+ "download_count": 373,
+ "created_at": "2021-09-27T01:34:47Z",
+ "updated_at": "2021-09-27T01:34:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675406",
+ "id": 45675406,
+ "node_id": "RA_kwDOBPZW984CuPOO",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1845006,
+ "download_count": 19,
+ "created_at": "2021-09-27T01:34:48Z",
+ "updated_at": "2021-09-27T01:34:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/45675391",
+ "id": 45675391,
+ "node_id": "RA_kwDOBPZW984CuPN_",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1772012,
+ "download_count": 22,
+ "created_at": "2021-09-27T01:34:45Z",
+ "updated_at": "2021-09-27T01:34:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.8.0/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.8.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.8.0",
+ "body": "- Add `interactive: true` setting to improve support for interactive CLI apps ([#217](https://github.com/go-task/task/issues/217), [#563](https://github.com/go-task/task/pull/563)).\r\n- Fix some `nil` errors ([#534](https://github.com/go-task/task/issues/534), [#573](https://github.com/go-task/task/pull/573)).\r\n- Add ability to declare an included Taskfile as optional ([#519](https://github.com/go-task/task/issues/519), [#552](https://github.com/go-task/task/pull/552)).\r\n- Add support for including Taskfiles in the home directory by using `~` ([#539](https://github.com/go-task/task/issues/539), [#557](https://github.com/go-task/task/pull/557)).",
+ "reactions": {
+ "url": "https://api.github.com/repos/go-task/task/releases/50285635/reactions",
+ "total_count": 8,
+ "+1": 8,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/49020419",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/49020419/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/49020419/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.7.3",
+ "id": 49020419,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQ5MDIwNDE5",
+ "tag_name": "v3.7.3",
+ "target_commitish": "master",
+ "name": "v3.7.3",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-09-05T01:07:15Z",
+ "published_at": "2021-09-05T01:16:20Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063080",
+ "id": 44063080,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDgw",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1578,
+ "download_count": 14841,
+ "created_at": "2021-09-05T01:14:59Z",
+ "updated_at": "2021-09-05T01:14:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063086",
+ "id": 44063086,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDg2",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2009348,
+ "download_count": 1249,
+ "created_at": "2021-09-05T01:15:00Z",
+ "updated_at": "2021-09-05T01:15:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063083",
+ "id": 44063083,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDgz",
+ "name": "task_darwin_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1977596,
+ "download_count": 106,
+ "created_at": "2021-09-05T01:14:59Z",
+ "updated_at": "2021-09-05T01:15:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_darwin_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063099",
+ "id": 44063099,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDk5",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1836266,
+ "download_count": 130,
+ "created_at": "2021-09-05T01:15:03Z",
+ "updated_at": "2021-09-05T01:15:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063096",
+ "id": 44063096,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDk2",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1834849,
+ "download_count": 130,
+ "created_at": "2021-09-05T01:15:02Z",
+ "updated_at": "2021-09-05T01:15:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063088",
+ "id": 44063088,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDg4",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1841362,
+ "download_count": 134,
+ "created_at": "2021-09-05T01:15:00Z",
+ "updated_at": "2021-09-05T01:15:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063097",
+ "id": 44063097,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDk3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1934180,
+ "download_count": 1058,
+ "created_at": "2021-09-05T01:15:03Z",
+ "updated_at": "2021-09-05T01:15:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063091",
+ "id": 44063091,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDkx",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1931203,
+ "download_count": 202,
+ "created_at": "2021-09-05T01:15:01Z",
+ "updated_at": "2021-09-05T01:15:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063087",
+ "id": 44063087,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDg3",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1938233,
+ "download_count": 47842,
+ "created_at": "2021-09-05T01:15:00Z",
+ "updated_at": "2021-09-05T01:15:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063100",
+ "id": 44063100,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMTAw",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1826318,
+ "download_count": 22,
+ "created_at": "2021-09-05T01:15:04Z",
+ "updated_at": "2021-09-05T01:15:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063093",
+ "id": 44063093,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDkz",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1825410,
+ "download_count": 22,
+ "created_at": "2021-09-05T01:15:02Z",
+ "updated_at": "2021-09-05T01:15:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063089",
+ "id": 44063089,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDg5",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1831127,
+ "download_count": 22,
+ "created_at": "2021-09-05T01:15:01Z",
+ "updated_at": "2021-09-05T01:15:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063098",
+ "id": 44063098,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDk4",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1779472,
+ "download_count": 22,
+ "created_at": "2021-09-05T01:15:03Z",
+ "updated_at": "2021-09-05T01:15:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063094",
+ "id": 44063094,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDk0",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1777377,
+ "download_count": 22,
+ "created_at": "2021-09-05T01:15:02Z",
+ "updated_at": "2021-09-05T01:15:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063090",
+ "id": 44063090,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDkw",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1782686,
+ "download_count": 94,
+ "created_at": "2021-09-05T01:15:01Z",
+ "updated_at": "2021-09-05T01:15:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063085",
+ "id": 44063085,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDg1",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1872476,
+ "download_count": 157,
+ "created_at": "2021-09-05T01:15:00Z",
+ "updated_at": "2021-09-05T01:15:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063081",
+ "id": 44063081,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDgx",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1925396,
+ "download_count": 775,
+ "created_at": "2021-09-05T01:14:59Z",
+ "updated_at": "2021-09-05T01:14:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063092",
+ "id": 44063092,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDky",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1843881,
+ "download_count": 24,
+ "created_at": "2021-09-05T01:15:01Z",
+ "updated_at": "2021-09-05T01:15:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_windows_arm.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/44063082",
+ "id": 44063082,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0MDYzMDgy",
+ "name": "task_windows_arm64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1770893,
+ "download_count": 42,
+ "created_at": "2021-09-05T01:14:59Z",
+ "updated_at": "2021-09-05T01:14:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.3/task_windows_arm64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.7.3",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.7.3",
+ "body": "- Add official support to Apple M1 ([#564](https://github.com/go-task/task/pull/564), [#567](https://github.com/go-task/task/pull/567))\r\n- Our [official Homebrew tap](https://github.com/go-task/homebrew-tap) will support more platforms, including Apple M1"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/47101591",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/47101591/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/47101591/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.7.0",
+ "id": 47101591,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQ3MTAxNTkx",
+ "tag_name": "v3.7.0",
+ "target_commitish": "master",
+ "name": "v3.7.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-08-01T00:36:10Z",
+ "published_at": "2021-08-01T00:40:16Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455230",
+ "id": 41455230,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjMw",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1398,
+ "download_count": 48940,
+ "created_at": "2021-08-01T00:38:10Z",
+ "updated_at": "2021-08-01T00:38:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455239",
+ "id": 41455239,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjM5",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2328067,
+ "download_count": 3447,
+ "created_at": "2021-08-01T00:38:12Z",
+ "updated_at": "2021-08-01T00:38:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455247",
+ "id": 41455247,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQ3",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2091126,
+ "download_count": 136,
+ "created_at": "2021-08-01T00:38:13Z",
+ "updated_at": "2021-08-01T00:38:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455242",
+ "id": 41455242,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQy",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2088855,
+ "download_count": 130,
+ "created_at": "2021-08-01T00:38:12Z",
+ "updated_at": "2021-08-01T00:38:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455236",
+ "id": 41455236,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjM2",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2095582,
+ "download_count": 132,
+ "created_at": "2021-08-01T00:38:11Z",
+ "updated_at": "2021-08-01T00:38:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455250",
+ "id": 41455250,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjUw",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2234546,
+ "download_count": 759,
+ "created_at": "2021-08-01T00:38:13Z",
+ "updated_at": "2021-08-01T00:38:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455240",
+ "id": 41455240,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQw",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2226419,
+ "download_count": 7858,
+ "created_at": "2021-08-01T00:38:12Z",
+ "updated_at": "2021-08-01T00:38:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455234",
+ "id": 41455234,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjM0",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2234555,
+ "download_count": 74092,
+ "created_at": "2021-08-01T00:38:10Z",
+ "updated_at": "2021-08-01T00:38:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455245",
+ "id": 41455245,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQ1",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2063656,
+ "download_count": 24,
+ "created_at": "2021-08-01T00:38:13Z",
+ "updated_at": "2021-08-01T00:38:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455241",
+ "id": 41455241,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQx",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2062434,
+ "download_count": 19,
+ "created_at": "2021-08-01T00:38:12Z",
+ "updated_at": "2021-08-01T00:38:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455237",
+ "id": 41455237,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjM3",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2068254,
+ "download_count": 52,
+ "created_at": "2021-08-01T00:38:11Z",
+ "updated_at": "2021-08-01T00:38:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455249",
+ "id": 41455249,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQ5",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2036482,
+ "download_count": 27,
+ "created_at": "2021-08-01T00:38:13Z",
+ "updated_at": "2021-08-01T00:38:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455244",
+ "id": 41455244,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjQ0",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2032021,
+ "download_count": 242,
+ "created_at": "2021-08-01T00:38:12Z",
+ "updated_at": "2021-08-01T00:38:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455233",
+ "id": 41455233,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjMz",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2038018,
+ "download_count": 889,
+ "created_at": "2021-08-01T00:38:10Z",
+ "updated_at": "2021-08-01T00:38:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455229",
+ "id": 41455229,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjI5",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2085586,
+ "download_count": 149,
+ "created_at": "2021-08-01T00:38:10Z",
+ "updated_at": "2021-08-01T00:38:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455238",
+ "id": 41455238,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjM4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2167687,
+ "download_count": 1688,
+ "created_at": "2021-08-01T00:38:11Z",
+ "updated_at": "2021-08-01T00:38:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/41455235",
+ "id": 41455235,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNDU1MjM1",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2044695,
+ "download_count": 24,
+ "created_at": "2021-08-01T00:38:11Z",
+ "updated_at": "2021-08-01T00:38:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.7.0/task_windows_arm.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.7.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.7.0",
+ "body": "- Add `run:` setting to control if tasks should run multiple times or not. Available options are `always` (the default), `when_changed` (if a variable modified the task) and `once` (run only once no matter what). This is a long time requested feature. Enjoy! ([#53](https://github.com/go-task/task/issues/53), [#359](https://github.com/go-task/task/pull/359)).",
+ "discussion_url": "https://github.com/go-task/task/discussions/538"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/46012991",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/46012991/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/46012991/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.6.0",
+ "id": 46012991,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQ2MDEyOTkx",
+ "tag_name": "v3.6.0",
+ "target_commitish": "master",
+ "name": "v3.6.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-07-11T02:13:09Z",
+ "published_at": "2021-07-11T02:16:52Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070296",
+ "id": 40070296,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMjk2",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1398,
+ "download_count": 13490,
+ "created_at": "2021-07-11T02:14:52Z",
+ "updated_at": "2021-07-11T02:14:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070299",
+ "id": 40070299,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMjk5",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2305284,
+ "download_count": 1453,
+ "created_at": "2021-07-11T02:14:53Z",
+ "updated_at": "2021-07-11T02:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070311",
+ "id": 40070311,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzEx",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2068186,
+ "download_count": 131,
+ "created_at": "2021-07-11T02:14:55Z",
+ "updated_at": "2021-07-11T02:14:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070312",
+ "id": 40070312,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzEy",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2066104,
+ "download_count": 129,
+ "created_at": "2021-07-11T02:14:55Z",
+ "updated_at": "2021-07-11T02:14:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070298",
+ "id": 40070298,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMjk4",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2072568,
+ "download_count": 47241,
+ "created_at": "2021-07-11T02:14:52Z",
+ "updated_at": "2021-07-11T02:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070306",
+ "id": 40070306,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzA2",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2212252,
+ "download_count": 2934,
+ "created_at": "2021-07-11T02:14:53Z",
+ "updated_at": "2021-07-11T02:14:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070313",
+ "id": 40070313,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzEz",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2205751,
+ "download_count": 133,
+ "created_at": "2021-07-11T02:14:55Z",
+ "updated_at": "2021-07-11T02:14:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070303",
+ "id": 40070303,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzAz",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2211351,
+ "download_count": 21091,
+ "created_at": "2021-07-11T02:14:53Z",
+ "updated_at": "2021-07-11T02:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070310",
+ "id": 40070310,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzEw",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2041356,
+ "download_count": 25,
+ "created_at": "2021-07-11T02:14:54Z",
+ "updated_at": "2021-07-11T02:14:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070307",
+ "id": 40070307,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzA3",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2039820,
+ "download_count": 20,
+ "created_at": "2021-07-11T02:14:54Z",
+ "updated_at": "2021-07-11T02:14:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070300",
+ "id": 40070300,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzAw",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2046539,
+ "download_count": 21,
+ "created_at": "2021-07-11T02:14:53Z",
+ "updated_at": "2021-07-11T02:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070308",
+ "id": 40070308,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzA4",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2014758,
+ "download_count": 21,
+ "created_at": "2021-07-11T02:14:54Z",
+ "updated_at": "2021-07-11T02:14:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070309",
+ "id": 40070309,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzA5",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2010689,
+ "download_count": 19,
+ "created_at": "2021-07-11T02:14:54Z",
+ "updated_at": "2021-07-11T02:14:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070301",
+ "id": 40070301,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzAx",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2017017,
+ "download_count": 225,
+ "created_at": "2021-07-11T02:14:53Z",
+ "updated_at": "2021-07-11T02:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070305",
+ "id": 40070305,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMzA1",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2061927,
+ "download_count": 144,
+ "created_at": "2021-07-11T02:14:53Z",
+ "updated_at": "2021-07-11T02:14:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070295",
+ "id": 40070295,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMjk1",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2145198,
+ "download_count": 637,
+ "created_at": "2021-07-11T02:14:52Z",
+ "updated_at": "2021-07-11T02:14:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/40070297",
+ "id": 40070297,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMDcwMjk3",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2020903,
+ "download_count": 25,
+ "created_at": "2021-07-11T02:14:52Z",
+ "updated_at": "2021-07-11T02:14:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.6.0/task_windows_arm.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.6.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.6.0",
+ "body": "- Allow using both `sources:` and `status:` in the same task ([#411](https://github.com/go-task/task/issues/411), [#427](https://github.com/go-task/task/issues/427), [#477](https://github.com/go-task/task/pull/477)).\r\n- Small optimization and bug fix: don't compute variables if not needed for `dotenv:` ([#517](https://github.com/go-task/task/issues/517)).",
+ "discussion_url": "https://github.com/go-task/task/discussions/518"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/45685493",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/45685493/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/45685493/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.5.0",
+ "id": 45685493,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQ1Njg1NDkz",
+ "tag_name": "v3.5.0",
+ "target_commitish": "master",
+ "name": "v3.5.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-07-05T00:53:34Z",
+ "published_at": "2021-07-05T00:57:26Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730813",
+ "id": 39730813,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODEz",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1398,
+ "download_count": 3935,
+ "created_at": "2021-07-05T00:55:46Z",
+ "updated_at": "2021-07-05T00:55:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730814",
+ "id": 39730814,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODE0",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2305062,
+ "download_count": 714,
+ "created_at": "2021-07-05T00:55:46Z",
+ "updated_at": "2021-07-05T00:55:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730818",
+ "id": 39730818,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODE4",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2067796,
+ "download_count": 129,
+ "created_at": "2021-07-05T00:55:47Z",
+ "updated_at": "2021-07-05T00:55:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730822",
+ "id": 39730822,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODIy",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2065675,
+ "download_count": 126,
+ "created_at": "2021-07-05T00:55:49Z",
+ "updated_at": "2021-07-05T00:55:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730827",
+ "id": 39730827,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODI3",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2071988,
+ "download_count": 127,
+ "created_at": "2021-07-05T00:55:50Z",
+ "updated_at": "2021-07-05T00:55:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730819",
+ "id": 39730819,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODE5",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2212136,
+ "download_count": 326,
+ "created_at": "2021-07-05T00:55:48Z",
+ "updated_at": "2021-07-05T00:55:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730821",
+ "id": 39730821,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODIx",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2205660,
+ "download_count": 126,
+ "created_at": "2021-07-05T00:55:49Z",
+ "updated_at": "2021-07-05T00:55:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730823",
+ "id": 39730823,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODIz",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2211137,
+ "download_count": 6633,
+ "created_at": "2021-07-05T00:55:49Z",
+ "updated_at": "2021-07-05T00:55:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730815",
+ "id": 39730815,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODE1",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2041266,
+ "download_count": 16,
+ "created_at": "2021-07-05T00:55:46Z",
+ "updated_at": "2021-07-05T00:55:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730816",
+ "id": 39730816,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODE2",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2039733,
+ "download_count": 14,
+ "created_at": "2021-07-05T00:55:47Z",
+ "updated_at": "2021-07-05T00:55:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730825",
+ "id": 39730825,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODI1",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2046348,
+ "download_count": 19,
+ "created_at": "2021-07-05T00:55:50Z",
+ "updated_at": "2021-07-05T00:55:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730817",
+ "id": 39730817,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODE3",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2014848,
+ "download_count": 17,
+ "created_at": "2021-07-05T00:55:47Z",
+ "updated_at": "2021-07-05T00:55:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730820",
+ "id": 39730820,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODIw",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2010805,
+ "download_count": 15,
+ "created_at": "2021-07-05T00:55:48Z",
+ "updated_at": "2021-07-05T00:55:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730829",
+ "id": 39730829,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODI5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2016990,
+ "download_count": 32,
+ "created_at": "2021-07-05T00:55:51Z",
+ "updated_at": "2021-07-05T00:55:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730824",
+ "id": 39730824,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODI0",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2061644,
+ "download_count": 136,
+ "created_at": "2021-07-05T00:55:49Z",
+ "updated_at": "2021-07-05T00:55:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730826",
+ "id": 39730826,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODI2",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2144707,
+ "download_count": 359,
+ "created_at": "2021-07-05T00:55:50Z",
+ "updated_at": "2021-07-05T00:55:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/39730828",
+ "id": 39730828,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM5NzMwODI4",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2020774,
+ "download_count": 17,
+ "created_at": "2021-07-05T00:55:50Z",
+ "updated_at": "2021-07-05T00:55:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.5.0/task_windows_arm.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.5.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.5.0",
+ "body": "- Add support for interpolation in `dotenv:` ([#433](https://github.com/go-task/task/discussions/433), [#434](https://github.com/go-task/task/issues/434), [#453](https://github.com/go-task/task/pull/453)).",
+ "discussion_url": "https://github.com/go-task/task/discussions/516"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/43830260",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/43830260/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/43830260/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.4.3",
+ "id": 43830260,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQzODMwMjYw",
+ "tag_name": "v3.4.3",
+ "target_commitish": "master",
+ "name": "v3.4.3",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-05-31T02:03:15Z",
+ "published_at": "2021-05-31T02:06:45Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806898",
+ "id": 37806898,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2ODk4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1398,
+ "download_count": 20701,
+ "created_at": "2021-05-31T02:05:15Z",
+ "updated_at": "2021-05-31T02:05:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806914",
+ "id": 37806914,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTE0",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2303563,
+ "download_count": 2113,
+ "created_at": "2021-05-31T02:05:19Z",
+ "updated_at": "2021-05-31T02:05:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806904",
+ "id": 37806904,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTA0",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2066518,
+ "download_count": 126,
+ "created_at": "2021-05-31T02:05:16Z",
+ "updated_at": "2021-05-31T02:05:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806908",
+ "id": 37806908,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTA4",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2064223,
+ "download_count": 125,
+ "created_at": "2021-05-31T02:05:17Z",
+ "updated_at": "2021-05-31T02:05:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806910",
+ "id": 37806910,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTEw",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2070344,
+ "download_count": 136,
+ "created_at": "2021-05-31T02:05:18Z",
+ "updated_at": "2021-05-31T02:05:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806905",
+ "id": 37806905,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTA1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2210218,
+ "download_count": 1612,
+ "created_at": "2021-05-31T02:05:17Z",
+ "updated_at": "2021-05-31T02:05:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806907",
+ "id": 37806907,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTA3",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2203975,
+ "download_count": 139,
+ "created_at": "2021-05-31T02:05:17Z",
+ "updated_at": "2021-05-31T02:05:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806912",
+ "id": 37806912,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTEy",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2209157,
+ "download_count": 37689,
+ "created_at": "2021-05-31T02:05:18Z",
+ "updated_at": "2021-05-31T02:05:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806900",
+ "id": 37806900,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTAw",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2040016,
+ "download_count": 16,
+ "created_at": "2021-05-31T02:05:16Z",
+ "updated_at": "2021-05-31T02:05:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806901",
+ "id": 37806901,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTAx",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2038474,
+ "download_count": 14,
+ "created_at": "2021-05-31T02:05:16Z",
+ "updated_at": "2021-05-31T02:05:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806909",
+ "id": 37806909,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTA5",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2045037,
+ "download_count": 15,
+ "created_at": "2021-05-31T02:05:18Z",
+ "updated_at": "2021-05-31T02:05:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806902",
+ "id": 37806902,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTAy",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2012934,
+ "download_count": 20,
+ "created_at": "2021-05-31T02:05:16Z",
+ "updated_at": "2021-05-31T02:05:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806906",
+ "id": 37806906,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTA2",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2008735,
+ "download_count": 15,
+ "created_at": "2021-05-31T02:05:17Z",
+ "updated_at": "2021-05-31T02:05:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806915",
+ "id": 37806915,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTE1",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2014978,
+ "download_count": 201,
+ "created_at": "2021-05-31T02:05:19Z",
+ "updated_at": "2021-05-31T02:05:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806913",
+ "id": 37806913,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTEz",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2060909,
+ "download_count": 145,
+ "created_at": "2021-05-31T02:05:18Z",
+ "updated_at": "2021-05-31T02:05:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806899",
+ "id": 37806899,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2ODk5",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2143867,
+ "download_count": 1044,
+ "created_at": "2021-05-31T02:05:15Z",
+ "updated_at": "2021-05-31T02:05:16Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/37806911",
+ "id": 37806911,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3ODA2OTEx",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2020423,
+ "download_count": 21,
+ "created_at": "2021-05-31T02:05:18Z",
+ "updated_at": "2021-05-31T02:05:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.3/task_windows_arm.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.4.3",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.4.3",
+ "body": "- Add support for the `NO_COLOR` environment variable ([#459](https://github.com/go-task/task/issues/459), [fatih/color#137](https://github.com/fatih/color/pull/137)).\r\n- Fix bug where sources were not considering the right directory in `--watch` mode ([#484](https://github.com/go-task/task/issues/484), [#485](https://github.com/go-task/task/pull/485)).",
+ "discussion_url": "https://github.com/go-task/task/discussions/497"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/41926639",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/41926639/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/41926639/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.4.2",
+ "id": 41926639,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQxOTI2NjM5",
+ "tag_name": "v3.4.2",
+ "target_commitish": "master",
+ "name": "v3.4.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-04-23T21:11:39Z",
+ "published_at": "2021-04-23T21:15:39Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711145",
+ "id": 35711145,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTQ1",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1398,
+ "download_count": 22751,
+ "created_at": "2021-04-23T21:14:24Z",
+ "updated_at": "2021-04-23T21:14:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711152",
+ "id": 35711152,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTUy",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2302631,
+ "download_count": 2189,
+ "created_at": "2021-04-23T21:14:26Z",
+ "updated_at": "2021-04-23T21:14:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711154",
+ "id": 35711154,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTU0",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2065448,
+ "download_count": 125,
+ "created_at": "2021-04-23T21:14:26Z",
+ "updated_at": "2021-04-23T21:14:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711161",
+ "id": 35711161,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTYx",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2063058,
+ "download_count": 123,
+ "created_at": "2021-04-23T21:14:28Z",
+ "updated_at": "2021-04-23T21:14:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711147",
+ "id": 35711147,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTQ3",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2069078,
+ "download_count": 130,
+ "created_at": "2021-04-23T21:14:25Z",
+ "updated_at": "2021-04-23T21:14:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711159",
+ "id": 35711159,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTU5",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2209232,
+ "download_count": 322,
+ "created_at": "2021-04-23T21:14:27Z",
+ "updated_at": "2021-04-23T21:14:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711160",
+ "id": 35711160,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTYw",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2203855,
+ "download_count": 137,
+ "created_at": "2021-04-23T21:14:28Z",
+ "updated_at": "2021-04-23T21:14:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711150",
+ "id": 35711150,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTUw",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2208446,
+ "download_count": 43434,
+ "created_at": "2021-04-23T21:14:25Z",
+ "updated_at": "2021-04-23T21:14:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711155",
+ "id": 35711155,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTU1",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2039260,
+ "download_count": 15,
+ "created_at": "2021-04-23T21:14:26Z",
+ "updated_at": "2021-04-23T21:14:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711156",
+ "id": 35711156,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTU2",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2037792,
+ "download_count": 15,
+ "created_at": "2021-04-23T21:14:27Z",
+ "updated_at": "2021-04-23T21:14:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711144",
+ "id": 35711144,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTQ0",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2044192,
+ "download_count": 15,
+ "created_at": "2021-04-23T21:14:24Z",
+ "updated_at": "2021-04-23T21:14:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711157",
+ "id": 35711157,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTU3",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2010688,
+ "download_count": 21,
+ "created_at": "2021-04-23T21:14:27Z",
+ "updated_at": "2021-04-23T21:14:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711158",
+ "id": 35711158,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTU4",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2006022,
+ "download_count": 15,
+ "created_at": "2021-04-23T21:14:27Z",
+ "updated_at": "2021-04-23T21:14:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711153",
+ "id": 35711153,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTUz",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2012564,
+ "download_count": 153,
+ "created_at": "2021-04-23T21:14:26Z",
+ "updated_at": "2021-04-23T21:14:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711149",
+ "id": 35711149,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTQ5",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2058194,
+ "download_count": 157,
+ "created_at": "2021-04-23T21:14:25Z",
+ "updated_at": "2021-04-23T21:14:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711148",
+ "id": 35711148,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTQ4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2141556,
+ "download_count": 1059,
+ "created_at": "2021-04-23T21:14:25Z",
+ "updated_at": "2021-04-23T21:14:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35711151",
+ "id": 35711151,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NzExMTUx",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2016466,
+ "download_count": 17,
+ "created_at": "2021-04-23T21:14:26Z",
+ "updated_at": "2021-04-23T21:14:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.2/task_windows_arm.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.4.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.4.2",
+ "body": "- On watch, report which file failed to read ([#472](https://github.com/go-task/task/pull/472)).\r\n- Do not try to catch SIGKILL signal, which are not actually possible ([#476](https://github.com/go-task/task/pull/476)).\r\n- Improve version reporting when building Task from source using Go Modules ([#462](https://github.com/go-task/task/pull/462), [#473](https://github.com/go-task/task/pull/473))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/41593210",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/41593210/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/41593210/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.4.1",
+ "id": 41593210,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQxNTkzMjEw",
+ "tag_name": "v3.4.1",
+ "target_commitish": "master",
+ "name": "v3.4.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-04-17T20:48:42Z",
+ "published_at": "2021-04-17T20:56:13Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280541",
+ "id": 35280541,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQx",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1398,
+ "download_count": 4205,
+ "created_at": "2021-04-17T20:50:37Z",
+ "updated_at": "2021-04-17T20:50:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280547",
+ "id": 35280547,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQ3",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2299890,
+ "download_count": 4006,
+ "created_at": "2021-04-17T20:50:38Z",
+ "updated_at": "2021-04-17T20:50:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280550",
+ "id": 35280550,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTUw",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2061930,
+ "download_count": 126,
+ "created_at": "2021-04-17T20:50:39Z",
+ "updated_at": "2021-04-17T20:50:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280555",
+ "id": 35280555,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTU1",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2059090,
+ "download_count": 122,
+ "created_at": "2021-04-17T20:50:39Z",
+ "updated_at": "2021-04-17T20:50:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280548",
+ "id": 35280548,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQ4",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2065634,
+ "download_count": 126,
+ "created_at": "2021-04-17T20:50:38Z",
+ "updated_at": "2021-04-17T20:50:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280554",
+ "id": 35280554,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTU0",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2206456,
+ "download_count": 361,
+ "created_at": "2021-04-17T20:50:39Z",
+ "updated_at": "2021-04-17T20:50:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280556",
+ "id": 35280556,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTU2",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2200340,
+ "download_count": 222,
+ "created_at": "2021-04-17T20:50:40Z",
+ "updated_at": "2021-04-17T20:50:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280542",
+ "id": 35280542,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQy",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2205278,
+ "download_count": 14171,
+ "created_at": "2021-04-17T20:50:37Z",
+ "updated_at": "2021-04-17T20:50:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280551",
+ "id": 35280551,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTUx",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2036096,
+ "download_count": 16,
+ "created_at": "2021-04-17T20:50:39Z",
+ "updated_at": "2021-04-17T20:50:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280557",
+ "id": 35280557,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTU3",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2034324,
+ "download_count": 14,
+ "created_at": "2021-04-17T20:50:40Z",
+ "updated_at": "2021-04-17T20:50:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280543",
+ "id": 35280543,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQz",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2040719,
+ "download_count": 15,
+ "created_at": "2021-04-17T20:50:37Z",
+ "updated_at": "2021-04-17T20:50:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280552",
+ "id": 35280552,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTUy",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2007196,
+ "download_count": 17,
+ "created_at": "2021-04-17T20:50:39Z",
+ "updated_at": "2021-04-17T20:50:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280558",
+ "id": 35280558,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTU4",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2003259,
+ "download_count": 14,
+ "created_at": "2021-04-17T20:50:40Z",
+ "updated_at": "2021-04-17T20:50:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280545",
+ "id": 35280545,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQ1",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2009407,
+ "download_count": 24,
+ "created_at": "2021-04-17T20:50:38Z",
+ "updated_at": "2021-04-17T20:50:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280546",
+ "id": 35280546,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQ2",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2055677,
+ "download_count": 144,
+ "created_at": "2021-04-17T20:50:38Z",
+ "updated_at": "2021-04-17T20:50:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280544",
+ "id": 35280544,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQ0",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2138545,
+ "download_count": 3932,
+ "created_at": "2021-04-17T20:50:37Z",
+ "updated_at": "2021-04-17T20:50:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_windows_amd64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/35280549",
+ "id": 35280549,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MjgwNTQ5",
+ "name": "task_windows_arm.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2013669,
+ "download_count": 17,
+ "created_at": "2021-04-17T20:50:38Z",
+ "updated_at": "2021-04-17T20:50:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.4.1/task_windows_arm.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.4.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.4.1",
+ "body": "- Improve error reporting when parsing YAML: in some situations where you would just see an generic error, you'll now see the actual error with more detail: the YAML line the failed to parse, for example ([#467](https://github.com/go-task/task/issues/467)).\r\n- A JSON Schema was published [here](https://json.schemastore.org/taskfile.json) and is automatically being used by some editors like Visual Studio Code ([#135](https://github.com/go-task/task/issues/135)).\r\n- Print task name before the command in the log output ([#398](https://github.com/go-task/task/pull/398))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/40105012",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/40105012/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/40105012/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.3.0",
+ "id": 40105012,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTQwMTA1MDEy",
+ "tag_name": "v3.3.0",
+ "target_commitish": "master",
+ "name": "v3.3.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-03-20T16:21:08Z",
+ "published_at": "2021-03-20T16:25:31Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740473",
+ "id": 33740473,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDcz",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1311,
+ "download_count": 15430,
+ "created_at": "2021-03-20T16:22:48Z",
+ "updated_at": "2021-03-20T16:22:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740485",
+ "id": 33740485,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDg1",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2299118,
+ "download_count": 1600,
+ "created_at": "2021-03-20T16:22:50Z",
+ "updated_at": "2021-03-20T16:22:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740479",
+ "id": 33740479,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDc5",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2061174,
+ "download_count": 127,
+ "created_at": "2021-03-20T16:22:49Z",
+ "updated_at": "2021-03-20T16:22:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740480",
+ "id": 33740480,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDgw",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2058352,
+ "download_count": 122,
+ "created_at": "2021-03-20T16:22:49Z",
+ "updated_at": "2021-03-20T16:22:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740483",
+ "id": 33740483,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDgz",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2065163,
+ "download_count": 667,
+ "created_at": "2021-03-20T16:22:50Z",
+ "updated_at": "2021-03-20T16:22:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740477",
+ "id": 33740477,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDc3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2205722,
+ "download_count": 3292,
+ "created_at": "2021-03-20T16:22:48Z",
+ "updated_at": "2021-03-20T16:22:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740482",
+ "id": 33740482,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDgy",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2199650,
+ "download_count": 134,
+ "created_at": "2021-03-20T16:22:49Z",
+ "updated_at": "2021-03-20T16:22:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740490",
+ "id": 33740490,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDkw",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2204294,
+ "download_count": 102013,
+ "created_at": "2021-03-20T16:22:51Z",
+ "updated_at": "2021-03-20T16:22:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740474",
+ "id": 33740474,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDc0",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2035494,
+ "download_count": 15,
+ "created_at": "2021-03-20T16:22:48Z",
+ "updated_at": "2021-03-20T16:22:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740481",
+ "id": 33740481,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDgx",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2033573,
+ "download_count": 14,
+ "created_at": "2021-03-20T16:22:49Z",
+ "updated_at": "2021-03-20T16:22:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740487",
+ "id": 33740487,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDg3",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2039727,
+ "download_count": 16,
+ "created_at": "2021-03-20T16:22:50Z",
+ "updated_at": "2021-03-20T16:22:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740476",
+ "id": 33740476,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDc2",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2007082,
+ "download_count": 184,
+ "created_at": "2021-03-20T16:22:48Z",
+ "updated_at": "2021-03-20T16:22:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740478",
+ "id": 33740478,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDc4",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2003250,
+ "download_count": 16,
+ "created_at": "2021-03-20T16:22:49Z",
+ "updated_at": "2021-03-20T16:22:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740489",
+ "id": 33740489,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDg5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2009063,
+ "download_count": 54,
+ "created_at": "2021-03-20T16:22:51Z",
+ "updated_at": "2021-03-20T16:22:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740484",
+ "id": 33740484,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDg0",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2053824,
+ "download_count": 143,
+ "created_at": "2021-03-20T16:22:50Z",
+ "updated_at": "2021-03-20T16:22:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/33740486",
+ "id": 33740486,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNzQwNDg2",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2135140,
+ "download_count": 625,
+ "created_at": "2021-03-20T16:22:50Z",
+ "updated_at": "2021-03-20T16:22:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.3.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.3.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.3.0",
+ "body": "- Add support for delegating CLI arguments to commands with `--` and a special `CLI_ARGS` variable ([#327](https://github.com/go-task/task/issues/327)).\r\n- Add a `--concurrency` (alias `-C`) flag, to limit the number of tasks that run concurrently. This is useful for heavy workloads ([#345](https://github.com/go-task/task/pull/345))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/36289146",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/36289146/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/36289146/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.2.2",
+ "id": 36289146,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTM2Mjg5MTQ2",
+ "tag_name": "v3.2.2",
+ "target_commitish": "master",
+ "name": "v3.2.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-01-12T16:21:43Z",
+ "published_at": "2021-01-12T16:24:28Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592738",
+ "id": 30592738,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzM4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1311,
+ "download_count": 89850,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592743",
+ "id": 30592743,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQz",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2278789,
+ "download_count": 3299,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592747",
+ "id": 30592747,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQ3",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2044878,
+ "download_count": 139,
+ "created_at": "2021-01-12T16:23:48Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592751",
+ "id": 30592751,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzUx",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2042762,
+ "download_count": 196,
+ "created_at": "2021-01-12T16:23:48Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592736",
+ "id": 30592736,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzM2",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2046909,
+ "download_count": 133,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592748",
+ "id": 30592748,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQ4",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2186476,
+ "download_count": 5644,
+ "created_at": "2021-01-12T16:23:48Z",
+ "updated_at": "2021-01-12T16:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592756",
+ "id": 30592756,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzU2",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2179960,
+ "download_count": 811,
+ "created_at": "2021-01-12T16:23:49Z",
+ "updated_at": "2021-01-12T16:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592742",
+ "id": 30592742,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQy",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2186137,
+ "download_count": 90776,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592749",
+ "id": 30592749,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQ5",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2017728,
+ "download_count": 21,
+ "created_at": "2021-01-12T16:23:48Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592750",
+ "id": 30592750,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzUw",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2016153,
+ "download_count": 17,
+ "created_at": "2021-01-12T16:23:48Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592739",
+ "id": 30592739,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzM5",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2020490,
+ "download_count": 20,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592752",
+ "id": 30592752,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzUy",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1991116,
+ "download_count": 703,
+ "created_at": "2021-01-12T16:23:48Z",
+ "updated_at": "2021-01-12T16:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592753",
+ "id": 30592753,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzUz",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1986336,
+ "download_count": 17,
+ "created_at": "2021-01-12T16:23:58Z",
+ "updated_at": "2021-01-12T16:23:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592737",
+ "id": 30592737,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzM3",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1992291,
+ "download_count": 19202,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592741",
+ "id": 30592741,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQx",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2034609,
+ "download_count": 170,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30592744",
+ "id": 30592744,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNTkyNzQ0",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2117481,
+ "download_count": 1777,
+ "created_at": "2021-01-12T16:23:47Z",
+ "updated_at": "2021-01-12T16:23:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.2/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.2.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.2.2",
+ "body": "- Improve performance of `--list` and `--summary` by skipping running shell variables for these flags ([#332](https://github.com/go-task/task/issues/332)).\r\n- Fixed a bug where an environment in a Taskfile was not always overridable by the system environment ([#425](https://github.com/go-task/task/issues/425)).\r\n- Fixed environment from .env files not being available as variables ([#379](https://github.com/go-task/task/issues/379)).\r\n- The install script is now working for ARM platforms ([#428](https://github.com/go-task/task/pull/428))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/36181425",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/36181425/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/36181425/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.2.1",
+ "id": 36181425,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTM2MTgxNDI1",
+ "tag_name": "v3.2.1",
+ "target_commitish": "master",
+ "name": "v3.2.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-01-09T16:57:30Z",
+ "published_at": "2021-01-09T17:01:36Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478908",
+ "id": 30478908,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTA4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1311,
+ "download_count": 1588,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478914",
+ "id": 30478914,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTE0",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2277519,
+ "download_count": 405,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478922",
+ "id": 30478922,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTIy",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2043924,
+ "download_count": 126,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478917",
+ "id": 30478917,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTE3",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2041487,
+ "download_count": 124,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478911",
+ "id": 30478911,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTEx",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2045481,
+ "download_count": 126,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478919",
+ "id": 30478919,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTE5",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2185252,
+ "download_count": 74313,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478923",
+ "id": 30478923,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTIz",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2179029,
+ "download_count": 147,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478912",
+ "id": 30478912,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTEy",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2184792,
+ "download_count": 1973,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478921",
+ "id": 30478921,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTIx",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2016930,
+ "download_count": 16,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478918",
+ "id": 30478918,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTE4",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2015384,
+ "download_count": 16,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478910",
+ "id": 30478910,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTEw",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2019510,
+ "download_count": 16,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478916",
+ "id": 30478916,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTE2",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1990458,
+ "download_count": 15,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478920",
+ "id": 30478920,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTIw",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1985857,
+ "download_count": 15,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478909",
+ "id": 30478909,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTA5",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1991724,
+ "download_count": 20,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:21Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478913",
+ "id": 30478913,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTEz",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2033516,
+ "download_count": 139,
+ "created_at": "2021-01-09T16:59:21Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30478915",
+ "id": 30478915,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNDc4OTE1",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2116256,
+ "download_count": 268,
+ "created_at": "2021-01-09T16:59:22Z",
+ "updated_at": "2021-01-09T16:59:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.2.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.2.1",
+ "body": "- Fixed some bugs and regressions regarding dynamic variables and directories ([#426](https://github.com/go-task/task/issues/426)).\r\n- The [slim-sprig](https://github.com/go-task/slim-sprig) package was updated with the upstream [sprig](https://github.com/Masterminds/sprig)."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/36102197",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/36102197/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/36102197/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.2.0",
+ "id": 36102197,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTM2MTAyMTk3",
+ "tag_name": "v3.2.0",
+ "target_commitish": "master",
+ "name": "v3.2.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-01-07T16:08:22Z",
+ "published_at": "2021-01-07T16:12:17Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394471",
+ "id": 30394471,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDcx",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1311,
+ "download_count": 955,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394477",
+ "id": 30394477,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDc3",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2246950,
+ "download_count": 304,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394483",
+ "id": 30394483,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDgz",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2014650,
+ "download_count": 125,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394484",
+ "id": 30394484,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDg0",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2012306,
+ "download_count": 126,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394472",
+ "id": 30394472,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDcy",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2018491,
+ "download_count": 126,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394482",
+ "id": 30394482,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDgy",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2157280,
+ "download_count": 146,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394486",
+ "id": 30394486,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDg2",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2149936,
+ "download_count": 129,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394479",
+ "id": 30394479,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDc5",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2155987,
+ "download_count": 2853,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394474",
+ "id": 30394474,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDc0",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1989542,
+ "download_count": 17,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394480",
+ "id": 30394480,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDgw",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1987734,
+ "download_count": 16,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394478",
+ "id": 30394478,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDc4",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1994849,
+ "download_count": 17,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394481",
+ "id": 30394481,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDgx",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1963914,
+ "download_count": 16,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394485",
+ "id": 30394485,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDg1",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1959805,
+ "download_count": 16,
+ "created_at": "2021-01-07T16:10:02Z",
+ "updated_at": "2021-01-07T16:10:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394473",
+ "id": 30394473,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDcz",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1964781,
+ "download_count": 22,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394475",
+ "id": 30394475,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDc1",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2004210,
+ "download_count": 138,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30394476",
+ "id": 30394476,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMzk0NDc2",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2087153,
+ "download_count": 212,
+ "created_at": "2021-01-07T16:10:01Z",
+ "updated_at": "2021-01-07T16:10:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.2.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.2.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.2.0",
+ "body": "- Fix the `.task` directory being created in the task directory instead of the Taskfile directory ([#247](https://github.com/go-task/task/issues/247)).\r\n- Fix a bug where dynamic variables (those declared with `sh:`) were not running in the task directory when the task has a custom dir or it was in an included Taskfile ([#384](https://github.com/go-task/task/issues/384)).\r\n- The watch feature (via the `--watch` flag) got a few different bug fixes and should be more stable now ([#423](https://github.com/go-task/task/pull/423), [#365](https://github.com/go-task/task/issues/365))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/35931181",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/35931181/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/35931181/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.1.0",
+ "id": 35931181,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTM1OTMxMTgx",
+ "tag_name": "v3.1.0",
+ "target_commitish": "master",
+ "name": "v3.1.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2021-01-03T22:37:17Z",
+ "published_at": "2021-01-03T22:40:01Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229368",
+ "id": 30229368,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5MzY4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 1311,
+ "download_count": 5195,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229382",
+ "id": 30229382,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzgy",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2244575,
+ "download_count": 508,
+ "created_at": "2021-01-03T22:38:59Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229370",
+ "id": 30229370,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzcw",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2013090,
+ "download_count": 125,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229369",
+ "id": 30229369,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5MzY5",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2011036,
+ "download_count": 125,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229381",
+ "id": 30229381,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzgx",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2017094,
+ "download_count": 124,
+ "created_at": "2021-01-03T22:38:59Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229373",
+ "id": 30229373,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzcz",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2155524,
+ "download_count": 235,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229376",
+ "id": 30229376,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzc2",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2148460,
+ "download_count": 127,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229377",
+ "id": 30229377,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzc3",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2153992,
+ "download_count": 13966,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229372",
+ "id": 30229372,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzcy",
+ "name": "task_linux_arm.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1987650,
+ "download_count": 14,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_arm.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229371",
+ "id": 30229371,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzcx",
+ "name": "task_linux_arm.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1986095,
+ "download_count": 15,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_arm.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229378",
+ "id": 30229378,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzc4",
+ "name": "task_linux_arm.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1992436,
+ "download_count": 16,
+ "created_at": "2021-01-03T22:38:59Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_arm.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229374",
+ "id": 30229374,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzc0",
+ "name": "task_linux_arm64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1961852,
+ "download_count": 16,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_arm64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229375",
+ "id": 30229375,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzc1",
+ "name": "task_linux_arm64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1957376,
+ "download_count": 15,
+ "created_at": "2021-01-03T22:38:58Z",
+ "updated_at": "2021-01-03T22:38:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_arm64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229383",
+ "id": 30229383,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzgz",
+ "name": "task_linux_arm64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1962496,
+ "download_count": 63,
+ "created_at": "2021-01-03T22:38:59Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_linux_arm64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229379",
+ "id": 30229379,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzc5",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2002680,
+ "download_count": 139,
+ "created_at": "2021-01-03T22:38:59Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/30229380",
+ "id": 30229380,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMwMjI5Mzgw",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2085135,
+ "download_count": 295,
+ "created_at": "2021-01-03T22:38:59Z",
+ "updated_at": "2021-01-03T22:38:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.1.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.1.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.1.0",
+ "body": "- Fix a bug when the checksum up-to-date resolution is used by a task with a custom `label:` attribute ([#412](https://github.com/go-task/task/issues/412)).\r\n- Starting from this release, we're releasing official ARMv6 and ARM64 binaries for Linux ([#375](https://github.com/go-task/task/issues/375), [#418](https://github.com/go-task/task/issues/418)).\r\n- Task now respects the order of declaration of included Taskfiles when evaluating variables declaring by them ([#393](https://github.com/go-task/task/issues/393)).\r\n- `set -e` is now automatically set on every command. This was done to fix an issue where multiline string commands wouldn't really fail unless the sentence was in the last line ([#403](https://github.com/go-task/task/issues/403))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/35738129",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/35738129/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/35738129/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.0.1",
+ "id": 35738129,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTM1NzM4MTI5",
+ "tag_name": "v3.0.1",
+ "target_commitish": "master",
+ "name": "v3.0.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2020-12-26T18:34:26Z",
+ "published_at": "2020-12-26T18:37:42Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995676",
+ "id": 29995676,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njc2",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 2193,
+ "created_at": "2020-12-26T18:36:03Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995680",
+ "id": 29995680,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njgw",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2243405,
+ "download_count": 450,
+ "created_at": "2020-12-26T18:36:03Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995682",
+ "id": 29995682,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njgy",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2011894,
+ "download_count": 128,
+ "created_at": "2020-12-26T18:36:04Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995683",
+ "id": 29995683,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njgz",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2009707,
+ "download_count": 126,
+ "created_at": "2020-12-26T18:36:04Z",
+ "updated_at": "2020-12-26T18:36:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995675",
+ "id": 29995675,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njc1",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2015512,
+ "download_count": 127,
+ "created_at": "2020-12-26T18:36:03Z",
+ "updated_at": "2020-12-26T18:36:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995681",
+ "id": 29995681,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njgx",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2153926,
+ "download_count": 193,
+ "created_at": "2020-12-26T18:36:04Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995684",
+ "id": 29995684,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njg0",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2147189,
+ "download_count": 125,
+ "created_at": "2020-12-26T18:36:04Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995678",
+ "id": 29995678,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njc4",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2152283,
+ "download_count": 2626,
+ "created_at": "2020-12-26T18:36:03Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995677",
+ "id": 29995677,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njc3",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2001104,
+ "download_count": 137,
+ "created_at": "2020-12-26T18:36:03Z",
+ "updated_at": "2020-12-26T18:36:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/29995679",
+ "id": 29995679,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDI5OTk1Njc5",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2083318,
+ "download_count": 268,
+ "created_at": "2020-12-26T18:36:03Z",
+ "updated_at": "2020-12-26T18:36:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.0.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.0.1",
+ "body": "- Allow use as a library by moving the required packages out of the `internal` directory ([#358](https://github.com/go-task/task/pull/358)).\r\n- Do not error if a specified dotenv file does not exist ([#378](https://github.com/go-task/task/issues/378), [#385](https://github.com/go-task/task/pull/385)).\r\n- Fix panic when you have empty tasks in your Taskfile ([#338](https://github.com/go-task/task/issues/338), [#362](https://github.com/go-task/task/pull/362))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/29753209",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/29753209/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/29753209/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.0.0",
+ "id": 29753209,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTI5NzUzMjA5",
+ "tag_name": "v3.0.0",
+ "target_commitish": "master",
+ "name": "v3.0.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2020-08-17T01:07:24Z",
+ "published_at": "2020-08-17T01:13:07Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989186",
+ "id": 23989186,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTg2",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 225783,
+ "created_at": "2020-08-17T01:09:09Z",
+ "updated_at": "2020-08-17T01:09:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989185",
+ "id": 23989185,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTg1",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2441077,
+ "download_count": 6921,
+ "created_at": "2020-08-17T01:09:09Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989191",
+ "id": 23989191,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTkx",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2248378,
+ "download_count": 148,
+ "created_at": "2020-08-17T01:09:10Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989192",
+ "id": 23989192,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTky",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2244836,
+ "download_count": 138,
+ "created_at": "2020-08-17T01:09:10Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989187",
+ "id": 23989187,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTg3",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2249960,
+ "download_count": 292,
+ "created_at": "2020-08-17T01:09:09Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989189",
+ "id": 23989189,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTg5",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2350438,
+ "download_count": 16397,
+ "created_at": "2020-08-17T01:09:10Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989193",
+ "id": 23989193,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTkz",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2342742,
+ "download_count": 10792,
+ "created_at": "2020-08-17T01:09:10Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989190",
+ "id": 23989190,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTkw",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2348803,
+ "download_count": 340948,
+ "created_at": "2020-08-17T01:09:10Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989184",
+ "id": 23989184,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTg0",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2150051,
+ "download_count": 228,
+ "created_at": "2020-08-17T01:09:09Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/23989188",
+ "id": 23989188,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTg5MTg4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2252762,
+ "download_count": 5120,
+ "created_at": "2020-08-17T01:09:10Z",
+ "updated_at": "2020-08-17T01:09:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.0.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.0.0",
+ "body": "## Changelog\r\n\r\n- On `v3`, all CLI variables will be considered global variables ([#336](https://github.com/go-task/task/issues/336), [#341](https://github.com/go-task/task/pull/341))\r\n- Add support to `.env` like files ([#324](https://github.com/go-task/task/issues/324), [#356](https://github.com/go-task/task/pull/356)).\r\n- Add `label:` to task so you can override the task name in the logs ([#321](https://github.com/go-task/task/issues/321]), [#337](https://github.com/go-task/task/pull/337)).\r\n- Refactor how variables work on version 3 ([#311](https://github.com/go-task/task/pull/311)).\r\n- Disallow `expansions` on v3 since it has no effect.\r\n- `Taskvars.yml` is not automatically included anymore.\r\n- `Taskfile_{{OS}}.yml` is not automatically included anymore.\r\n- Allow interpolation on `includes`, so you can manually include a Taskfile based on operation system, for example.\r\n- Expose `.TASK` variable in templates with the task name ([#252](https://github.com/go-task/task/issues/252)).\r\n- Implement short task syntax ([#194](https://github.com/go-task/task/issues/194), [#240](https://github.com/go-task/task/pull/240)).\r\n- Added option to make included Taskfile run commands on its own directory ([#260](https://github.com/go-task/task/issues/260), [#144](https://github.com/go-task/task/issues/144))\r\n- Taskfiles in version 1 are not supported anymore ([#237](https://github.com/go-task/task/pull/237)).\r\n- Added global `method:` option. With this option, you can set a default method to all tasks in a Taskfile ([#246](https://github.com/go-task/task/issues/246)).\r\n- Changed default method from `timestamp` to `checksum` ([#246](https://github.com/go-task/task/issues/246)).\r\n- New magic variables are now available when using `status:`: `.TIMESTAMP` which contains the greatest modification date from the files listed in `sources:`, and `.CHECKSUM`, which contains a checksum of all files listed in `status:`. This is useful for manual checking when using external, or even remote, artifacts when using `status:` ([#216](https://github.com/go-task/task/pull/216)).\r\n- We're now using [slim-sprig](https://github.com/go-task/slim-sprig) instead of [sprig](https://github.com/Masterminds/sprig), which allowed a file size reduction of about 22% ([#219](https://github.com/go-task/task/pull/219)).\r\n- We now use some colors on Task output to better distinguish message types - commands are green, errors are red, etc ([#207](https://github.com/go-task/task/pull/207))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/26741645",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/26741645/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/26741645/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.0.0-preview4",
+ "id": 26741645,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTI2NzQxNjQ1",
+ "tag_name": "v3.0.0-preview4",
+ "target_commitish": "master",
+ "name": "v3.0.0-preview4",
+ "draft": false,
+ "prerelease": true,
+ "created_at": "2020-05-21T01:32:51Z",
+ "published_at": "2020-05-21T01:37:18Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928084",
+ "id": 20928084,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDg0",
+ "name": "task_checksums.txt",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 298,
+ "created_at": "2020-05-21T01:38:04Z",
+ "updated_at": "2020-05-21T01:38:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928031",
+ "id": 20928031,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDMx",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2432212,
+ "download_count": 140,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:34:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928028",
+ "id": 20928028,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDI4",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2240302,
+ "download_count": 131,
+ "created_at": "2020-05-21T01:34:50Z",
+ "updated_at": "2020-05-21T01:34:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928035",
+ "id": 20928035,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDM1",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2237188,
+ "download_count": 127,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:34:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928033",
+ "id": 20928033,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDMz",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2243695,
+ "download_count": 128,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:34:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928036",
+ "id": 20928036,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDM2",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2341636,
+ "download_count": 155,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:34:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928037",
+ "id": 20928037,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDM3",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2335006,
+ "download_count": 137,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:34:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928034",
+ "id": 20928034,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDM0",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2340171,
+ "download_count": 979,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:34:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928030",
+ "id": 20928030,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDMw",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2140874,
+ "download_count": 138,
+ "created_at": "2020-05-21T01:34:50Z",
+ "updated_at": "2020-05-21T01:37:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20928032",
+ "id": 20928032,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI4MDMy",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2241560,
+ "download_count": 167,
+ "created_at": "2020-05-21T01:34:51Z",
+ "updated_at": "2020-05-21T01:37:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview4/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.0.0-preview4",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.0.0-preview4",
+ "body": "This is probably the last v3 preview release before it's released as stable.\r\n\r\n## Changelog\r\n\r\n- Refactor how variables work on version 3 ([#311](https://github.com/go-task/task/pull/311)).\r\n- Disallow `expansions` on v3 since it has no effect.\r\n- `Taskvars.yml` is not automatically included anymore.\r\n- `Taskfile_{{OS}}.yml` is not automatically included anymore.\r\n- Allow interpolation on `includes`, so you can manually include a Taskfile based on operation system, for example."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/26737635",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/26737635/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/26737635/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.8.1",
+ "id": 26737635,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTI2NzM3NjM1",
+ "tag_name": "v2.8.1",
+ "target_commitish": "master",
+ "name": "v2.8.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2020-05-20T22:26:30Z",
+ "published_at": "2020-05-20T22:33:31Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925414",
+ "id": 20925414,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1NDE0",
+ "name": "task_checksums.txt",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 337274,
+ "created_at": "2020-05-20T22:37:07Z",
+ "updated_at": "2020-05-20T22:37:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925218",
+ "id": 20925218,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjE4",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2745650,
+ "download_count": 11924,
+ "created_at": "2020-05-20T22:29:23Z",
+ "updated_at": "2020-05-20T22:29:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925220",
+ "id": 20925220,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjIw",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2526254,
+ "download_count": 141,
+ "created_at": "2020-05-20T22:29:23Z",
+ "updated_at": "2020-05-20T22:29:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925221",
+ "id": 20925221,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjIx",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2523864,
+ "download_count": 132,
+ "created_at": "2020-05-20T22:29:23Z",
+ "updated_at": "2020-05-20T22:29:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925213",
+ "id": 20925213,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjEz",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2526999,
+ "download_count": 189,
+ "created_at": "2020-05-20T22:29:22Z",
+ "updated_at": "2020-05-20T22:29:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925217",
+ "id": 20925217,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjE3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2621852,
+ "download_count": 361,
+ "created_at": "2020-05-20T22:29:23Z",
+ "updated_at": "2020-05-20T22:29:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925222",
+ "id": 20925222,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjIy",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2614253,
+ "download_count": 234,
+ "created_at": "2020-05-20T22:29:23Z",
+ "updated_at": "2020-05-20T22:29:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925219",
+ "id": 20925219,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjE5",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2618981,
+ "download_count": 399535,
+ "created_at": "2020-05-20T22:29:23Z",
+ "updated_at": "2020-05-20T22:29:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925215",
+ "id": 20925215,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjE1",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2581119,
+ "download_count": 202,
+ "created_at": "2020-05-20T22:29:22Z",
+ "updated_at": "2020-05-20T22:33:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/20925214",
+ "id": 20925214,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDIwOTI1MjE0",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2687325,
+ "download_count": 9287,
+ "created_at": "2020-05-20T22:29:22Z",
+ "updated_at": "2020-05-20T22:33:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.8.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.8.1",
+ "body": "This is probably the last v2 release before v3 is considered stable. See https://github.com/go-task/task/issues/195 and https://github.com/go-task/task/pull/220.\r\n\r\n## Changelog\r\n\r\n- Fix error code for the `--help` flag ([#300](https://github.com/go-task/task/issues/300), [#330](https://github.com/go-task/task/pull/330)).\r\n- Print version to stdout instead of stderr ([#299](https://github.com/go-task/task/issues/299), [#329](https://github.com/go-task/task/pull/329)).\r\n- Supress `context` errors when using the `--watch` flag ([#313](https://github.com/go-task/task/issues/313), [#317](https://github.com/go-task/task/pull/317)).\r\n- Support templating on description ([#276](https://github.com/go-task/task/issues/276), [#283](https://github.com/go-task/task/pull/283))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/24959447",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/24959447/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/24959447/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.0.0-preview3",
+ "id": 24959447,
+ "author": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTI0OTU5NDQ3",
+ "tag_name": "v3.0.0-preview3",
+ "target_commitish": "master",
+ "name": "v3.0.0-preview3",
+ "draft": false,
+ "prerelease": true,
+ "created_at": "2020-03-28T14:01:41Z",
+ "published_at": "2020-03-28T14:05:30Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088991",
+ "id": 19088991,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTkx",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 280,
+ "created_at": "2020-03-28T14:03:11Z",
+ "updated_at": "2020-03-28T14:03:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088993",
+ "id": 19088993,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTkz",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2368371,
+ "download_count": 139,
+ "created_at": "2020-03-28T14:03:12Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088994",
+ "id": 19088994,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTk0",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2177124,
+ "download_count": 129,
+ "created_at": "2020-03-28T14:03:12Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088996",
+ "id": 19088996,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTk2",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2174799,
+ "download_count": 130,
+ "created_at": "2020-03-28T14:03:12Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088989",
+ "id": 19088989,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTg5",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2181979,
+ "download_count": 129,
+ "created_at": "2020-03-28T14:03:11Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088995",
+ "id": 19088995,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTk1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2274202,
+ "download_count": 137,
+ "created_at": "2020-03-28T14:03:12Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088997",
+ "id": 19088997,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTk3",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2267381,
+ "download_count": 132,
+ "created_at": "2020-03-28T14:03:12Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088992",
+ "id": 19088992,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTky",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2278422,
+ "download_count": 291,
+ "created_at": "2020-03-28T14:03:12Z",
+ "updated_at": "2020-03-28T14:03:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088990",
+ "id": 19088990,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTkw",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2090645,
+ "download_count": 133,
+ "created_at": "2020-03-28T14:03:11Z",
+ "updated_at": "2020-03-28T14:03:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/19088988",
+ "id": 19088988,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE5MDg4OTg4",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "github-actions[bot]",
+ "id": 41898282,
+ "node_id": "MDM6Qm90NDE4OTgyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/github-actions%5Bbot%5D",
+ "html_url": "https://github.com/apps/github-actions",
+ "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
+ "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
+ "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
+ "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
+ "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
+ "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
+ "type": "Bot",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2196589,
+ "download_count": 150,
+ "created_at": "2020-03-28T14:03:11Z",
+ "updated_at": "2020-03-28T14:03:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview3/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.0.0-preview3",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.0.0-preview3",
+ "body": "## Changelog\r\n\r\n- Expose `.TASK` variable in templates with the task name ([#252](https://github.com/go-task/task/issues/252)).\r\n- Implement short task syntax ([#194](https://github.com/go-task/task/issues/194), [#240](https://github.com/go-task/task/pull/240)).\r\n- Added option to make included Taskfile run commands on its own directory ([#260](https://github.com/go-task/task/issues/260), [#144](https://github.com/go-task/task/issues/144))\r\n- Merged improvements from master into the `v3` branch"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/22051994",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/22051994/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/22051994/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.8.0",
+ "id": 22051994,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTIyMDUxOTk0",
+ "tag_name": "v2.8.0",
+ "target_commitish": "master",
+ "name": "v2.8.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-12-08T00:54:31Z",
+ "published_at": "2019-12-08T00:58:22Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659952",
+ "id": 16659952,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTUy",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 159513,
+ "created_at": "2019-12-08T00:56:10Z",
+ "updated_at": "2019-12-08T00:56:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659962",
+ "id": 16659962,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTYy",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2706208,
+ "download_count": 5204,
+ "created_at": "2019-12-08T00:56:48Z",
+ "updated_at": "2019-12-08T00:57:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659958",
+ "id": 16659958,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTU4",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2472432,
+ "download_count": 804,
+ "created_at": "2019-12-08T00:56:31Z",
+ "updated_at": "2019-12-08T00:56:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659959",
+ "id": 16659959,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTU5",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2469299,
+ "download_count": 134,
+ "created_at": "2019-12-08T00:56:33Z",
+ "updated_at": "2019-12-08T00:56:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659953",
+ "id": 16659953,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTUz",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2478462,
+ "download_count": 153,
+ "created_at": "2019-12-08T00:56:10Z",
+ "updated_at": "2019-12-08T00:56:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659957",
+ "id": 16659957,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTU3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2573218,
+ "download_count": 7210,
+ "created_at": "2019-12-08T00:56:10Z",
+ "updated_at": "2019-12-08T00:56:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659960",
+ "id": 16659960,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTYw",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2566656,
+ "download_count": 167,
+ "created_at": "2019-12-08T00:56:36Z",
+ "updated_at": "2019-12-08T00:57:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659961",
+ "id": 16659961,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTYx",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2578960,
+ "download_count": 779245,
+ "created_at": "2019-12-08T00:56:43Z",
+ "updated_at": "2019-12-08T00:57:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659954",
+ "id": 16659954,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTU0",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2552501,
+ "download_count": 210,
+ "created_at": "2019-12-08T00:56:10Z",
+ "updated_at": "2019-12-08T00:56:43Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16659955",
+ "id": 16659955,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NjU5OTU1",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2678405,
+ "download_count": 1492,
+ "created_at": "2019-12-08T00:56:10Z",
+ "updated_at": "2019-12-08T00:56:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.8.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.8.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.8.0",
+ "body": "- Add `--parallel` flag (alias `-p`) to run tasks given by the command line in parallel ([#266](https://github.com/go-task/task/pull/266)).\r\n- Fixed bug where calling the `task` CLI only informing global vars would not execute the `default` task.\r\n- Add hability to silent all tasks by adding `silent: true` a the root of the Taskfile."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/21351566",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/21351566/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/21351566/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.7.1",
+ "id": 21351566,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTIxMzUxNTY2",
+ "tag_name": "v2.7.1",
+ "target_commitish": "master",
+ "name": "v2.7.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-11-10T23:36:28Z",
+ "published_at": "2019-11-10T23:42:15Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076682",
+ "id": 16076682,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njgy",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 23041,
+ "created_at": "2019-11-10T23:41:01Z",
+ "updated_at": "2019-11-10T23:41:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076680",
+ "id": 16076680,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njgw",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2702128,
+ "download_count": 723,
+ "created_at": "2019-11-10T23:41:01Z",
+ "updated_at": "2019-11-10T23:41:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076691",
+ "id": 16076691,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njkx",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2467504,
+ "download_count": 139,
+ "created_at": "2019-11-10T23:41:17Z",
+ "updated_at": "2019-11-10T23:41:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076681",
+ "id": 16076681,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njgx",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2465226,
+ "download_count": 172,
+ "created_at": "2019-11-10T23:41:01Z",
+ "updated_at": "2019-11-10T23:41:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076684",
+ "id": 16076684,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njg0",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2474123,
+ "download_count": 139,
+ "created_at": "2019-11-10T23:41:01Z",
+ "updated_at": "2019-11-10T23:41:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076683",
+ "id": 16076683,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njgz",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2569200,
+ "download_count": 1671,
+ "created_at": "2019-11-10T23:41:01Z",
+ "updated_at": "2019-11-10T23:41:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076688",
+ "id": 16076688,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njg4",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2562258,
+ "download_count": 135,
+ "created_at": "2019-11-10T23:41:14Z",
+ "updated_at": "2019-11-10T23:41:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076687",
+ "id": 16076687,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njg3",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2573711,
+ "download_count": 32708,
+ "created_at": "2019-11-10T23:41:12Z",
+ "updated_at": "2019-11-10T23:41:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076689",
+ "id": 16076689,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njg5",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2546822,
+ "download_count": 159,
+ "created_at": "2019-11-10T23:41:15Z",
+ "updated_at": "2019-11-10T23:41:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/16076685",
+ "id": 16076685,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MDc2Njg1",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2671423,
+ "download_count": 2822,
+ "created_at": "2019-11-10T23:41:08Z",
+ "updated_at": "2019-11-10T23:41:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.7.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.7.1",
+ "body": "## Changelog\r\n\r\n- Fix error being raised when `exit 0` was called ([#251](https://github.com/go-task/task/issues/251))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/20166510",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/20166510/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/20166510/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.0.0-preview2",
+ "id": 20166510,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTIwMTY2NTEw",
+ "tag_name": "v3.0.0-preview2",
+ "target_commitish": "master",
+ "name": "v3.0.0-preview2",
+ "draft": false,
+ "prerelease": true,
+ "created_at": "2019-09-22T21:44:36Z",
+ "published_at": "2019-09-22T21:47:56Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060722",
+ "id": 15060722,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzIy",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 130,
+ "created_at": "2019-09-22T21:45:22Z",
+ "updated_at": "2019-09-22T21:45:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060729",
+ "id": 15060729,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzI5",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2115929,
+ "download_count": 134,
+ "created_at": "2019-09-22T21:45:29Z",
+ "updated_at": "2019-09-22T21:45:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060723",
+ "id": 15060723,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzIz",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1922648,
+ "download_count": 132,
+ "created_at": "2019-09-22T21:45:22Z",
+ "updated_at": "2019-09-22T21:45:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060730",
+ "id": 15060730,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzMw",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1872777,
+ "download_count": 133,
+ "created_at": "2019-09-22T21:45:32Z",
+ "updated_at": "2019-09-22T21:45:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060726",
+ "id": 15060726,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzI2",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1929154,
+ "download_count": 133,
+ "created_at": "2019-09-22T21:45:23Z",
+ "updated_at": "2019-09-22T21:45:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060725",
+ "id": 15060725,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzI1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2012534,
+ "download_count": 133,
+ "created_at": "2019-09-22T21:45:22Z",
+ "updated_at": "2019-09-22T21:45:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060731",
+ "id": 15060731,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzMx",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1976714,
+ "download_count": 136,
+ "created_at": "2019-09-22T21:45:33Z",
+ "updated_at": "2019-09-22T21:45:37Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060728",
+ "id": 15060728,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzI4",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2017025,
+ "download_count": 209,
+ "created_at": "2019-09-22T21:45:28Z",
+ "updated_at": "2019-09-22T21:45:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060727",
+ "id": 15060727,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzI3",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2007549,
+ "download_count": 134,
+ "created_at": "2019-09-22T21:45:28Z",
+ "updated_at": "2019-09-22T21:45:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060724",
+ "id": 15060724,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNzI0",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2116294,
+ "download_count": 155,
+ "created_at": "2019-09-22T21:45:22Z",
+ "updated_at": "2019-09-22T21:45:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview2/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.0.0-preview2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.0.0-preview2",
+ "body": "## Changelog\r\n\r\n- Taskfiles in version 1 are not supported anymore ([#237](https://github.com/go-task/task/pull/237)).\r\n- Added global `method:` option. With this option, you can set a default method to all tasks in a Taskfile ([#246](https://github.com/go-task/task/issues/246)).\r\n- Changed default method from `timestamp` to `checksum` ([#246](https://github.com/go-task/task/issues/246)).\r\n- New magic variables are now available when using `status:`: `.TIMESTAMP` which contains the greatest modification date from the files listed in `sources:`, and `.CHECKSUM`, which contains a checksum of all files listed in `status:`. This is useful for manual checking when using external, or even remote, artifacts when using `status:` ([#216](https://github.com/go-task/task/pull/216)).\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/20166448",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/20166448/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/20166448/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.7.0",
+ "id": 20166448,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTIwMTY2NDQ4",
+ "tag_name": "v2.7.0",
+ "target_commitish": "master",
+ "name": "v2.7.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-09-22T21:21:39Z",
+ "published_at": "2019-09-22T21:38:14Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060618",
+ "id": 15060618,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjE4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 37914,
+ "created_at": "2019-09-22T21:35:17Z",
+ "updated_at": "2019-09-22T21:35:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060622",
+ "id": 15060622,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjIy",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2701796,
+ "download_count": 920,
+ "created_at": "2019-09-22T21:35:22Z",
+ "updated_at": "2019-09-22T21:35:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060621",
+ "id": 15060621,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjIx",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2466746,
+ "download_count": 134,
+ "created_at": "2019-09-22T21:35:17Z",
+ "updated_at": "2019-09-22T21:35:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060624",
+ "id": 15060624,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjI0",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2402136,
+ "download_count": 135,
+ "created_at": "2019-09-22T21:35:26Z",
+ "updated_at": "2019-09-22T21:35:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060623",
+ "id": 15060623,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjIz",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2472915,
+ "download_count": 138,
+ "created_at": "2019-09-22T21:35:25Z",
+ "updated_at": "2019-09-22T21:35:30Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060620",
+ "id": 15060620,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjIw",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2568710,
+ "download_count": 226,
+ "created_at": "2019-09-22T21:35:17Z",
+ "updated_at": "2019-09-22T21:35:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060626",
+ "id": 15060626,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjI2",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2520890,
+ "download_count": 135,
+ "created_at": "2019-09-22T21:35:31Z",
+ "updated_at": "2019-09-22T21:35:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060619",
+ "id": 15060619,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjE5",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2573147,
+ "download_count": 63496,
+ "created_at": "2019-09-22T21:35:17Z",
+ "updated_at": "2019-09-22T21:35:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060617",
+ "id": 15060617,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjE3",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2535293,
+ "download_count": 172,
+ "created_at": "2019-09-22T21:35:17Z",
+ "updated_at": "2019-09-22T21:35:26Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/15060625",
+ "id": 15060625,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MDYwNjI1",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2663651,
+ "download_count": 566,
+ "created_at": "2019-09-22T21:35:27Z",
+ "updated_at": "2019-09-22T21:35:33Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.7.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.7.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.7.0",
+ "body": "## Changelog\r\n\r\n- Fixed panic bug when assigning a global variable ([#229](https://github.com/go-task/task/issues/229), [#243](https://github.com/go-task/task/issues/234)).\r\n- A task with `method: checksum` will now re-run if generated files are deleted ([#228](https://github.com/go-task/task/pull/228), [#238](https://github.com/go-task/task/issues/238))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/19219428",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/19219428/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/19219428/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v3.0.0-preview1",
+ "id": 19219428,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE5MjE5NDI4",
+ "tag_name": "v3.0.0-preview1",
+ "target_commitish": "master",
+ "name": "v3.0.0-preview1",
+ "draft": false,
+ "prerelease": true,
+ "created_at": "2019-08-12T02:44:16Z",
+ "published_at": "2019-08-12T02:52:38Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326400",
+ "id": 14326400,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDAw",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 124,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326403",
+ "id": 14326403,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDAz",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 2007036,
+ "download_count": 3088,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326405",
+ "id": 14326405,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDA1",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1818594,
+ "download_count": 132,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326407",
+ "id": 14326407,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDA3",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1767821,
+ "download_count": 132,
+ "created_at": "2019-08-12T02:48:07Z",
+ "updated_at": "2019-08-12T02:48:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326398",
+ "id": 14326398,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2Mzk4",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1822325,
+ "download_count": 132,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326404",
+ "id": 14326404,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDA0",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1910998,
+ "download_count": 138,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326406",
+ "id": 14326406,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDA2",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1875558,
+ "download_count": 133,
+ "created_at": "2019-08-12T02:48:07Z",
+ "updated_at": "2019-08-12T02:48:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326402",
+ "id": 14326402,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDAy",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1915131,
+ "download_count": 6497,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326401",
+ "id": 14326401,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2NDAx",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1892754,
+ "download_count": 136,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/14326399",
+ "id": 14326399,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MzI2Mzk5",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2004689,
+ "download_count": 3727,
+ "created_at": "2019-08-12T02:48:06Z",
+ "updated_at": "2019-08-12T02:48:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v3.0.0-preview1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v3.0.0-preview1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v3.0.0-preview1",
+ "body": "## Changelog\r\n\r\n- We're now using [slim-sprig](https://github.com/go-task/slim-sprig) instead of [sprig](https://github.com/Masterminds/sprig), which allowed a file size reduction of about 22% ([#219](https://github.com/go-task/task/pull/219)).\r\n- We now use some colors on Task output to better distinguish message types - commands are green, errors are red, etc ([#207](https://github.com/go-task/task/pull/207))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/18757053",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/18757053/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/18757053/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.6.0",
+ "id": 18757053,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE4NzU3MDUz",
+ "tag_name": "v2.6.0",
+ "target_commitish": "master",
+ "name": "v2.6.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-07-21T14:11:42Z",
+ "published_at": "2019-07-21T14:16:30Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832028",
+ "id": 13832028,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDI4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 32915,
+ "created_at": "2019-07-21T14:14:52Z",
+ "updated_at": "2019-07-21T14:14:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832037",
+ "id": 13832037,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDM3",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2704963,
+ "download_count": 5295,
+ "created_at": "2019-07-21T14:14:53Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832032",
+ "id": 13832032,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDMy",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2438454,
+ "download_count": 138,
+ "created_at": "2019-07-21T14:14:52Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832034",
+ "id": 13832034,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDM0",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2369304,
+ "download_count": 133,
+ "created_at": "2019-07-21T14:14:53Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832030",
+ "id": 13832030,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDMw",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2444057,
+ "download_count": 139,
+ "created_at": "2019-07-21T14:14:52Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832033",
+ "id": 13832033,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDMz",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2557080,
+ "download_count": 177,
+ "created_at": "2019-07-21T14:14:53Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832035",
+ "id": 13832035,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDM1",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2505706,
+ "download_count": 147,
+ "created_at": "2019-07-21T14:14:53Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832036",
+ "id": 13832036,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDM2",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2562423,
+ "download_count": 62685,
+ "created_at": "2019-07-21T14:14:53Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832029",
+ "id": 13832029,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDI5",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2508638,
+ "download_count": 166,
+ "created_at": "2019-07-21T14:14:52Z",
+ "updated_at": "2019-07-21T14:14:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/13832031",
+ "id": 13832031,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODMyMDMx",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2652468,
+ "download_count": 5095,
+ "created_at": "2019-07-21T14:14:52Z",
+ "updated_at": "2019-07-21T14:14:53Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.6.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.6.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.6.0",
+ "body": "- Fixed some bugs regarding minor version checks on `version:`.\r\n- Add `preconditions:` to task ([#205](https://github.com/go-task/task/pull/205)).\r\n- Create directory informed on `dir:` if it doesn't exist ([#209](https://github.com/go-task/task/issues/209), [#211](https://github.com/go-task/task/pull/211)).\r\n- We now have a `--taskfile` flag (alias `-t`), which can be used to run another Taskfile (other than the default `Taskfile.yml`) ([#221](https://github.com/go-task/task/pull/221)).\r\n- It's now possible to install Task using Homebrew on Linux ([go-task/homebrew-tap#1](https://github.com/go-task/homebrew-tap/pull/1))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/17292253",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/17292253/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/17292253/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.5.2",
+ "id": 17292253,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE3MjkyMjUz",
+ "tag_name": "v2.5.2",
+ "target_commitish": "master",
+ "name": "v2.5.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-05-11T14:28:39Z",
+ "published_at": "2019-05-11T14:33:09Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574244",
+ "id": 12574244,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQ0",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 31515,
+ "created_at": "2019-05-11T14:32:24Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574250",
+ "id": 12574250,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjUw",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2700327,
+ "download_count": 3757,
+ "created_at": "2019-05-11T14:32:25Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574242",
+ "id": 12574242,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQy",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2435312,
+ "download_count": 138,
+ "created_at": "2019-05-11T14:32:24Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574246",
+ "id": 12574246,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQ2",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2365489,
+ "download_count": 139,
+ "created_at": "2019-05-11T14:32:25Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574249",
+ "id": 12574249,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQ5",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2440057,
+ "download_count": 457,
+ "created_at": "2019-05-11T14:32:25Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574245",
+ "id": 12574245,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQ1",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2552468,
+ "download_count": 160,
+ "created_at": "2019-05-11T14:32:25Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574247",
+ "id": 12574247,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQ3",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2500563,
+ "download_count": 146,
+ "created_at": "2019-05-11T14:32:25Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574248",
+ "id": 12574248,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQ4",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2557597,
+ "download_count": 42548,
+ "created_at": "2019-05-11T14:32:25Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574243",
+ "id": 12574243,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQz",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2504330,
+ "download_count": 13881,
+ "created_at": "2019-05-11T14:32:24Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12574241",
+ "id": 12574241,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNTc0MjQx",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2648276,
+ "download_count": 3898,
+ "created_at": "2019-05-11T14:32:24Z",
+ "updated_at": "2019-05-11T14:32:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.2/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.5.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.5.2",
+ "body": "## Changelog\r\n\r\n- Reverted YAML upgrade due issues with CRLF on Windows ([#201](https://github.com/go-task/task/issues/201), [go-yaml/yaml#450](https://github.com/go-yaml/yaml/issues/450)).\r\n- Allow setting global variables through the CLI ([#192](https://github.com/go-task/task/issues/192))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/17020310",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/17020310/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/17020310/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.5.1",
+ "id": 17020310,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE3MDIwMzEw",
+ "tag_name": "v2.5.1",
+ "target_commitish": "master",
+ "name": "v2.5.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-04-27T20:56:35Z",
+ "published_at": "2019-04-27T21:00:49Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271708",
+ "id": 12271708,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzA4",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 6375,
+ "created_at": "2019-04-27T20:59:47Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271717",
+ "id": 12271717,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzE3",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2560811,
+ "download_count": 299,
+ "created_at": "2019-04-27T20:59:48Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271709",
+ "id": 12271709,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzA5",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2317544,
+ "download_count": 140,
+ "created_at": "2019-04-27T20:59:47Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271713",
+ "id": 12271713,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzEz",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2249464,
+ "download_count": 137,
+ "created_at": "2019-04-27T20:59:48Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271716",
+ "id": 12271716,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzE2",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2320797,
+ "download_count": 140,
+ "created_at": "2019-04-27T20:59:48Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271712",
+ "id": 12271712,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzEy",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2438362,
+ "download_count": 153,
+ "created_at": "2019-04-27T20:59:48Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271714",
+ "id": 12271714,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzE0",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2388436,
+ "download_count": 137,
+ "created_at": "2019-04-27T20:59:48Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271715",
+ "id": 12271715,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzE1",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2441671,
+ "download_count": 7402,
+ "created_at": "2019-04-27T20:59:48Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271710",
+ "id": 12271710,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzEw",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2377863,
+ "download_count": 141,
+ "created_at": "2019-04-27T20:59:47Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/12271711",
+ "id": 12271711,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjcxNzEx",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2522424,
+ "download_count": 184,
+ "created_at": "2019-04-27T20:59:47Z",
+ "updated_at": "2019-04-27T20:59:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.5.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.5.1",
+ "body": "## Changelog\r\n\r\n- Fixed some issues with interactive command line tools, where sometimes the output were not being shown, and similar issues ([#114](https://github.com/go-task/task/issues/114), [#190](https://github.com/go-task/task/issues/190), [#200](https://github.com/go-task/task/pull/200)).\r\n- Upgraded [go-yaml/yaml](https://github.com/go-yaml/yaml) from v2 to v3."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/16156745",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/16156745/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/16156745/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.5.0",
+ "id": 16156745,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE2MTU2NzQ1",
+ "tag_name": "v2.5.0",
+ "target_commitish": "master",
+ "name": "v2.5.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-03-16T13:46:30Z",
+ "published_at": "2019-03-16T13:51:23Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571275",
+ "id": 11571275,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjc1",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 19940,
+ "created_at": "2019-03-16T13:49:47Z",
+ "updated_at": "2019-03-16T13:49:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571273",
+ "id": 11571273,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjcz",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2542961,
+ "download_count": 759,
+ "created_at": "2019-03-16T13:49:47Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571279",
+ "id": 11571279,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjc5",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2303664,
+ "download_count": 133,
+ "created_at": "2019-03-16T13:49:48Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571280",
+ "id": 11571280,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjgw",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2235927,
+ "download_count": 131,
+ "created_at": "2019-03-16T13:49:48Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571276",
+ "id": 11571276,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjc2",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2307378,
+ "download_count": 164,
+ "created_at": "2019-03-16T13:49:47Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571277",
+ "id": 11571277,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjc3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2422410,
+ "download_count": 158,
+ "created_at": "2019-03-16T13:49:48Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571281",
+ "id": 11571281,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjgx",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2371031,
+ "download_count": 135,
+ "created_at": "2019-03-16T13:49:48Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571278",
+ "id": 11571278,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjc4",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2426847,
+ "download_count": 23210,
+ "created_at": "2019-03-16T13:49:48Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571272",
+ "id": 11571272,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjcy",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2362306,
+ "download_count": 139,
+ "created_at": "2019-03-16T13:49:47Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11571274",
+ "id": 11571274,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExNTcxMjc0",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2505346,
+ "download_count": 209,
+ "created_at": "2019-03-16T13:49:47Z",
+ "updated_at": "2019-03-16T13:49:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.5.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.5.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.5.0",
+ "body": "## Changelog\r\n\r\n- We moved from the taskfile.org domain to the new fancy taskfile.dev domain. While stuff is being redirected, we strongly recommend to everyone that use [this install script](https://taskfile.dev/#/installation?id=install-script) to use the new taskfile.dev domain on scripts from now on.\r\n- Fixed to the ZSH completion ([#182](https://github.com/go-task/task/pull/182)).\r\n- Add [`--summary` flag along with `summary:` task attribute](https://taskfile.org/#/usage?id=display-summary-of-task) ([#180](https://github.com/go-task/task/pull/180))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/15707888",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/15707888/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/15707888/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.4.0",
+ "id": 15707888,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE1NzA3ODg4",
+ "tag_name": "v2.4.0",
+ "target_commitish": "master",
+ "name": "v2.4.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-02-22T00:39:45Z",
+ "published_at": "2019-02-22T00:45:55Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186610",
+ "id": 11186610,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjEw",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 8952,
+ "created_at": "2019-02-22T00:43:28Z",
+ "updated_at": "2019-02-22T00:43:28Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186612",
+ "id": 11186612,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjEy",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2539533,
+ "download_count": 383,
+ "created_at": "2019-02-22T00:43:28Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186618",
+ "id": 11186618,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjE4",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2301186,
+ "download_count": 139,
+ "created_at": "2019-02-22T00:43:29Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186619",
+ "id": 11186619,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjE5",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2233198,
+ "download_count": 131,
+ "created_at": "2019-02-22T00:43:29Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186614",
+ "id": 11186614,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjE0",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2304524,
+ "download_count": 135,
+ "created_at": "2019-02-22T00:43:29Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186617",
+ "id": 11186617,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjE3",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2419574,
+ "download_count": 315,
+ "created_at": "2019-02-22T00:43:29Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186620",
+ "id": 11186620,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjIw",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2368671,
+ "download_count": 134,
+ "created_at": "2019-02-22T00:43:29Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186616",
+ "id": 11186616,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjE2",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2423159,
+ "download_count": 9461,
+ "created_at": "2019-02-22T00:43:29Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186611",
+ "id": 11186611,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjEx",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2359651,
+ "download_count": 135,
+ "created_at": "2019-02-22T00:43:28Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/11186613",
+ "id": 11186613,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDExMTg2NjEz",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2502140,
+ "download_count": 182,
+ "created_at": "2019-02-22T00:43:28Z",
+ "updated_at": "2019-02-22T00:43:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.4.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.4.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.4.0",
+ "body": "## Changelog\r\n\r\n- Allow calling a task of the root Taskfile from an included Taskfile by prefixing it with `:` ([#161](https://github.com/go-task/task/issues/161), [#172](https://github.com/go-task/task/issues/172)),\r\n- Add flag to override the `output` option ([#173](https://github.com/go-task/task/pull/173));\r\n- Fix bug where Task was persisting the new checksum on the disk when the Dry Mode is enabled ([#166](https://github.com/go-task/task/issues/166));\r\n- Fix file timestamp issue when the file name has spaces ([#176](https://github.com/go-task/task/issues/176));\r\n- Mitigating path expanding issues on Windows ([#170](https://github.com/go-task/task/pull/170))."
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/14769031",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/14769031/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/14769031/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.3.0",
+ "id": 14769031,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE0NzY5MDMx",
+ "tag_name": "v2.3.0",
+ "target_commitish": "master",
+ "name": "v2.3.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2019-01-02T15:44:35Z",
+ "published_at": "2019-01-02T15:51:48Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382215",
+ "id": 10382215,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjE1",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 9049,
+ "created_at": "2019-01-02T15:48:21Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382214",
+ "id": 10382214,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjE0",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2538657,
+ "download_count": 658,
+ "created_at": "2019-01-02T15:48:21Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382223",
+ "id": 10382223,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjIz",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2299498,
+ "download_count": 134,
+ "created_at": "2019-01-02T15:48:22Z",
+ "updated_at": "2019-01-02T15:48:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382221",
+ "id": 10382221,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjIx",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2231979,
+ "download_count": 134,
+ "created_at": "2019-01-02T15:48:22Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382218",
+ "id": 10382218,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjE4",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2302698,
+ "download_count": 142,
+ "created_at": "2019-01-02T15:48:22Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382220",
+ "id": 10382220,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjIw",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2418536,
+ "download_count": 163,
+ "created_at": "2019-01-02T15:48:22Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382222",
+ "id": 10382222,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjIy",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2367961,
+ "download_count": 137,
+ "created_at": "2019-01-02T15:48:22Z",
+ "updated_at": "2019-01-02T15:48:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382219",
+ "id": 10382219,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjE5",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2422038,
+ "download_count": 10853,
+ "created_at": "2019-01-02T15:48:22Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382217",
+ "id": 10382217,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjE3",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2358423,
+ "download_count": 145,
+ "created_at": "2019-01-02T15:48:21Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10382216",
+ "id": 10382216,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMzgyMjE2",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2500543,
+ "download_count": 239,
+ "created_at": "2019-01-02T15:48:21Z",
+ "updated_at": "2019-01-02T15:48:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.3.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.3.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.3.0",
+ "body": "## Changelog\r\n\r\n- On Windows, Task can now be installed using [Scoop](https://scoop.sh/) ([#152](https://github.com/go-task/task/pull/152));\r\n- Fixed issue with file/directory globing ([#153](https://github.com/go-task/task/issues/153));\r\n- Added ability to globally set environment variables ([#138](https://github.com/go-task/task/pull/138), [#159](https://github.com/go-task/task/pull/159)).\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/14429965",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/14429965/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/14429965/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.2.1",
+ "id": 14429965,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTE0NDI5OTY1",
+ "tag_name": "v2.2.1",
+ "target_commitish": "master",
+ "name": "v2.2.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-12-09T17:59:16Z",
+ "published_at": "2018-12-09T18:06:26Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071105",
+ "id": 10071105,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTA1",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 4854,
+ "created_at": "2018-12-09T18:02:42Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071099",
+ "id": 10071099,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMDk5",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2515916,
+ "download_count": 517,
+ "created_at": "2018-12-09T18:02:41Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071103",
+ "id": 10071103,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTAz",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2280460,
+ "download_count": 135,
+ "created_at": "2018-12-09T18:02:42Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071107",
+ "id": 10071107,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTA3",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2213132,
+ "download_count": 130,
+ "created_at": "2018-12-09T18:02:42Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071102",
+ "id": 10071102,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTAy",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2280598,
+ "download_count": 135,
+ "created_at": "2018-12-09T18:02:41Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071106",
+ "id": 10071106,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTA2",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2399694,
+ "download_count": 141,
+ "created_at": "2018-12-09T18:02:42Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071108",
+ "id": 10071108,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTA4",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 2348970,
+ "download_count": 130,
+ "created_at": "2018-12-09T18:02:42Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071104",
+ "id": 10071104,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTA0",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2399728,
+ "download_count": 43053,
+ "created_at": "2018-12-09T18:02:42Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071100",
+ "id": 10071100,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTAw",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2336070,
+ "download_count": 134,
+ "created_at": "2018-12-09T18:02:41Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/10071101",
+ "id": 10071101,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDEwMDcxMTAx",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2478763,
+ "download_count": 152,
+ "created_at": "2018-12-09T18:02:41Z",
+ "updated_at": "2018-12-09T18:02:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.2.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.2.1",
+ "body": "## Changelog\r\n\r\n- This repository now uses Go Modules (#143). We'll still keep the `vendor` directory in sync for some time, though;\r\n- Fixing a bug when the Taskfile has no tasks but includes another Taskfile (#150);\r\n- Fix a bug when calling another task or a dependency in an included Taskfile (#151).\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/13667346",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/13667346/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/13667346/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.2.0",
+ "id": 13667346,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTEzNjY3MzQ2",
+ "tag_name": "v2.2.0",
+ "target_commitish": "master",
+ "name": "v2.2.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-10-25T23:19:44Z",
+ "published_at": "2018-10-25T23:31:13Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415560",
+ "id": 9415560,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjA=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 8227,
+ "created_at": "2018-10-25T23:22:46Z",
+ "updated_at": "2018-10-25T23:22:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415561",
+ "id": 9415561,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjE=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2141961,
+ "download_count": 679,
+ "created_at": "2018-10-25T23:22:46Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415559",
+ "id": 9415559,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NTk=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1942430,
+ "download_count": 137,
+ "created_at": "2018-10-25T23:22:46Z",
+ "updated_at": "2018-10-25T23:22:46Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415567",
+ "id": 9415567,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1Njc=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1877504,
+ "download_count": 133,
+ "created_at": "2018-10-25T23:22:47Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415563",
+ "id": 9415563,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjM=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1943324,
+ "download_count": 151,
+ "created_at": "2018-10-25T23:22:46Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415565",
+ "id": 9415565,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjU=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2034048,
+ "download_count": 502,
+ "created_at": "2018-10-25T23:22:47Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415568",
+ "id": 9415568,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1Njg=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1982996,
+ "download_count": 134,
+ "created_at": "2018-10-25T23:22:47Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415566",
+ "id": 9415566,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjY=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2034447,
+ "download_count": 9388,
+ "created_at": "2018-10-25T23:22:47Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415562",
+ "id": 9415562,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjI=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1988384,
+ "download_count": 145,
+ "created_at": "2018-10-25T23:22:46Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/9415564",
+ "id": 9415564,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDk0MTU1NjQ=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2099424,
+ "download_count": 171,
+ "created_at": "2018-10-25T23:22:47Z",
+ "updated_at": "2018-10-25T23:22:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.2.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.2.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.2.0",
+ "body": "## Changelog\r\n\r\n- Added support for [including other Taskfiles](https://taskfile.org/#/usage?id=including-other-taskfiles) (#98)\r\n - This should be considered experimental. For now, only including local files is supported, but support for including remote Taskfiles is being discussed. If you have any feedback, please comment on #98.\r\n- Task now have a dedicated documentation site: https://taskfile.org\r\n - Thanks to [Docsify](https://docsify.js.org/) for making this pretty easy. To check the source code, just take a look at the [docs](https://github.com/go-task/task/tree/master/docs) directory of this repository. Contributions to the documentation is really appreciated.\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/12925917",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/12925917/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/12925917/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.1.1",
+ "id": 12925917,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTEyOTI1OTE3",
+ "tag_name": "v2.1.1",
+ "target_commitish": "master",
+ "name": "v2.1.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-09-17T01:18:03Z",
+ "published_at": "2018-09-17T01:27:17Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700198",
+ "id": 8700198,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAxOTg=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 1102,
+ "created_at": "2018-09-17T01:19:05Z",
+ "updated_at": "2018-09-17T01:19:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700200",
+ "id": 8700200,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMDA=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2519345,
+ "download_count": 485,
+ "created_at": "2018-09-17T01:19:05Z",
+ "updated_at": "2018-09-17T01:20:40Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700202",
+ "id": 8700202,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMDI=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2277182,
+ "download_count": 134,
+ "created_at": "2018-09-17T01:19:05Z",
+ "updated_at": "2018-09-17T01:20:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700213",
+ "id": 8700213,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMTM=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2213925,
+ "download_count": 134,
+ "created_at": "2018-09-17T01:20:13Z",
+ "updated_at": "2018-09-17T01:21:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700212",
+ "id": 8700212,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMTI=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2283247,
+ "download_count": 151,
+ "created_at": "2018-09-17T01:20:13Z",
+ "updated_at": "2018-09-17T01:21:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700199",
+ "id": 8700199,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAxOTk=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2395954,
+ "download_count": 241,
+ "created_at": "2018-09-17T01:19:05Z",
+ "updated_at": "2018-09-17T01:20:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700248",
+ "id": 8700248,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyNDg=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2350292,
+ "download_count": 137,
+ "created_at": "2018-09-17T01:21:29Z",
+ "updated_at": "2018-09-17T01:22:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700237",
+ "id": 8700237,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMzc=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2401542,
+ "download_count": 1223,
+ "created_at": "2018-09-17T01:20:41Z",
+ "updated_at": "2018-09-17T01:21:54Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700239",
+ "id": 8700239,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMzk=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2338185,
+ "download_count": 136,
+ "created_at": "2018-09-17T01:20:46Z",
+ "updated_at": "2018-09-17T01:21:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8700201",
+ "id": 8700201,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDg3MDAyMDE=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2482292,
+ "download_count": 177,
+ "created_at": "2018-09-17T01:19:05Z",
+ "updated_at": "2018-09-17T01:20:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.1.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.1.1",
+ "body": "## Changelog\r\n\r\n- Fix suggestion to use `task --init` not being shown anymore (when a `Taskfile.yml` is not found)\r\n- Fix error when using checksum method and no file exists for a source glob (#131)\r\n- Fix signal handling when the `--watch` flag is given (#132)\r\n\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/12472514",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/12472514/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/12472514/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.1.0",
+ "id": 12472514,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTEyNDcyNTE0",
+ "tag_name": "v2.1.0",
+ "target_commitish": "master",
+ "name": "v2.1.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-08-19T18:53:11Z",
+ "published_at": "2018-08-19T18:59:18Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312370",
+ "id": 8312370,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzA=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 1269,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312373",
+ "id": 8312373,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzM=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2049414,
+ "download_count": 275,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312377",
+ "id": 8312377,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzc=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1816228,
+ "download_count": 135,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312378",
+ "id": 8312378,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzg=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1754008,
+ "download_count": 136,
+ "created_at": "2018-08-19T18:56:39Z",
+ "updated_at": "2018-08-19T18:56:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312371",
+ "id": 8312371,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzE=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1822307,
+ "download_count": 134,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312376",
+ "id": 8312376,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzY=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1937058,
+ "download_count": 143,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312379",
+ "id": 8312379,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzk=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1892373,
+ "download_count": 140,
+ "created_at": "2018-08-19T18:56:39Z",
+ "updated_at": "2018-08-19T18:56:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312375",
+ "id": 8312375,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzU=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1944801,
+ "download_count": 1410,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312372",
+ "id": 8312372,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzI=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1868114,
+ "download_count": 140,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:38Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/8312374",
+ "id": 8312374,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDgzMTIzNzQ=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2011992,
+ "download_count": 157,
+ "created_at": "2018-08-19T18:56:38Z",
+ "updated_at": "2018-08-19T18:56:39Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.1.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.1.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.1.0",
+ "body": "## Changelog\r\n\r\n- Add a `ignore_error` option to task and command (#123)\r\n- Add a dry run mode (`--dry` flag) (#126)\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/11622551",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/11622551/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/11622551/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.0.3",
+ "id": 11622551,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTExNjIyNTUx",
+ "tag_name": "v2.0.3",
+ "target_commitish": "master",
+ "name": "v2.0.3",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-06-24T13:52:33Z",
+ "published_at": "2018-06-24T14:00:07Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645720",
+ "id": 7645720,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MjA=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 1268,
+ "created_at": "2018-06-24T13:54:51Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645715",
+ "id": 7645715,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTU=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2046210,
+ "download_count": 341,
+ "created_at": "2018-06-24T13:54:51Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645717",
+ "id": 7645717,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTc=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1812034,
+ "download_count": 136,
+ "created_at": "2018-06-24T13:54:51Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645718",
+ "id": 7645718,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTg=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1750659,
+ "download_count": 139,
+ "created_at": "2018-06-24T13:54:51Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645712",
+ "id": 7645712,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTI=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1818467,
+ "download_count": 148,
+ "created_at": "2018-06-24T13:54:50Z",
+ "updated_at": "2018-06-24T13:54:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645716",
+ "id": 7645716,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTY=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1933472,
+ "download_count": 149,
+ "created_at": "2018-06-24T13:54:51Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645719",
+ "id": 7645719,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTk=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1888755,
+ "download_count": 158,
+ "created_at": "2018-06-24T13:54:51Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645714",
+ "id": 7645714,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTQ=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1940955,
+ "download_count": 1527,
+ "created_at": "2018-06-24T13:54:50Z",
+ "updated_at": "2018-06-24T13:54:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645711",
+ "id": 7645711,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTE=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 4410625,
+ "download_count": 142,
+ "created_at": "2018-06-24T13:54:50Z",
+ "updated_at": "2018-06-24T13:54:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7645713",
+ "id": 7645713,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDc2NDU3MTM=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 5406977,
+ "download_count": 169,
+ "created_at": "2018-06-24T13:54:50Z",
+ "updated_at": "2018-06-24T13:54:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.3/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.0.3",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.0.3",
+ "body": "## Changelog\r\n\r\n- Expand environment variables on \"dir\", \"sources\" and \"generates\" (#116)\r\n- Fix YAML merging syntax (#112)\r\n- Add ZSH completion (#111)\r\n- Implement new `output` option. Please check out the [documentation](https://github.com/go-task/task#output-syntax)\r\n\r\nThanks to everyone that contributed with code, documentation, tools or reporting issues!\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/10791399",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/10791399/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/10791399/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.0.2",
+ "id": 10791399,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTEwNzkxMzk5",
+ "tag_name": "v2.0.2",
+ "target_commitish": "master",
+ "name": "v2.0.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-05-01T00:55:16Z",
+ "published_at": "2018-05-01T01:00:51Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028227",
+ "id": 7028227,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjc=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 658,
+ "created_at": "2018-05-01T00:57:36Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028222",
+ "id": 7028222,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjI=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2123127,
+ "download_count": 278,
+ "created_at": "2018-05-01T00:57:36Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028223",
+ "id": 7028223,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjM=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1925622,
+ "download_count": 139,
+ "created_at": "2018-05-01T00:57:36Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028225",
+ "id": 7028225,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjU=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1858977,
+ "download_count": 133,
+ "created_at": "2018-05-01T00:57:36Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028221",
+ "id": 7028221,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjE=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1930946,
+ "download_count": 139,
+ "created_at": "2018-05-01T00:57:35Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028224",
+ "id": 7028224,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjQ=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2022334,
+ "download_count": 153,
+ "created_at": "2018-05-01T00:57:36Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028226",
+ "id": 7028226,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjY=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1973579,
+ "download_count": 138,
+ "created_at": "2018-05-01T00:57:36Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028219",
+ "id": 7028219,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMTk=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2029840,
+ "download_count": 1348,
+ "created_at": "2018-05-01T00:57:35Z",
+ "updated_at": "2018-05-01T00:57:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028218",
+ "id": 7028218,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMTg=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1972696,
+ "download_count": 141,
+ "created_at": "2018-05-01T00:57:35Z",
+ "updated_at": "2018-05-01T00:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/7028220",
+ "id": 7028220,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDcwMjgyMjA=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2084958,
+ "download_count": 212,
+ "created_at": "2018-05-01T00:57:35Z",
+ "updated_at": "2018-05-01T00:57:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.2/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.0.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.0.2",
+ "body": "## Changelog\r\n\r\n- Fix merging of YAML anchors (#112)"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/10035098",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/10035098/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/10035098/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.0.1",
+ "id": 10035098,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTEwMDM1MDk4",
+ "tag_name": "v2.0.1",
+ "target_commitish": "master",
+ "name": "v2.0.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-03-11T18:38:33Z",
+ "published_at": "2018-03-11T18:45:52Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476375",
+ "id": 6476375,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNzU=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 813,
+ "download_count": 195,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476370",
+ "id": 6476370,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNzA=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2123136,
+ "download_count": 247,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:41:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476371",
+ "id": 6476371,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNzE=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1925626,
+ "download_count": 137,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476374",
+ "id": 6476374,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNzQ=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1858760,
+ "download_count": 136,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476368",
+ "id": 6476368,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNjg=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1930946,
+ "download_count": 157,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:41:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476372",
+ "id": 6476372,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNzI=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 2022334,
+ "download_count": 153,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476373",
+ "id": 6476373,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNzM=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1973344,
+ "download_count": 666,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:45:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476366",
+ "id": 6476366,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNjY=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2029848,
+ "download_count": 2651,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:41:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476369",
+ "id": 6476369,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNjk=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1972712,
+ "download_count": 142,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:41:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6476367",
+ "id": 6476367,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NzYzNjc=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2084965,
+ "download_count": 181,
+ "created_at": "2018-03-11T18:41:42Z",
+ "updated_at": "2018-03-11T18:41:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.0.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.0.1",
+ "body": "## Changelog\r\n\r\n- Fixes panic on `task --list`"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/9990851",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/9990851/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/9990851/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v2.0.0",
+ "id": 9990851,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTk5OTA4NTE=",
+ "tag_name": "v2.0.0",
+ "target_commitish": "master",
+ "name": "v2.0.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2018-03-08T01:56:27Z",
+ "published_at": "2018-03-08T02:21:11Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441523",
+ "id": 6441523,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjM=",
+ "name": "task_checksums.txt",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain",
+ "state": "uploaded",
+ "size": 717,
+ "download_count": 169,
+ "created_at": "2018-03-08T02:17:02Z",
+ "updated_at": "2018-03-08T02:21:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441520",
+ "id": 6441520,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjA=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-gzip",
+ "state": "uploaded",
+ "size": 2127851,
+ "download_count": 150,
+ "created_at": "2018-03-08T02:17:02Z",
+ "updated_at": "2018-03-08T02:17:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441524",
+ "id": 6441524,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjQ=",
+ "name": "task_linux_386.deb",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 1925614,
+ "download_count": 133,
+ "created_at": "2018-03-08T02:17:03Z",
+ "updated_at": "2018-03-08T02:21:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441521",
+ "id": 6441521,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjE=",
+ "name": "task_linux_386.tar.gz",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-gzip",
+ "state": "uploaded",
+ "size": 1930901,
+ "download_count": 134,
+ "created_at": "2018-03-08T02:17:02Z",
+ "updated_at": "2018-03-08T02:17:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441525",
+ "id": 6441525,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjU=",
+ "name": "task_linux_amd64.deb",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/octet-stream",
+ "state": "uploaded",
+ "size": 2015316,
+ "download_count": 144,
+ "created_at": "2018-03-08T02:17:03Z",
+ "updated_at": "2018-03-08T02:21:11Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441522",
+ "id": 6441522,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjI=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-gzip",
+ "state": "uploaded",
+ "size": 2022502,
+ "download_count": 295,
+ "created_at": "2018-03-08T02:17:02Z",
+ "updated_at": "2018-03-08T02:18:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441526",
+ "id": 6441526,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1MjY=",
+ "name": "task_windows_386.zip",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1972901,
+ "download_count": 134,
+ "created_at": "2018-03-08T02:17:03Z",
+ "updated_at": "2018-03-08T02:19:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/6441527",
+ "id": 6441527,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NDE1Mjc=",
+ "name": "task_windows_amd64.zip",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 2084952,
+ "download_count": 151,
+ "created_at": "2018-03-08T02:17:04Z",
+ "updated_at": "2018-03-08T02:19:25Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v2.0.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v2.0.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v2.0.0",
+ "body": "Version 2.0.0 is here, with a new Taskfile format.\r\n\r\nPlease, make sure to read the [Taskfile versions](https://github.com/go-task/task/blob/master/TASKFILE_VERSIONS.md) document, since it describes in depth what changed for this version.\r\n\r\n* New Taskfile version 2 (https://github.com/go-task/task/issues/77)\r\n* Possibility to have global variables in the `Taskfile.yml` instead of `Taskvars.yml` (https://github.com/go-task/task/issues/66)\r\n* Small improvements and fixes"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/8579360",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/8579360/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/8579360/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.4.4",
+ "id": 8579360,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTg1NzkzNjA=",
+ "tag_name": "v1.4.4",
+ "target_commitish": "master",
+ "name": "v1.4.4",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-11-19T21:26:10Z",
+ "published_at": "2017-11-19T21:39:08Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392874",
+ "id": 5392874,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NzQ=",
+ "name": "task_1.4.4_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 125,
+ "created_at": "2017-11-19T21:33:47Z",
+ "updated_at": "2017-11-19T21:33:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_1.4.4_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392869",
+ "id": 5392869,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4Njk=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1972988,
+ "download_count": 209,
+ "created_at": "2017-11-19T21:33:35Z",
+ "updated_at": "2017-11-19T21:33:50Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392870",
+ "id": 5392870,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NzA=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1699656,
+ "download_count": 142,
+ "created_at": "2017-11-19T21:33:35Z",
+ "updated_at": "2017-11-19T21:33:47Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392872",
+ "id": 5392872,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NzI=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1688974,
+ "download_count": 133,
+ "created_at": "2017-11-19T21:33:37Z",
+ "updated_at": "2017-11-19T21:33:49Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392868",
+ "id": 5392868,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4Njg=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1751040,
+ "download_count": 298,
+ "created_at": "2017-11-19T21:33:24Z",
+ "updated_at": "2017-11-19T21:33:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392871",
+ "id": 5392871,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NzE=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1849834,
+ "download_count": 571,
+ "created_at": "2017-11-19T21:33:36Z",
+ "updated_at": "2017-11-19T21:33:42Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392873",
+ "id": 5392873,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NzM=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1835359,
+ "download_count": 322,
+ "created_at": "2017-11-19T21:33:42Z",
+ "updated_at": "2017-11-19T21:33:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392866",
+ "id": 5392866,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NjY=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1881638,
+ "download_count": 4348,
+ "created_at": "2017-11-19T21:33:24Z",
+ "updated_at": "2017-11-19T21:33:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392865",
+ "id": 5392865,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4NjU=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1800108,
+ "download_count": 141,
+ "created_at": "2017-11-19T21:33:24Z",
+ "updated_at": "2017-11-19T21:33:34Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/5392867",
+ "id": 5392867,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDUzOTI4Njc=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1938007,
+ "download_count": 400,
+ "created_at": "2017-11-19T21:33:24Z",
+ "updated_at": "2017-11-19T21:33:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.4/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.4.4",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.4.4",
+ "body": "## Changelog\r\n\r\n- Handle SIGINT and SIGTERM (#75);\r\n- List: print message with there's no task with description;\r\n- Expand home dir (\"~\" symbol) on paths (#74);\r\n- Add Snap as an installation method;\r\n- Move examples to its own repo;\r\n- Watch: also walk on tasks called on on \"cmds\", and not only on \"deps\";\r\n- Print logs to stderr instead of stdout (#68);\r\n- Remove deprecated `set` keyword;\r\n- Add checksum based status check, alternative to timestamp based.\r\n\r\n---\r\nAutomated with [GoReleaser](https://github.com/goreleaser)\r\nBuilt with go version go1.9.1 linux/amd64\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/7673436",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/7673436/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/7673436/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.4.3",
+ "id": 7673436,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTc2NzM0MzY=",
+ "tag_name": "v1.4.3",
+ "target_commitish": "master",
+ "name": "v1.4.3",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-09-07T17:40:59Z",
+ "published_at": "2017-09-07T17:56:37Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770246",
+ "id": 4770246,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyNDY=",
+ "name": "task_1.4.3_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 186,
+ "created_at": "2017-09-07T17:50:13Z",
+ "updated_at": "2017-09-07T17:50:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_1.4.3_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770231",
+ "id": 4770231,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMzE=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1852824,
+ "download_count": 148,
+ "created_at": "2017-09-07T17:48:52Z",
+ "updated_at": "2017-09-07T17:50:15Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770232",
+ "id": 4770232,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMzI=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1604176,
+ "download_count": 132,
+ "created_at": "2017-09-07T17:48:57Z",
+ "updated_at": "2017-09-07T17:50:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770234",
+ "id": 4770234,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMzQ=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1595046,
+ "download_count": 129,
+ "created_at": "2017-09-07T17:49:00Z",
+ "updated_at": "2017-09-07T17:50:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770224",
+ "id": 4770224,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMjQ=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1655096,
+ "download_count": 141,
+ "created_at": "2017-09-07T17:47:36Z",
+ "updated_at": "2017-09-07T17:49:00Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770233",
+ "id": 4770233,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMzM=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1747310,
+ "download_count": 223,
+ "created_at": "2017-09-07T17:48:59Z",
+ "updated_at": "2017-09-07T17:50:18Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770245",
+ "id": 4770245,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyNDU=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1731527,
+ "download_count": 134,
+ "created_at": "2017-09-07T17:50:06Z",
+ "updated_at": "2017-09-07T17:50:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770223",
+ "id": 4770223,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMjM=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1774775,
+ "download_count": 420,
+ "created_at": "2017-09-07T17:47:36Z",
+ "updated_at": "2017-09-07T17:48:52Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770221",
+ "id": 4770221,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMjE=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1686315,
+ "download_count": 133,
+ "created_at": "2017-09-07T17:47:36Z",
+ "updated_at": "2017-09-07T17:48:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4770222",
+ "id": 4770222,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3NzAyMjI=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1811646,
+ "download_count": 281,
+ "created_at": "2017-09-07T17:47:36Z",
+ "updated_at": "2017-09-07T17:48:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.3/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.4.3",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.4.3",
+ "body": "## v1.4.3\r\n\r\n- Allow assigning variables to tasks at run time via CLI (#33)\r\n- Added suport for multiline variables from sh (#64)\r\n- Fixes env: remove square braces and evaluate shell (#62)\r\n- Watch: change watch library and few fixes and improvements\r\n- When use watching, cancel and restart long running process on file change (#59 and #60)\r\n\r\n---\r\nAutomated with [GoReleaser](https://github.com/goreleaser)\r\nBuilt with go version go1.9 linux/amd64\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/7222098",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/7222098/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/7222098/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.4.2",
+ "id": 7222098,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTcyMjIwOTg=",
+ "tag_name": "v1.4.2",
+ "target_commitish": "master",
+ "name": "v1.4.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-07-30T23:42:24Z",
+ "published_at": "2017-07-30T23:52:49Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461925",
+ "id": 4461925,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MjU=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 127,
+ "created_at": "2017-07-30T23:47:58Z",
+ "updated_at": "2017-07-30T23:47:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461918",
+ "id": 4461918,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MTg=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1785826,
+ "download_count": 153,
+ "created_at": "2017-07-30T23:46:23Z",
+ "updated_at": "2017-07-30T23:47:51Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461919",
+ "id": 4461919,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MTk=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1545548,
+ "download_count": 136,
+ "created_at": "2017-07-30T23:46:35Z",
+ "updated_at": "2017-07-30T23:47:57Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461923",
+ "id": 4461923,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MjM=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1539353,
+ "download_count": 129,
+ "created_at": "2017-07-30T23:47:31Z",
+ "updated_at": "2017-07-30T23:48:41Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461899",
+ "id": 4461899,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE4OTk=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1597563,
+ "download_count": 185,
+ "created_at": "2017-07-30T23:45:13Z",
+ "updated_at": "2017-07-30T23:46:23Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461922",
+ "id": 4461922,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MjI=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1687146,
+ "download_count": 137,
+ "created_at": "2017-07-30T23:47:24Z",
+ "updated_at": "2017-07-30T23:48:55Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461924",
+ "id": 4461924,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MjQ=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1673338,
+ "download_count": 135,
+ "created_at": "2017-07-30T23:47:52Z",
+ "updated_at": "2017-07-30T23:48:56Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461900",
+ "id": 4461900,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MDA=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1716195,
+ "download_count": 1915,
+ "created_at": "2017-07-30T23:45:13Z",
+ "updated_at": "2017-07-30T23:46:35Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461901",
+ "id": 4461901,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MDE=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1632796,
+ "download_count": 132,
+ "created_at": "2017-07-30T23:45:14Z",
+ "updated_at": "2017-07-30T23:47:24Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4461902",
+ "id": 4461902,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0NjE5MDI=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1755044,
+ "download_count": 144,
+ "created_at": "2017-07-30T23:45:14Z",
+ "updated_at": "2017-07-30T23:47:31Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.2/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.4.2",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.4.2",
+ "body": "## v1.4.2\r\n\r\n- Flag to set directory of execution\r\n- Always echo command if is verbose mode\r\n- Add silent mode to disable echoing of commands\r\n- Fixes and improvements of variables (#56)\r\n\r\n---\r\nAutomated with [GoReleaser](https://github.com/goreleaser)\r\nBuilt with go version go1.8.1 linux/amd64\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/7053404",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/7053404/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/7053404/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.4.1",
+ "id": 7053404,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTcwNTM0MDQ=",
+ "tag_name": "v1.4.1",
+ "target_commitish": "master",
+ "name": "v1.4.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-07-15T18:52:46Z",
+ "published_at": "2017-07-15T19:19:43Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336643",
+ "id": 4336643,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2NDM=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 125,
+ "created_at": "2017-07-15T18:57:20Z",
+ "updated_at": "2017-07-15T18:57:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336636",
+ "id": 4336636,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2MzY=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1779165,
+ "download_count": 152,
+ "created_at": "2017-07-15T18:56:01Z",
+ "updated_at": "2017-07-15T18:57:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336637",
+ "id": 4336637,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2Mzc=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1539330,
+ "download_count": 135,
+ "created_at": "2017-07-15T18:56:04Z",
+ "updated_at": "2017-07-15T18:57:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336641",
+ "id": 4336641,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2NDE=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1533273,
+ "download_count": 127,
+ "created_at": "2017-07-15T18:56:17Z",
+ "updated_at": "2017-07-15T18:57:27Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336632",
+ "id": 4336632,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2MzI=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1589687,
+ "download_count": 130,
+ "created_at": "2017-07-15T18:54:53Z",
+ "updated_at": "2017-07-15T18:56:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336638",
+ "id": 4336638,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2Mzg=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1680580,
+ "download_count": 134,
+ "created_at": "2017-07-15T18:56:05Z",
+ "updated_at": "2017-07-15T18:57:22Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336642",
+ "id": 4336642,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2NDI=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1665940,
+ "download_count": 131,
+ "created_at": "2017-07-15T18:57:01Z",
+ "updated_at": "2017-07-15T18:57:36Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336634",
+ "id": 4336634,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2MzQ=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1708033,
+ "download_count": 134,
+ "created_at": "2017-07-15T18:54:53Z",
+ "updated_at": "2017-07-15T18:56:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336635",
+ "id": 4336635,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2MzU=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1626143,
+ "download_count": 133,
+ "created_at": "2017-07-15T18:54:53Z",
+ "updated_at": "2017-07-15T18:56:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4336633",
+ "id": 4336633,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQzMzY2MzM=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1749452,
+ "download_count": 137,
+ "created_at": "2017-07-15T18:54:53Z",
+ "updated_at": "2017-07-15T18:56:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.1/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.4.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.4.1",
+ "body": "## Changelog\r\n\r\n### v1.4.1\r\n\r\n- Allow use of YAML for dynamic variables instead of $ prefix\r\n - `VAR: {sh: echo Hello}` instead of `VAR: $echo Hello`\r\n- Add `--list` (or `-l`) flag to print existing tasks\r\n- OS specific Taskvars file (e.g. `Taskvars_windows.yml`, `Taskvars_linux.yml`, etc)\r\n- Consider task up-to-date on equal timestamps (#49)\r\n- Allow absolute path in generates section (#48)\r\n- Bugfix: allow templating when calling deps (#42)\r\n- Fix panic for invalid task in cyclic dep detection\r\n- Better error output for dynamic variables in Taskvars.yml (#41)\r\n- Allow template evaluation in parameters\r\n\r\n---\r\nAutomated with [GoReleaser](https://github.com/goreleaser)\r\nBuilt with go version go1.8.1 linux/amd64\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/6944903",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/6944903/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/6944903/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.4.0",
+ "id": 6944903,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTY5NDQ5MDM=",
+ "tag_name": "v1.4.0",
+ "target_commitish": "master",
+ "name": "v1.4.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-07-06T00:32:44Z",
+ "published_at": "2017-07-06T00:43:57Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262101",
+ "id": 4262101,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIxMDE=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 789,
+ "download_count": 128,
+ "created_at": "2017-07-06T00:38:02Z",
+ "updated_at": "2017-07-06T00:38:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262096",
+ "id": 4262096,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTY=",
+ "name": "task_darwin_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1776589,
+ "download_count": 135,
+ "created_at": "2017-07-06T00:36:48Z",
+ "updated_at": "2017-07-06T00:38:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_darwin_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262097",
+ "id": 4262097,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTc=",
+ "name": "task_linux_386.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1536262,
+ "download_count": 131,
+ "created_at": "2017-07-06T00:36:59Z",
+ "updated_at": "2017-07-06T00:37:59Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262099",
+ "id": 4262099,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTk=",
+ "name": "task_linux_386.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1530602,
+ "download_count": 132,
+ "created_at": "2017-07-06T00:37:20Z",
+ "updated_at": "2017-07-06T00:38:01Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262095",
+ "id": 4262095,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTU=",
+ "name": "task_linux_386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1586111,
+ "download_count": 134,
+ "created_at": "2017-07-06T00:35:52Z",
+ "updated_at": "2017-07-06T00:36:58Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_linux_386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262098",
+ "id": 4262098,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTg=",
+ "name": "task_linux_amd64.deb",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-debian-package",
+ "state": "uploaded",
+ "size": 1677016,
+ "download_count": 130,
+ "created_at": "2017-07-06T00:37:14Z",
+ "updated_at": "2017-07-06T00:38:19Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262100",
+ "id": 4262100,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIxMDA=",
+ "name": "task_linux_amd64.rpm",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-redhat-package-manager",
+ "state": "uploaded",
+ "size": 1664029,
+ "download_count": 129,
+ "created_at": "2017-07-06T00:37:59Z",
+ "updated_at": "2017-07-06T00:38:32Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_linux_amd64.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262094",
+ "id": 4262094,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTQ=",
+ "name": "task_linux_amd64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1704082,
+ "download_count": 131,
+ "created_at": "2017-07-06T00:35:52Z",
+ "updated_at": "2017-07-06T00:37:20Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_linux_amd64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262093",
+ "id": 4262093,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTM=",
+ "name": "task_windows_386.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1624270,
+ "download_count": 131,
+ "created_at": "2017-07-06T00:35:52Z",
+ "updated_at": "2017-07-06T00:36:48Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_windows_386.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4262092",
+ "id": 4262092,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNjIwOTI=",
+ "name": "task_windows_amd64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1747407,
+ "download_count": 133,
+ "created_at": "2017-07-06T00:35:52Z",
+ "updated_at": "2017-07-06T00:37:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.4.0/task_windows_amd64.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.4.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.4.0",
+ "body": "## Changelog\r\n\r\n- v1.4.0\r\n- Improve README documentation\r\n- Cache dynamic variables\r\n- Add verbose mode (`-v` flag)\r\n- Support to task parameters (overriding vars) (#31) (#32)\r\n- Print command, also when \"set:\" is specified (#35)\r\n- Improve task command help text (#35)\r\n\r\n---\r\nAutomated with [GoReleaser](https://github.com/goreleaser)\r\nBuilt with go version go1.8.1 linux/amd64\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/6715293",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/6715293/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/6715293/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.3.1",
+ "id": 6715293,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTY3MTUyOTM=",
+ "tag_name": "v1.3.1",
+ "target_commitish": "main",
+ "name": "v1.3.1",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-06-14T18:33:51Z",
+ "published_at": "2017-06-14T18:36:29Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4101709",
+ "id": 4101709,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMDE3MDk=",
+ "name": "task_1.3.1_linux_x64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1733241,
+ "download_count": 155,
+ "created_at": "2017-06-14T18:36:29Z",
+ "updated_at": "2017-06-14T18:38:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_1.3.1_linux_x64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4101712",
+ "id": 4101712,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMDE3MTI=",
+ "name": "task_1.3.1_linux_x86.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1613751,
+ "download_count": 131,
+ "created_at": "2017-06-14T18:36:30Z",
+ "updated_at": "2017-06-14T18:38:02Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_1.3.1_linux_x86.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4101711",
+ "id": 4101711,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMDE3MTE=",
+ "name": "task_1.3.1_macOS_x64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1806888,
+ "download_count": 140,
+ "created_at": "2017-06-14T18:36:29Z",
+ "updated_at": "2017-06-14T18:38:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_1.3.1_macOS_x64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4101710",
+ "id": 4101710,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMDE3MTA=",
+ "name": "task_1.3.1_windows_x64.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1773480,
+ "download_count": 132,
+ "created_at": "2017-06-14T18:36:29Z",
+ "updated_at": "2017-06-14T18:38:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_1.3.1_windows_x64.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4101708",
+ "id": 4101708,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMDE3MDg=",
+ "name": "task_1.3.1_windows_x86.zip",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/zip",
+ "state": "uploaded",
+ "size": 1648328,
+ "download_count": 125,
+ "created_at": "2017-06-14T18:36:29Z",
+ "updated_at": "2017-06-14T18:38:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_1.3.1_windows_x86.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4101707",
+ "id": 4101707,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMDE3MDc=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 468,
+ "download_count": 117,
+ "created_at": "2017-06-14T18:36:29Z",
+ "updated_at": "2017-06-14T18:36:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4136000",
+ "id": 4136000,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMzYwMDA=",
+ "name": "task_linux_386.deb",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1568510,
+ "download_count": 127,
+ "created_at": "2017-06-19T23:49:51Z",
+ "updated_at": "2017-06-19T23:50:45Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_linux_386.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4135998",
+ "id": 4135998,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMzU5OTg=",
+ "name": "task_linux_386.rpm",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1559319,
+ "download_count": 122,
+ "created_at": "2017-06-19T23:49:51Z",
+ "updated_at": "2017-06-19T23:50:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_linux_386.rpm"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4135999",
+ "id": 4135999,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMzU5OTk=",
+ "name": "task_linux_amd64.deb",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/vnd.debian.binary-package",
+ "state": "uploaded",
+ "size": 1708572,
+ "download_count": 125,
+ "created_at": "2017-06-19T23:49:51Z",
+ "updated_at": "2017-06-19T23:50:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_linux_amd64.deb"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/4136001",
+ "id": 4136001,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDQxMzYwMDE=",
+ "name": "task_linux_amd64.rpm",
+ "label": null,
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/x-rpm",
+ "state": "uploaded",
+ "size": 1694374,
+ "download_count": 123,
+ "created_at": "2017-06-19T23:49:52Z",
+ "updated_at": "2017-06-19T23:51:03Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.1/task_linux_amd64.rpm"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.3.1",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.3.1",
+ "body": "## Changelog\r\n\r\n### v1.3.1\r\n\r\n- Fix glob not working on commands (#28)\r\n- Add ExeExt template function\r\n- Add `--init` flag to create a new Taskfile\r\n- Add status option to prevent task from running (#27)\r\n- Allow interpolation on `generates` and `sources` attributes (#26)\r\n\r\n---\r\n\r\nAutomated with @goreleaser\r\nBuilt with go version go1.8.1 linux/amd64\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/6168713",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/6168713/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/6168713/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.3.0",
+ "id": 6168713,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTYxNjg3MTM=",
+ "tag_name": "v1.3.0",
+ "target_commitish": "main",
+ "name": "v1.3.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-04-24T13:47:02Z",
+ "published_at": "2017-04-24T13:52:29Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725009",
+ "id": 3725009,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMDk=",
+ "name": "task_checksums.txt",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "text/plain; charset=utf-8",
+ "state": "uploaded",
+ "size": 540,
+ "download_count": 118,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:52:29Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_checksums.txt"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725015",
+ "id": 3725015,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMTU=",
+ "name": "task_Darwin_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1680863,
+ "download_count": 122,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:54:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_Darwin_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725013",
+ "id": 3725013,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMTM=",
+ "name": "task_Darwin_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1759610,
+ "download_count": 143,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:54:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_Darwin_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725012",
+ "id": 3725012,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMTI=",
+ "name": "task_Linux_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1590609,
+ "download_count": 125,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:54:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_Linux_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725014",
+ "id": 3725014,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMTQ=",
+ "name": "task_Linux_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1679527,
+ "download_count": 550,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:54:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_Linux_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725010",
+ "id": 3725010,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMTA=",
+ "name": "task_Windows_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1616360,
+ "download_count": 126,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:54:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_Windows_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3725011",
+ "id": 3725011,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM3MjUwMTE=",
+ "name": "task_Windows_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1702419,
+ "download_count": 128,
+ "created_at": "2017-04-24T13:52:29Z",
+ "updated_at": "2017-04-24T13:54:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.3.0/task_Windows_x86_64.tar.gz"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.3.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.3.0",
+ "body": "## Changelog\r\n\r\n### v1.3.0\r\n\r\n- Migrate from os/exec.Cmd to a native Go sh/bash interpreter\r\n - This is a potentially breaking change if you use Windows.\r\n - Now, `cmd` is not used anymore on Windows. Always use Bash-like syntax for your commands, even on Windows.\r\n- Add \"ToSlash\" and \"FromSlash\" to template functions\r\n- Use functions defined on github.com/Masterminds/sprig\r\n- Do not redirect stdin while running variables commands\r\n- Using `context` and `errgroup` packages (this will make other tasks to be cancelled, if one returned an error)\r\n\r\n---\r\nAutomated with @goreleaser\r\nBuilt with go version go1.7.1 linux/amd64\r\n\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/5948970",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/5948970/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/5948970/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.2.0",
+ "id": 5948970,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTU5NDg5NzA=",
+ "tag_name": "v1.2.0",
+ "target_commitish": "main",
+ "name": "v1.2.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-04-02T13:03:10Z",
+ "published_at": "2017-04-02T13:05:49Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3544874",
+ "id": 3544874,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NDQ4NzQ=",
+ "name": "task_Darwin_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1225172,
+ "download_count": 123,
+ "created_at": "2017-04-02T13:05:50Z",
+ "updated_at": "2017-04-02T13:07:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.2.0/task_Darwin_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3544871",
+ "id": 3544871,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NDQ4NzE=",
+ "name": "task_Darwin_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1279414,
+ "download_count": 129,
+ "created_at": "2017-04-02T13:05:50Z",
+ "updated_at": "2017-04-02T13:07:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.2.0/task_Darwin_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3544875",
+ "id": 3544875,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NDQ4NzU=",
+ "name": "task_Linux_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1155950,
+ "download_count": 124,
+ "created_at": "2017-04-02T13:05:50Z",
+ "updated_at": "2017-04-02T13:07:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.2.0/task_Linux_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3544873",
+ "id": 3544873,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NDQ4NzM=",
+ "name": "task_Linux_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1212578,
+ "download_count": 132,
+ "created_at": "2017-04-02T13:05:50Z",
+ "updated_at": "2017-04-02T13:07:05Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.2.0/task_Linux_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3544876",
+ "id": 3544876,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NDQ4NzY=",
+ "name": "task_Windows_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1172500,
+ "download_count": 126,
+ "created_at": "2017-04-02T13:05:50Z",
+ "updated_at": "2017-04-02T13:07:04Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.2.0/task_Windows_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3544872",
+ "id": 3544872,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDM1NDQ4NzI=",
+ "name": "task_Windows_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1233697,
+ "download_count": 128,
+ "created_at": "2017-04-02T13:05:50Z",
+ "updated_at": "2017-04-02T13:07:07Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.2.0/task_Windows_x86_64.tar.gz"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.2.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.2.0",
+ "body": "## Changelog\r\n- More tests and Travis integration\r\n- Watch a task (experimental)\r\n- Possibility to call another task\r\n- Fix \"=\" not being reconized in variables/environment variables\r\n- Tasks can now have a description, and help will print them (#10)\r\n- Task dependencies now run concurrently\r\n- Support for a default task (#16)\r\n\r\n--\r\nAutomated with @goreleaser\r\nBuilt with go version go1.7.1 linux/amd64\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/5683685",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/5683685/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/5683685/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.1.0",
+ "id": 5683685,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTU2ODM2ODU=",
+ "tag_name": "v1.1.0",
+ "target_commitish": "main",
+ "name": "v1.1.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-03-08T23:50:10Z",
+ "published_at": "2017-03-08T23:52:56Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3350115",
+ "id": 3350115,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNTAxMTU=",
+ "name": "task_Darwin_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1196237,
+ "download_count": 122,
+ "created_at": "2017-03-08T23:52:57Z",
+ "updated_at": "2017-03-08T23:54:06Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.1.0/task_Darwin_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3350118",
+ "id": 3350118,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNTAxMTg=",
+ "name": "task_Darwin_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1248907,
+ "download_count": 122,
+ "created_at": "2017-03-08T23:52:57Z",
+ "updated_at": "2017-03-08T23:54:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.1.0/task_Darwin_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3350119",
+ "id": 3350119,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNTAxMTk=",
+ "name": "task_Linux_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1129778,
+ "download_count": 124,
+ "created_at": "2017-03-08T23:52:57Z",
+ "updated_at": "2017-03-08T23:54:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.1.0/task_Linux_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3350120",
+ "id": 3350120,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNTAxMjA=",
+ "name": "task_Linux_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1188487,
+ "download_count": 138,
+ "created_at": "2017-03-08T23:52:57Z",
+ "updated_at": "2017-03-08T23:54:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.1.0/task_Linux_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3350116",
+ "id": 3350116,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNTAxMTY=",
+ "name": "task_Windows_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1148869,
+ "download_count": 125,
+ "created_at": "2017-03-08T23:52:57Z",
+ "updated_at": "2017-03-08T23:54:14Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.1.0/task_Windows_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3350117",
+ "id": 3350117,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMzNTAxMTc=",
+ "name": "task_Windows_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 1208893,
+ "download_count": 125,
+ "created_at": "2017-03-08T23:52:57Z",
+ "updated_at": "2017-03-08T23:54:08Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.1.0/task_Windows_x86_64.tar.gz"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.1.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.1.0",
+ "body": "- Support for YAML, TOML and JSON (#1)\r\n- Support running command in another directory (#4)\r\n- `--force` or `-f` flag to force execution of task even when it's up-to-date\r\n- Detection of cyclic dependencies (#5)\r\n- Support for variables (#6, #9, #14)\r\n- Operation System specific commands and variables (#13)\r\n\r\n--\r\nAutomated with @goreleaser\r\nBuilt with go version go1.7.1 linux/amd64\r\n"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/5593474",
+ "assets_url": "https://api.github.com/repos/go-task/task/releases/5593474/assets",
+ "upload_url": "https://uploads.github.com/repos/go-task/task/releases/5593474/assets{?name,label}",
+ "html_url": "https://github.com/go-task/task/releases/tag/v1.0.0",
+ "id": 5593474,
+ "author": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "node_id": "MDc6UmVsZWFzZTU1OTM0NzQ=",
+ "tag_name": "v1.0.0",
+ "target_commitish": "main",
+ "name": "v1.0.0",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2017-02-28T12:30:51Z",
+ "published_at": "2017-02-28T12:33:25Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3291490",
+ "id": 3291490,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMyOTE0OTA=",
+ "name": "task_Darwin_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 732447,
+ "download_count": 123,
+ "created_at": "2017-02-28T12:33:26Z",
+ "updated_at": "2017-02-28T12:34:17Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.0.0/task_Darwin_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3291491",
+ "id": 3291491,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMyOTE0OTE=",
+ "name": "task_Darwin_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 769499,
+ "download_count": 123,
+ "created_at": "2017-02-28T12:33:27Z",
+ "updated_at": "2017-02-28T12:34:09Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.0.0/task_Darwin_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3291488",
+ "id": 3291488,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMyOTE0ODg=",
+ "name": "task_Linux_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 694623,
+ "download_count": 124,
+ "created_at": "2017-02-28T12:33:26Z",
+ "updated_at": "2017-02-28T12:34:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.0.0/task_Linux_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3291487",
+ "id": 3291487,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMyOTE0ODc=",
+ "name": "task_Linux_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 733716,
+ "download_count": 143,
+ "created_at": "2017-02-28T12:33:26Z",
+ "updated_at": "2017-02-28T12:34:12Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.0.0/task_Linux_x86_64.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3291486",
+ "id": 3291486,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMyOTE0ODY=",
+ "name": "task_Windows_i386.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 720185,
+ "download_count": 126,
+ "created_at": "2017-02-28T12:33:26Z",
+ "updated_at": "2017-02-28T12:34:10Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.0.0/task_Windows_i386.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/go-task/task/releases/assets/3291489",
+ "id": 3291489,
+ "node_id": "MDEyOlJlbGVhc2VBc3NldDMyOTE0ODk=",
+ "name": "task_Windows_x86_64.tar.gz",
+ "label": "",
+ "uploader": {
+ "login": "andreynering",
+ "id": 7011819,
+ "node_id": "MDQ6VXNlcjcwMTE4MTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7011819?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/andreynering",
+ "html_url": "https://github.com/andreynering",
+ "followers_url": "https://api.github.com/users/andreynering/followers",
+ "following_url": "https://api.github.com/users/andreynering/following{/other_user}",
+ "gists_url": "https://api.github.com/users/andreynering/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/andreynering/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/andreynering/subscriptions",
+ "organizations_url": "https://api.github.com/users/andreynering/orgs",
+ "repos_url": "https://api.github.com/users/andreynering/repos",
+ "events_url": "https://api.github.com/users/andreynering/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/andreynering/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false
+ },
+ "content_type": "application/gzip",
+ "state": "uploaded",
+ "size": 764095,
+ "download_count": 131,
+ "created_at": "2017-02-28T12:33:26Z",
+ "updated_at": "2017-02-28T12:34:13Z",
+ "browser_download_url": "https://github.com/go-task/task/releases/download/v1.0.0/task_Windows_x86_64.tar.gz"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/go-task/task/tarball/v1.0.0",
+ "zipball_url": "https://api.github.com/repos/go-task/task/zipball/v1.0.0",
+ "body": "## Changelog\n\n45c40cc MIT LICENS file\n\n## \n\nAutomated with @goreleaser\nBuilt with go version go1.7.1 linux/amd64\n"
+ }
+]
diff --git a/action.yml b/action.yml
new file mode 100644
index 0000000..a8c5c94
--- /dev/null
+++ b/action.yml
@@ -0,0 +1,23 @@
+name: "step-security/go-task-setup-task"
+description: "Download Task and add it to the PATH"
+author: "step-security"
+branding:
+ icon: "box"
+ color: "blue"
+inputs:
+ version:
+ description: "Version to use. Example: 3.4.2"
+ required: true
+ default: "3.x"
+ repo-token:
+ description: "Token with permissions to do repo things"
+ required: false
+ default: "${{ github.token }}"
+ max-retries:
+ description: "Maximum number of retry attempts for HTTP requests"
+ required: false
+ default: "3"
+
+runs:
+ using: "node24"
+ main: "dist/index.js"
diff --git a/dist/index.js b/dist/index.js
new file mode 100644
index 0000000..4ca8d30
--- /dev/null
+++ b/dist/index.js
@@ -0,0 +1,47474 @@
+import { createRequire as __WEBPACK_EXTERNAL_createRequire } from "module";
+/******/ var __webpack_modules__ = ({
+
+/***/ 1324:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+module.exports =
+{
+ parallel : __nccwpck_require__(3857),
+ serial : __nccwpck_require__(1054),
+ serialOrdered : __nccwpck_require__(3961)
+};
+
+
+/***/ }),
+
+/***/ 4818:
+/***/ ((module) => {
+
+// API
+module.exports = abort;
+
+/**
+ * Aborts leftover active jobs
+ *
+ * @param {object} state - current state object
+ */
+function abort(state)
+{
+ Object.keys(state.jobs).forEach(clean.bind(state));
+
+ // reset leftover jobs
+ state.jobs = {};
+}
+
+/**
+ * Cleans up leftover job by invoking abort function for the provided job id
+ *
+ * @this state
+ * @param {string|number} key - job id to abort
+ */
+function clean(key)
+{
+ if (typeof this.jobs[key] == 'function')
+ {
+ this.jobs[key]();
+ }
+}
+
+
+/***/ }),
+
+/***/ 8452:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var defer = __nccwpck_require__(9200);
+
+// API
+module.exports = async;
+
+/**
+ * Runs provided callback asynchronously
+ * even if callback itself is not
+ *
+ * @param {function} callback - callback to invoke
+ * @returns {function} - augmented callback
+ */
+function async(callback)
+{
+ var isAsync = false;
+
+ // check if async happened
+ defer(function() { isAsync = true; });
+
+ return function async_callback(err, result)
+ {
+ if (isAsync)
+ {
+ callback(err, result);
+ }
+ else
+ {
+ defer(function nextTick_callback()
+ {
+ callback(err, result);
+ });
+ }
+ };
+}
+
+
+/***/ }),
+
+/***/ 9200:
+/***/ ((module) => {
+
+module.exports = defer;
+
+/**
+ * Runs provided function on next iteration of the event loop
+ *
+ * @param {function} fn - function to run
+ */
+function defer(fn)
+{
+ var nextTick = typeof setImmediate == 'function'
+ ? setImmediate
+ : (
+ typeof process == 'object' && typeof process.nextTick == 'function'
+ ? process.nextTick
+ : null
+ );
+
+ if (nextTick)
+ {
+ nextTick(fn);
+ }
+ else
+ {
+ setTimeout(fn, 0);
+ }
+}
+
+
+/***/ }),
+
+/***/ 4902:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var async = __nccwpck_require__(8452)
+ , abort = __nccwpck_require__(4818)
+ ;
+
+// API
+module.exports = iterate;
+
+/**
+ * Iterates over each job object
+ *
+ * @param {array|object} list - array or object (named list) to iterate over
+ * @param {function} iterator - iterator to run
+ * @param {object} state - current job status
+ * @param {function} callback - invoked when all elements processed
+ */
+function iterate(list, iterator, state, callback)
+{
+ // store current index
+ var key = state['keyedList'] ? state['keyedList'][state.index] : state.index;
+
+ state.jobs[key] = runJob(iterator, key, list[key], function(error, output)
+ {
+ // don't repeat yourself
+ // skip secondary callbacks
+ if (!(key in state.jobs))
+ {
+ return;
+ }
+
+ // clean up jobs
+ delete state.jobs[key];
+
+ if (error)
+ {
+ // don't process rest of the results
+ // stop still active jobs
+ // and reset the list
+ abort(state);
+ }
+ else
+ {
+ state.results[key] = output;
+ }
+
+ // return salvaged results
+ callback(error, state.results);
+ });
+}
+
+/**
+ * Runs iterator over provided job element
+ *
+ * @param {function} iterator - iterator to invoke
+ * @param {string|number} key - key/index of the element in the list of jobs
+ * @param {mixed} item - job description
+ * @param {function} callback - invoked after iterator is done with the job
+ * @returns {function|mixed} - job abort function or something else
+ */
+function runJob(iterator, key, item, callback)
+{
+ var aborter;
+
+ // allow shortcut if iterator expects only two arguments
+ if (iterator.length == 2)
+ {
+ aborter = iterator(item, async(callback));
+ }
+ // otherwise go with full three arguments
+ else
+ {
+ aborter = iterator(item, key, async(callback));
+ }
+
+ return aborter;
+}
+
+
+/***/ }),
+
+/***/ 1721:
+/***/ ((module) => {
+
+// API
+module.exports = state;
+
+/**
+ * Creates initial state object
+ * for iteration over list
+ *
+ * @param {array|object} list - list to iterate over
+ * @param {function|null} sortMethod - function to use for keys sort,
+ * or `null` to keep them as is
+ * @returns {object} - initial state object
+ */
+function state(list, sortMethod)
+{
+ var isNamedList = !Array.isArray(list)
+ , initState =
+ {
+ index : 0,
+ keyedList: isNamedList || sortMethod ? Object.keys(list) : null,
+ jobs : {},
+ results : isNamedList ? {} : [],
+ size : isNamedList ? Object.keys(list).length : list.length
+ }
+ ;
+
+ if (sortMethod)
+ {
+ // sort array keys based on it's values
+ // sort object's keys just on own merit
+ initState.keyedList.sort(isNamedList ? sortMethod : function(a, b)
+ {
+ return sortMethod(list[a], list[b]);
+ });
+ }
+
+ return initState;
+}
+
+
+/***/ }),
+
+/***/ 3351:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var abort = __nccwpck_require__(4818)
+ , async = __nccwpck_require__(8452)
+ ;
+
+// API
+module.exports = terminator;
+
+/**
+ * Terminates jobs in the attached state context
+ *
+ * @this AsyncKitState#
+ * @param {function} callback - final callback to invoke after termination
+ */
+function terminator(callback)
+{
+ if (!Object.keys(this.jobs).length)
+ {
+ return;
+ }
+
+ // fast forward iteration index
+ this.index = this.size;
+
+ // abort jobs
+ abort(this);
+
+ // send back results we have so far
+ async(callback)(null, this.results);
+}
+
+
+/***/ }),
+
+/***/ 3857:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var iterate = __nccwpck_require__(4902)
+ , initState = __nccwpck_require__(1721)
+ , terminator = __nccwpck_require__(3351)
+ ;
+
+// Public API
+module.exports = parallel;
+
+/**
+ * Runs iterator over provided array elements in parallel
+ *
+ * @param {array|object} list - array or object (named list) to iterate over
+ * @param {function} iterator - iterator to run
+ * @param {function} callback - invoked when all elements processed
+ * @returns {function} - jobs terminator
+ */
+function parallel(list, iterator, callback)
+{
+ var state = initState(list);
+
+ while (state.index < (state['keyedList'] || list).length)
+ {
+ iterate(list, iterator, state, function(error, result)
+ {
+ if (error)
+ {
+ callback(error, result);
+ return;
+ }
+
+ // looks like it's the last one
+ if (Object.keys(state.jobs).length === 0)
+ {
+ callback(null, state.results);
+ return;
+ }
+ });
+
+ state.index++;
+ }
+
+ return terminator.bind(state, callback);
+}
+
+
+/***/ }),
+
+/***/ 1054:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var serialOrdered = __nccwpck_require__(3961);
+
+// Public API
+module.exports = serial;
+
+/**
+ * Runs iterator over provided array elements in series
+ *
+ * @param {array|object} list - array or object (named list) to iterate over
+ * @param {function} iterator - iterator to run
+ * @param {function} callback - invoked when all elements processed
+ * @returns {function} - jobs terminator
+ */
+function serial(list, iterator, callback)
+{
+ return serialOrdered(list, iterator, null, callback);
+}
+
+
+/***/ }),
+
+/***/ 3961:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var iterate = __nccwpck_require__(4902)
+ , initState = __nccwpck_require__(1721)
+ , terminator = __nccwpck_require__(3351)
+ ;
+
+// Public API
+module.exports = serialOrdered;
+// sorting helpers
+module.exports.ascending = ascending;
+module.exports.descending = descending;
+
+/**
+ * Runs iterator over provided sorted array elements in series
+ *
+ * @param {array|object} list - array or object (named list) to iterate over
+ * @param {function} iterator - iterator to run
+ * @param {function} sortMethod - custom sort function
+ * @param {function} callback - invoked when all elements processed
+ * @returns {function} - jobs terminator
+ */
+function serialOrdered(list, iterator, sortMethod, callback)
+{
+ var state = initState(list, sortMethod);
+
+ iterate(list, iterator, state, function iteratorHandler(error, result)
+ {
+ if (error)
+ {
+ callback(error, result);
+ return;
+ }
+
+ state.index++;
+
+ // are we there yet?
+ if (state.index < (state['keyedList'] || list).length)
+ {
+ iterate(list, iterator, state, iteratorHandler);
+ return;
+ }
+
+ // done here
+ callback(null, state.results);
+ });
+
+ return terminator.bind(state, callback);
+}
+
+/*
+ * -- Sort methods
+ */
+
+/**
+ * sort helper to sort array elements in ascending order
+ *
+ * @param {mixed} a - an item to compare
+ * @param {mixed} b - an item to compare
+ * @returns {number} - comparison result
+ */
+function ascending(a, b)
+{
+ return a < b ? -1 : a > b ? 1 : 0;
+}
+
+/**
+ * sort helper to sort array elements in descending order
+ *
+ * @param {mixed} a - an item to compare
+ * @param {mixed} b - an item to compare
+ * @returns {number} - comparison result
+ */
+function descending(a, b)
+{
+ return -1 * ascending(a, b);
+}
+
+
+/***/ }),
+
+/***/ 8089:
+/***/ (function(module, __unused_webpack_exports, __nccwpck_require__) {
+
+
+var __importDefault = (this && this.__importDefault) || function (mod) {
+ return (mod && mod.__esModule) ? mod : { "default": mod };
+};
+const events_1 = __nccwpck_require__(4434);
+const debug_1 = __importDefault(__nccwpck_require__(2830));
+const promisify_1 = __importDefault(__nccwpck_require__(4401));
+const debug = debug_1.default('agent-base');
+function isAgent(v) {
+ return Boolean(v) && typeof v.addRequest === 'function';
+}
+function isSecureEndpoint() {
+ const { stack } = new Error();
+ if (typeof stack !== 'string')
+ return false;
+ return stack.split('\n').some(l => l.indexOf('(https.js:') !== -1 || l.indexOf('node:https:') !== -1);
+}
+function createAgent(callback, opts) {
+ return new createAgent.Agent(callback, opts);
+}
+(function (createAgent) {
+ /**
+ * Base `http.Agent` implementation.
+ * No pooling/keep-alive is implemented by default.
+ *
+ * @param {Function} callback
+ * @api public
+ */
+ class Agent extends events_1.EventEmitter {
+ constructor(callback, _opts) {
+ super();
+ let opts = _opts;
+ if (typeof callback === 'function') {
+ this.callback = callback;
+ }
+ else if (callback) {
+ opts = callback;
+ }
+ // Timeout for the socket to be returned from the callback
+ this.timeout = null;
+ if (opts && typeof opts.timeout === 'number') {
+ this.timeout = opts.timeout;
+ }
+ // These aren't actually used by `agent-base`, but are required
+ // for the TypeScript definition files in `@types/node` :/
+ this.maxFreeSockets = 1;
+ this.maxSockets = 1;
+ this.maxTotalSockets = Infinity;
+ this.sockets = {};
+ this.freeSockets = {};
+ this.requests = {};
+ this.options = {};
+ }
+ get defaultPort() {
+ if (typeof this.explicitDefaultPort === 'number') {
+ return this.explicitDefaultPort;
+ }
+ return isSecureEndpoint() ? 443 : 80;
+ }
+ set defaultPort(v) {
+ this.explicitDefaultPort = v;
+ }
+ get protocol() {
+ if (typeof this.explicitProtocol === 'string') {
+ return this.explicitProtocol;
+ }
+ return isSecureEndpoint() ? 'https:' : 'http:';
+ }
+ set protocol(v) {
+ this.explicitProtocol = v;
+ }
+ callback(req, opts, fn) {
+ throw new Error('"agent-base" has no default implementation, you must subclass and override `callback()`');
+ }
+ /**
+ * Called by node-core's "_http_client.js" module when creating
+ * a new HTTP request with this Agent instance.
+ *
+ * @api public
+ */
+ addRequest(req, _opts) {
+ const opts = Object.assign({}, _opts);
+ if (typeof opts.secureEndpoint !== 'boolean') {
+ opts.secureEndpoint = isSecureEndpoint();
+ }
+ if (opts.host == null) {
+ opts.host = 'localhost';
+ }
+ if (opts.port == null) {
+ opts.port = opts.secureEndpoint ? 443 : 80;
+ }
+ if (opts.protocol == null) {
+ opts.protocol = opts.secureEndpoint ? 'https:' : 'http:';
+ }
+ if (opts.host && opts.path) {
+ // If both a `host` and `path` are specified then it's most
+ // likely the result of a `url.parse()` call... we need to
+ // remove the `path` portion so that `net.connect()` doesn't
+ // attempt to open that as a unix socket file.
+ delete opts.path;
+ }
+ delete opts.agent;
+ delete opts.hostname;
+ delete opts._defaultAgent;
+ delete opts.defaultPort;
+ delete opts.createConnection;
+ // Hint to use "Connection: close"
+ // XXX: non-documented `http` module API :(
+ req._last = true;
+ req.shouldKeepAlive = false;
+ let timedOut = false;
+ let timeoutId = null;
+ const timeoutMs = opts.timeout || this.timeout;
+ const onerror = (err) => {
+ if (req._hadError)
+ return;
+ req.emit('error', err);
+ // For Safety. Some additional errors might fire later on
+ // and we need to make sure we don't double-fire the error event.
+ req._hadError = true;
+ };
+ const ontimeout = () => {
+ timeoutId = null;
+ timedOut = true;
+ const err = new Error(`A "socket" was not created for HTTP request before ${timeoutMs}ms`);
+ err.code = 'ETIMEOUT';
+ onerror(err);
+ };
+ const callbackError = (err) => {
+ if (timedOut)
+ return;
+ if (timeoutId !== null) {
+ clearTimeout(timeoutId);
+ timeoutId = null;
+ }
+ onerror(err);
+ };
+ const onsocket = (socket) => {
+ if (timedOut)
+ return;
+ if (timeoutId != null) {
+ clearTimeout(timeoutId);
+ timeoutId = null;
+ }
+ if (isAgent(socket)) {
+ // `socket` is actually an `http.Agent` instance, so
+ // relinquish responsibility for this `req` to the Agent
+ // from here on
+ debug('Callback returned another Agent instance %o', socket.constructor.name);
+ socket.addRequest(req, opts);
+ return;
+ }
+ if (socket) {
+ socket.once('free', () => {
+ this.freeSocket(socket, opts);
+ });
+ req.onSocket(socket);
+ return;
+ }
+ const err = new Error(`no Duplex stream was returned to agent-base for \`${req.method} ${req.path}\``);
+ onerror(err);
+ };
+ if (typeof this.callback !== 'function') {
+ onerror(new Error('`callback` is not defined'));
+ return;
+ }
+ if (!this.promisifiedCallback) {
+ if (this.callback.length >= 3) {
+ debug('Converting legacy callback function to promise');
+ this.promisifiedCallback = promisify_1.default(this.callback);
+ }
+ else {
+ this.promisifiedCallback = this.callback;
+ }
+ }
+ if (typeof timeoutMs === 'number' && timeoutMs > 0) {
+ timeoutId = setTimeout(ontimeout, timeoutMs);
+ }
+ if ('port' in opts && typeof opts.port !== 'number') {
+ opts.port = Number(opts.port);
+ }
+ try {
+ debug('Resolving socket for %o request: %o', opts.protocol, `${req.method} ${req.path}`);
+ Promise.resolve(this.promisifiedCallback(req, opts)).then(onsocket, callbackError);
+ }
+ catch (err) {
+ Promise.reject(err).catch(callbackError);
+ }
+ }
+ freeSocket(socket, opts) {
+ debug('Freeing socket %o %o', socket.constructor.name, opts);
+ socket.destroy();
+ }
+ destroy() {
+ debug('Destroying agent %o', this.constructor.name);
+ }
+ }
+ createAgent.Agent = Agent;
+ // So that `instanceof` works correctly
+ createAgent.prototype = createAgent.Agent.prototype;
+})(createAgent || (createAgent = {}));
+module.exports = createAgent;
+//# sourceMappingURL=index.js.map
+
+/***/ }),
+
+/***/ 4401:
+/***/ ((__unused_webpack_module, exports) => {
+
+
+Object.defineProperty(exports, "__esModule", ({ value: true }));
+function promisify(fn) {
+ return function (req, opts) {
+ return new Promise((resolve, reject) => {
+ fn.call(this, req, opts, (err, rtn) => {
+ if (err) {
+ reject(err);
+ }
+ else {
+ resolve(rtn);
+ }
+ });
+ });
+ };
+}
+exports["default"] = promisify;
+//# sourceMappingURL=promisify.js.map
+
+/***/ }),
+
+/***/ 5416:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var CombinedStream = __nccwpck_require__(5630);
+var util = __nccwpck_require__(9023);
+var path = __nccwpck_require__(6928);
+var http = __nccwpck_require__(8611);
+var https = __nccwpck_require__(5692);
+var parseUrl = (__nccwpck_require__(7016).parse);
+var fs = __nccwpck_require__(9896);
+var Stream = (__nccwpck_require__(2203).Stream);
+var crypto = __nccwpck_require__(6982);
+var mime = __nccwpck_require__(4096);
+var asynckit = __nccwpck_require__(1324);
+var setToStringTag = __nccwpck_require__(8700);
+var hasOwn = __nccwpck_require__(4076);
+var populate = __nccwpck_require__(4957);
+
+/**
+ * Escape CR, LF, and `"` in a multipart `name`/`filename` parameter, so a field
+ * name or filename can not break out of its header line to inject headers or
+ * smuggle additional parts. Matches the WHATWG HTML multipart/form-data encoding.
+ *
+ * @param {string} str - the parameter value to escape
+ * @returns {string} the escaped value
+ */
+function escapeHeaderParam(str) {
+ return String(str).replace(/\r/g, '%0D').replace(/\n/g, '%0A').replace(/"/g, '%22');
+}
+
+/**
+ * Create readable "multipart/form-data" streams.
+ * Can be used to submit forms
+ * and file uploads to other web applications.
+ *
+ * @constructor
+ * @param {object} options - Properties to be added/overriden for FormData and CombinedStream
+ */
+function FormData(options) {
+ if (!(this instanceof FormData)) {
+ return new FormData(options);
+ }
+
+ this._overheadLength = 0;
+ this._valueLength = 0;
+ this._valuesToMeasure = [];
+
+ CombinedStream.call(this);
+
+ options = options || {}; // eslint-disable-line no-param-reassign
+ for (var option in options) { // eslint-disable-line no-restricted-syntax
+ this[option] = options[option];
+ }
+}
+
+// make it a Stream
+util.inherits(FormData, CombinedStream);
+
+FormData.LINE_BREAK = '\r\n';
+FormData.DEFAULT_CONTENT_TYPE = 'application/octet-stream';
+
+FormData.prototype.append = function (field, value, options) {
+ options = options || {}; // eslint-disable-line no-param-reassign
+
+ // allow filename as single option
+ if (typeof options === 'string') {
+ options = { filename: options }; // eslint-disable-line no-param-reassign
+ }
+
+ var append = CombinedStream.prototype.append.bind(this);
+
+ // all that streamy business can't handle numbers
+ if (typeof value === 'number' || value == null) {
+ value = String(value); // eslint-disable-line no-param-reassign
+ }
+
+ // https://github.com/felixge/node-form-data/issues/38
+ if (Array.isArray(value)) {
+ /*
+ * Please convert your array into string
+ * the way web server expects it
+ */
+ this._error(new Error('Arrays are not supported.'));
+ return;
+ }
+
+ var header = this._multiPartHeader(field, value, options);
+ var footer = this._multiPartFooter();
+
+ append(header);
+ append(value);
+ append(footer);
+
+ // pass along options.knownLength
+ this._trackLength(header, value, options);
+};
+
+FormData.prototype._trackLength = function (header, value, options) {
+ var valueLength = 0;
+
+ /*
+ * used w/ getLengthSync(), when length is known.
+ * e.g. for streaming directly from a remote server,
+ * w/ a known file a size, and not wanting to wait for
+ * incoming file to finish to get its size.
+ */
+ if (options.knownLength != null) {
+ valueLength += Number(options.knownLength);
+ } else if (Buffer.isBuffer(value)) {
+ valueLength = value.length;
+ } else if (typeof value === 'string') {
+ valueLength = Buffer.byteLength(value);
+ }
+
+ this._valueLength += valueLength;
+
+ // @check why add CRLF? does this account for custom/multiple CRLFs?
+ this._overheadLength += Buffer.byteLength(header) + FormData.LINE_BREAK.length;
+
+ // empty or either doesn't have path or not an http response or not a stream
+ if (!value || (!value.path && !(value.readable && hasOwn(value, 'httpVersion')) && !(value instanceof Stream))) {
+ return;
+ }
+
+ // no need to bother with the length
+ if (!options.knownLength) {
+ this._valuesToMeasure.push(value);
+ }
+};
+
+FormData.prototype._lengthRetriever = function (value, callback) {
+ if (hasOwn(value, 'fd')) {
+ // take read range into a account
+ // `end` = Infinity –> read file till the end
+ //
+ // TODO: Looks like there is bug in Node fs.createReadStream
+ // it doesn't respect `end` options without `start` options
+ // Fix it when node fixes it.
+ // https://github.com/joyent/node/issues/7819
+ if (value.end != undefined && value.end != Infinity && value.start != undefined) {
+ // when end specified
+ // no need to calculate range
+ // inclusive, starts with 0
+ callback(null, value.end + 1 - (value.start ? value.start : 0)); // eslint-disable-line callback-return
+
+ // not that fast snoopy
+ } else {
+ // still need to fetch file size from fs
+ fs.stat(value.path, function (err, stat) {
+ if (err) {
+ callback(err);
+ return;
+ }
+
+ // update final size based on the range options
+ var fileSize = stat.size - (value.start ? value.start : 0);
+ callback(null, fileSize);
+ });
+ }
+
+ // or http response
+ } else if (hasOwn(value, 'httpVersion')) {
+ callback(null, Number(value.headers['content-length'])); // eslint-disable-line callback-return
+
+ // or request stream http://github.com/mikeal/request
+ } else if (hasOwn(value, 'httpModule')) {
+ // wait till response come back
+ value.on('response', function (response) {
+ value.pause();
+ callback(null, Number(response.headers['content-length']));
+ });
+ value.resume();
+
+ // something else
+ } else {
+ callback('Unknown stream'); // eslint-disable-line callback-return
+ }
+};
+
+FormData.prototype._multiPartHeader = function (field, value, options) {
+ /*
+ * custom header specified (as string)?
+ * it becomes responsible for boundary
+ * (e.g. to handle extra CRLFs on .NET servers)
+ */
+ if (typeof options.header === 'string') {
+ return options.header;
+ }
+
+ var contentDisposition = this._getContentDisposition(value, options);
+ var contentType = this._getContentType(value, options);
+
+ var contents = '';
+ var headers = {
+ // add custom disposition as third element or keep it two elements if not
+ 'Content-Disposition': ['form-data', 'name="' + escapeHeaderParam(field) + '"'].concat(contentDisposition || []),
+ // if no content type. allow it to be empty array
+ 'Content-Type': [].concat(contentType || [])
+ };
+
+ // allow custom headers.
+ if (typeof options.header === 'object') {
+ populate(headers, options.header);
+ }
+
+ var header;
+ for (var prop in headers) { // eslint-disable-line no-restricted-syntax
+ if (hasOwn(headers, prop)) {
+ header = headers[prop];
+
+ // skip nullish headers.
+ if (header == null) {
+ continue; // eslint-disable-line no-restricted-syntax, no-continue
+ }
+
+ // convert all headers to arrays.
+ if (!Array.isArray(header)) {
+ header = [header];
+ }
+
+ // add non-empty headers.
+ if (header.length) {
+ contents += prop + ': ' + header.join('; ') + FormData.LINE_BREAK;
+ }
+ }
+ }
+
+ return '--' + this.getBoundary() + FormData.LINE_BREAK + contents + FormData.LINE_BREAK;
+};
+
+FormData.prototype._getContentDisposition = function (value, options) { // eslint-disable-line consistent-return
+ var filename;
+
+ if (typeof options.filepath === 'string') {
+ // custom filepath for relative paths
+ filename = path.normalize(options.filepath).replace(/\\/g, '/');
+ } else if (options.filename || (value && (value.name || value.path))) {
+ /*
+ * custom filename take precedence
+ * formidable and the browser add a name property
+ * fs- and request- streams have path property
+ */
+ filename = path.basename(options.filename || (value && (value.name || value.path)));
+ } else if (value && value.readable && hasOwn(value, 'httpVersion')) {
+ // or try http response
+ filename = path.basename(value.client._httpMessage.path || '');
+ }
+
+ if (filename) {
+ return 'filename="' + escapeHeaderParam(filename) + '"';
+ }
+};
+
+FormData.prototype._getContentType = function (value, options) {
+ // use custom content-type above all
+ var contentType = options.contentType;
+
+ // or try `name` from formidable, browser
+ if (!contentType && value && value.name) {
+ contentType = mime.lookup(value.name);
+ }
+
+ // or try `path` from fs-, request- streams
+ if (!contentType && value && value.path) {
+ contentType = mime.lookup(value.path);
+ }
+
+ // or if it's http-reponse
+ if (!contentType && value && value.readable && hasOwn(value, 'httpVersion')) {
+ contentType = value.headers['content-type'];
+ }
+
+ // or guess it from the filepath or filename
+ if (!contentType && (options.filepath || options.filename)) {
+ contentType = mime.lookup(options.filepath || options.filename);
+ }
+
+ // fallback to the default content type if `value` is not simple value
+ if (!contentType && value && typeof value === 'object') {
+ contentType = FormData.DEFAULT_CONTENT_TYPE;
+ }
+
+ return contentType;
+};
+
+FormData.prototype._multiPartFooter = function () {
+ return function (next) {
+ var footer = FormData.LINE_BREAK;
+
+ var lastPart = this._streams.length === 0;
+ if (lastPart) {
+ footer += this._lastBoundary();
+ }
+
+ next(footer);
+ }.bind(this);
+};
+
+FormData.prototype._lastBoundary = function () {
+ return '--' + this.getBoundary() + '--' + FormData.LINE_BREAK;
+};
+
+FormData.prototype.getHeaders = function (userHeaders) {
+ var header;
+ var formHeaders = {
+ 'content-type': 'multipart/form-data; boundary=' + this.getBoundary()
+ };
+
+ for (header in userHeaders) { // eslint-disable-line no-restricted-syntax
+ if (hasOwn(userHeaders, header)) {
+ formHeaders[header.toLowerCase()] = userHeaders[header];
+ }
+ }
+
+ return formHeaders;
+};
+
+FormData.prototype.setBoundary = function (boundary) {
+ if (typeof boundary !== 'string') {
+ throw new TypeError('FormData boundary must be a string');
+ }
+ this._boundary = boundary;
+};
+
+FormData.prototype.getBoundary = function () {
+ if (!this._boundary) {
+ this._generateBoundary();
+ }
+
+ return this._boundary;
+};
+
+FormData.prototype.getBuffer = function () {
+ var dataBuffer = new Buffer.alloc(0); // eslint-disable-line new-cap
+ var boundary = this.getBoundary();
+
+ // Create the form content. Add Line breaks to the end of data.
+ for (var i = 0, len = this._streams.length; i < len; i++) {
+ if (typeof this._streams[i] !== 'function') {
+ // Add content to the buffer.
+ if (Buffer.isBuffer(this._streams[i])) {
+ dataBuffer = Buffer.concat([dataBuffer, this._streams[i]]);
+ } else {
+ dataBuffer = Buffer.concat([dataBuffer, Buffer.from(this._streams[i])]);
+ }
+
+ // Add break after content.
+ if (typeof this._streams[i] !== 'string' || this._streams[i].substring(2, boundary.length + 2) !== boundary) {
+ dataBuffer = Buffer.concat([dataBuffer, Buffer.from(FormData.LINE_BREAK)]);
+ }
+ }
+ }
+
+ // Add the footer and return the Buffer object.
+ return Buffer.concat([dataBuffer, Buffer.from(this._lastBoundary())]);
+};
+
+FormData.prototype._generateBoundary = function () {
+ // This generates a 50 character boundary similar to those used by Firefox.
+
+ // They are optimized for boyer-moore parsing.
+ this._boundary = '--------------------------' + crypto.randomBytes(12).toString('hex');
+};
+
+// Note: getLengthSync DOESN'T calculate streams length
+// As workaround one can calculate file size manually and add it as knownLength option
+FormData.prototype.getLengthSync = function () {
+ var knownLength = this._overheadLength + this._valueLength;
+
+ // Don't get confused, there are 3 "internal" streams for each keyval pair so it basically checks if there is any value added to the form
+ if (this._streams.length) {
+ knownLength += this._lastBoundary().length;
+ }
+
+ // https://github.com/form-data/form-data/issues/40
+ if (!this.hasKnownLength()) {
+ /*
+ * Some async length retrievers are present
+ * therefore synchronous length calculation is false.
+ * Please use getLength(callback) to get proper length
+ */
+ this._error(new Error('Cannot calculate proper length in synchronous way.'));
+ }
+
+ return knownLength;
+};
+
+// Public API to check if length of added values is known
+// https://github.com/form-data/form-data/issues/196
+// https://github.com/form-data/form-data/issues/262
+FormData.prototype.hasKnownLength = function () {
+ var hasKnownLength = true;
+
+ if (this._valuesToMeasure.length) {
+ hasKnownLength = false;
+ }
+
+ return hasKnownLength;
+};
+
+FormData.prototype.getLength = function (cb) {
+ var knownLength = this._overheadLength + this._valueLength;
+
+ if (this._streams.length) {
+ knownLength += this._lastBoundary().length;
+ }
+
+ if (!this._valuesToMeasure.length) {
+ process.nextTick(cb.bind(this, null, knownLength));
+ return;
+ }
+
+ asynckit.parallel(this._valuesToMeasure, this._lengthRetriever, function (err, values) {
+ if (err) {
+ cb(err);
+ return;
+ }
+
+ values.forEach(function (length) {
+ knownLength += length;
+ });
+
+ cb(null, knownLength);
+ });
+};
+
+FormData.prototype.submit = function (params, cb) {
+ var request;
+ var options;
+ var defaults = { method: 'post' };
+
+ // parse provided url if it's string or treat it as options object
+ if (typeof params === 'string') {
+ params = parseUrl(params); // eslint-disable-line no-param-reassign
+ /* eslint sort-keys: 0 */
+ options = populate({
+ port: params.port,
+ path: params.pathname,
+ host: params.hostname,
+ protocol: params.protocol
+ }, defaults);
+ } else { // use custom params
+ options = populate(params, defaults);
+ // if no port provided use default one
+ if (!options.port) {
+ options.port = options.protocol === 'https:' ? 443 : 80;
+ }
+ }
+
+ // put that good code in getHeaders to some use
+ options.headers = this.getHeaders(params.headers);
+
+ // https if specified, fallback to http in any other case
+ if (options.protocol === 'https:') {
+ request = https.request(options);
+ } else {
+ request = http.request(options);
+ }
+
+ // get content length and fire away
+ this.getLength(function (err, length) {
+ if (err && err !== 'Unknown stream') {
+ this._error(err);
+ return;
+ }
+
+ // add content length
+ if (length) {
+ request.setHeader('Content-Length', length);
+ }
+
+ this.pipe(request);
+ if (cb) {
+ var onResponse;
+
+ var callback = function (error, responce) {
+ request.removeListener('error', callback);
+ request.removeListener('response', onResponse);
+
+ return cb.call(this, error, responce);
+ };
+
+ onResponse = callback.bind(this, null);
+
+ request.on('error', callback);
+ request.on('response', onResponse);
+ }
+ }.bind(this));
+
+ return request;
+};
+
+FormData.prototype._error = function (err) {
+ if (!this.error) {
+ this.error = err;
+ this.pause();
+ this.emit('error', err);
+ }
+};
+
+FormData.prototype.toString = function () {
+ return '[object FormData]';
+};
+setToStringTag(FormData.prototype, 'FormData');
+
+// Public API
+module.exports = FormData;
+
+
+/***/ }),
+
+/***/ 4957:
+/***/ ((module) => {
+
+
+
+// populates missing values
+module.exports = function (dst, src) {
+ Object.keys(src).forEach(function (prop) {
+ dst[prop] = dst[prop] || src[prop]; // eslint-disable-line no-param-reassign
+ });
+
+ return dst;
+};
+
+
+/***/ }),
+
+/***/ 9870:
+/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
+
+
+var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
+ return new (P || (P = Promise))(function (resolve, reject) {
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
+ });
+};
+var __importDefault = (this && this.__importDefault) || function (mod) {
+ return (mod && mod.__esModule) ? mod : { "default": mod };
+};
+Object.defineProperty(exports, "__esModule", ({ value: true }));
+const net_1 = __importDefault(__nccwpck_require__(9278));
+const tls_1 = __importDefault(__nccwpck_require__(4756));
+const url_1 = __importDefault(__nccwpck_require__(7016));
+const assert_1 = __importDefault(__nccwpck_require__(2613));
+const debug_1 = __importDefault(__nccwpck_require__(2830));
+const agent_base_1 = __nccwpck_require__(8089);
+const parse_proxy_response_1 = __importDefault(__nccwpck_require__(5989));
+const debug = debug_1.default('https-proxy-agent:agent');
+/**
+ * The `HttpsProxyAgent` implements an HTTP Agent subclass that connects to
+ * the specified "HTTP(s) proxy server" in order to proxy HTTPS requests.
+ *
+ * Outgoing HTTP requests are first tunneled through the proxy server using the
+ * `CONNECT` HTTP request method to establish a connection to the proxy server,
+ * and then the proxy server connects to the destination target and issues the
+ * HTTP request from the proxy server.
+ *
+ * `https:` requests have their socket connection upgraded to TLS once
+ * the connection to the proxy server has been established.
+ *
+ * @api public
+ */
+class HttpsProxyAgent extends agent_base_1.Agent {
+ constructor(_opts) {
+ let opts;
+ if (typeof _opts === 'string') {
+ opts = url_1.default.parse(_opts);
+ }
+ else {
+ opts = _opts;
+ }
+ if (!opts) {
+ throw new Error('an HTTP(S) proxy server `host` and `port` must be specified!');
+ }
+ debug('creating new HttpsProxyAgent instance: %o', opts);
+ super(opts);
+ const proxy = Object.assign({}, opts);
+ // If `true`, then connect to the proxy server over TLS.
+ // Defaults to `false`.
+ this.secureProxy = opts.secureProxy || isHTTPS(proxy.protocol);
+ // Prefer `hostname` over `host`, and set the `port` if needed.
+ proxy.host = proxy.hostname || proxy.host;
+ if (typeof proxy.port === 'string') {
+ proxy.port = parseInt(proxy.port, 10);
+ }
+ if (!proxy.port && proxy.host) {
+ proxy.port = this.secureProxy ? 443 : 80;
+ }
+ // ALPN is supported by Node.js >= v5.
+ // attempt to negotiate http/1.1 for proxy servers that support http/2
+ if (this.secureProxy && !('ALPNProtocols' in proxy)) {
+ proxy.ALPNProtocols = ['http 1.1'];
+ }
+ if (proxy.host && proxy.path) {
+ // If both a `host` and `path` are specified then it's most likely
+ // the result of a `url.parse()` call... we need to remove the
+ // `path` portion so that `net.connect()` doesn't attempt to open
+ // that as a Unix socket file.
+ delete proxy.path;
+ delete proxy.pathname;
+ }
+ this.proxy = proxy;
+ }
+ /**
+ * Called when the node-core HTTP client library is creating a
+ * new HTTP request.
+ *
+ * @api protected
+ */
+ callback(req, opts) {
+ return __awaiter(this, void 0, void 0, function* () {
+ const { proxy, secureProxy } = this;
+ // Create a socket connection to the proxy server.
+ let socket;
+ if (secureProxy) {
+ debug('Creating `tls.Socket`: %o', proxy);
+ socket = tls_1.default.connect(proxy);
+ }
+ else {
+ debug('Creating `net.Socket`: %o', proxy);
+ socket = net_1.default.connect(proxy);
+ }
+ const headers = Object.assign({}, proxy.headers);
+ const hostname = `${opts.host}:${opts.port}`;
+ let payload = `CONNECT ${hostname} HTTP/1.1\r\n`;
+ // Inject the `Proxy-Authorization` header if necessary.
+ if (proxy.auth) {
+ headers['Proxy-Authorization'] = `Basic ${Buffer.from(proxy.auth).toString('base64')}`;
+ }
+ // The `Host` header should only include the port
+ // number when it is not the default port.
+ let { host, port, secureEndpoint } = opts;
+ if (!isDefaultPort(port, secureEndpoint)) {
+ host += `:${port}`;
+ }
+ headers.Host = host;
+ headers.Connection = 'close';
+ for (const name of Object.keys(headers)) {
+ payload += `${name}: ${headers[name]}\r\n`;
+ }
+ const proxyResponsePromise = parse_proxy_response_1.default(socket);
+ socket.write(`${payload}\r\n`);
+ const { statusCode, buffered } = yield proxyResponsePromise;
+ if (statusCode === 200) {
+ req.once('socket', resume);
+ if (opts.secureEndpoint) {
+ // The proxy is connecting to a TLS server, so upgrade
+ // this socket connection to a TLS connection.
+ debug('Upgrading socket connection to TLS');
+ const servername = opts.servername || opts.host;
+ return tls_1.default.connect(Object.assign(Object.assign({}, omit(opts, 'host', 'hostname', 'path', 'port')), { socket,
+ servername }));
+ }
+ return socket;
+ }
+ // Some other status code that's not 200... need to re-play the HTTP
+ // header "data" events onto the socket once the HTTP machinery is
+ // attached so that the node core `http` can parse and handle the
+ // error status code.
+ // Close the original socket, and a new "fake" socket is returned
+ // instead, so that the proxy doesn't get the HTTP request
+ // written to it (which may contain `Authorization` headers or other
+ // sensitive data).
+ //
+ // See: https://hackerone.com/reports/541502
+ socket.destroy();
+ const fakeSocket = new net_1.default.Socket({ writable: false });
+ fakeSocket.readable = true;
+ // Need to wait for the "socket" event to re-play the "data" events.
+ req.once('socket', (s) => {
+ debug('replaying proxy buffer for failed request');
+ assert_1.default(s.listenerCount('data') > 0);
+ // Replay the "buffered" Buffer onto the fake `socket`, since at
+ // this point the HTTP module machinery has been hooked up for
+ // the user.
+ s.push(buffered);
+ s.push(null);
+ });
+ return fakeSocket;
+ });
+ }
+}
+exports["default"] = HttpsProxyAgent;
+function resume(socket) {
+ socket.resume();
+}
+function isDefaultPort(port, secure) {
+ return Boolean((!secure && port === 80) || (secure && port === 443));
+}
+function isHTTPS(protocol) {
+ return typeof protocol === 'string' ? /^https:?$/i.test(protocol) : false;
+}
+function omit(obj, ...keys) {
+ const ret = {};
+ let key;
+ for (key in obj) {
+ if (!keys.includes(key)) {
+ ret[key] = obj[key];
+ }
+ }
+ return ret;
+}
+//# sourceMappingURL=agent.js.map
+
+/***/ }),
+
+/***/ 8996:
+/***/ (function(module, __unused_webpack_exports, __nccwpck_require__) {
+
+
+var __importDefault = (this && this.__importDefault) || function (mod) {
+ return (mod && mod.__esModule) ? mod : { "default": mod };
+};
+const agent_1 = __importDefault(__nccwpck_require__(9870));
+function createHttpsProxyAgent(opts) {
+ return new agent_1.default(opts);
+}
+(function (createHttpsProxyAgent) {
+ createHttpsProxyAgent.HttpsProxyAgent = agent_1.default;
+ createHttpsProxyAgent.prototype = agent_1.default.prototype;
+})(createHttpsProxyAgent || (createHttpsProxyAgent = {}));
+module.exports = createHttpsProxyAgent;
+//# sourceMappingURL=index.js.map
+
+/***/ }),
+
+/***/ 5989:
+/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
+
+
+var __importDefault = (this && this.__importDefault) || function (mod) {
+ return (mod && mod.__esModule) ? mod : { "default": mod };
+};
+Object.defineProperty(exports, "__esModule", ({ value: true }));
+const debug_1 = __importDefault(__nccwpck_require__(2830));
+const debug = debug_1.default('https-proxy-agent:parse-proxy-response');
+function parseProxyResponse(socket) {
+ return new Promise((resolve, reject) => {
+ // we need to buffer any HTTP traffic that happens with the proxy before we get
+ // the CONNECT response, so that if the response is anything other than an "200"
+ // response code, then we can re-play the "data" events on the socket once the
+ // HTTP parser is hooked up...
+ let buffersLength = 0;
+ const buffers = [];
+ function read() {
+ const b = socket.read();
+ if (b)
+ ondata(b);
+ else
+ socket.once('readable', read);
+ }
+ function cleanup() {
+ socket.removeListener('end', onend);
+ socket.removeListener('error', onerror);
+ socket.removeListener('close', onclose);
+ socket.removeListener('readable', read);
+ }
+ function onclose(err) {
+ debug('onclose had error %o', err);
+ }
+ function onend() {
+ debug('onend');
+ }
+ function onerror(err) {
+ cleanup();
+ debug('onerror %o', err);
+ reject(err);
+ }
+ function ondata(b) {
+ buffers.push(b);
+ buffersLength += b.length;
+ const buffered = Buffer.concat(buffers, buffersLength);
+ const endOfHeaders = buffered.indexOf('\r\n\r\n');
+ if (endOfHeaders === -1) {
+ // keep buffering
+ debug('have not received end of HTTP headers yet...');
+ read();
+ return;
+ }
+ const firstLine = buffered.toString('ascii', 0, buffered.indexOf('\r\n'));
+ const statusCode = +firstLine.split(' ')[1];
+ debug('got proxy server response: %o', firstLine);
+ resolve({
+ statusCode,
+ buffered
+ });
+ }
+ socket.on('error', onerror);
+ socket.on('close', onclose);
+ socket.on('end', onend);
+ read();
+ });
+}
+exports["default"] = parseProxyResponse;
+//# sourceMappingURL=parse-proxy-response.js.map
+
+/***/ }),
+
+/***/ 2639:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var bind = __nccwpck_require__(7564);
+
+var $apply = __nccwpck_require__(3945);
+var $call = __nccwpck_require__(8093);
+var $reflectApply = __nccwpck_require__(1330);
+
+/** @type {import('./actualApply')} */
+module.exports = $reflectApply || bind.call($call, $apply);
+
+
+/***/ }),
+
+/***/ 3945:
+/***/ ((module) => {
+
+
+
+/** @type {import('./functionApply')} */
+module.exports = Function.prototype.apply;
+
+
+/***/ }),
+
+/***/ 8093:
+/***/ ((module) => {
+
+
+
+/** @type {import('./functionCall')} */
+module.exports = Function.prototype.call;
+
+
+/***/ }),
+
+/***/ 8705:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var bind = __nccwpck_require__(7564);
+var $TypeError = __nccwpck_require__(3314);
+
+var $call = __nccwpck_require__(8093);
+var $actualApply = __nccwpck_require__(2639);
+
+/** @type {(args: [Function, thisArg?: unknown, ...args: unknown[]]) => Function} TODO FIXME, find a way to use import('.') */
+module.exports = function callBindBasic(args) {
+ if (args.length < 1 || typeof args[0] !== 'function') {
+ throw new $TypeError('a function is required');
+ }
+ return $actualApply(bind, $call, args);
+};
+
+
+/***/ }),
+
+/***/ 1330:
+/***/ ((module) => {
+
+
+
+/** @type {import('./reflectApply')} */
+module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
+
+
+/***/ }),
+
+/***/ 5630:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var util = __nccwpck_require__(9023);
+var Stream = (__nccwpck_require__(2203).Stream);
+var DelayedStream = __nccwpck_require__(2710);
+
+module.exports = CombinedStream;
+function CombinedStream() {
+ this.writable = false;
+ this.readable = true;
+ this.dataSize = 0;
+ this.maxDataSize = 2 * 1024 * 1024;
+ this.pauseStreams = true;
+
+ this._released = false;
+ this._streams = [];
+ this._currentStream = null;
+ this._insideLoop = false;
+ this._pendingNext = false;
+}
+util.inherits(CombinedStream, Stream);
+
+CombinedStream.create = function(options) {
+ var combinedStream = new this();
+
+ options = options || {};
+ for (var option in options) {
+ combinedStream[option] = options[option];
+ }
+
+ return combinedStream;
+};
+
+CombinedStream.isStreamLike = function(stream) {
+ return (typeof stream !== 'function')
+ && (typeof stream !== 'string')
+ && (typeof stream !== 'boolean')
+ && (typeof stream !== 'number')
+ && (!Buffer.isBuffer(stream));
+};
+
+CombinedStream.prototype.append = function(stream) {
+ var isStreamLike = CombinedStream.isStreamLike(stream);
+
+ if (isStreamLike) {
+ if (!(stream instanceof DelayedStream)) {
+ var newStream = DelayedStream.create(stream, {
+ maxDataSize: Infinity,
+ pauseStream: this.pauseStreams,
+ });
+ stream.on('data', this._checkDataSize.bind(this));
+ stream = newStream;
+ }
+
+ this._handleErrors(stream);
+
+ if (this.pauseStreams) {
+ stream.pause();
+ }
+ }
+
+ this._streams.push(stream);
+ return this;
+};
+
+CombinedStream.prototype.pipe = function(dest, options) {
+ Stream.prototype.pipe.call(this, dest, options);
+ this.resume();
+ return dest;
+};
+
+CombinedStream.prototype._getNext = function() {
+ this._currentStream = null;
+
+ if (this._insideLoop) {
+ this._pendingNext = true;
+ return; // defer call
+ }
+
+ this._insideLoop = true;
+ try {
+ do {
+ this._pendingNext = false;
+ this._realGetNext();
+ } while (this._pendingNext);
+ } finally {
+ this._insideLoop = false;
+ }
+};
+
+CombinedStream.prototype._realGetNext = function() {
+ var stream = this._streams.shift();
+
+
+ if (typeof stream == 'undefined') {
+ this.end();
+ return;
+ }
+
+ if (typeof stream !== 'function') {
+ this._pipeNext(stream);
+ return;
+ }
+
+ var getStream = stream;
+ getStream(function(stream) {
+ var isStreamLike = CombinedStream.isStreamLike(stream);
+ if (isStreamLike) {
+ stream.on('data', this._checkDataSize.bind(this));
+ this._handleErrors(stream);
+ }
+
+ this._pipeNext(stream);
+ }.bind(this));
+};
+
+CombinedStream.prototype._pipeNext = function(stream) {
+ this._currentStream = stream;
+
+ var isStreamLike = CombinedStream.isStreamLike(stream);
+ if (isStreamLike) {
+ stream.on('end', this._getNext.bind(this));
+ stream.pipe(this, {end: false});
+ return;
+ }
+
+ var value = stream;
+ this.write(value);
+ this._getNext();
+};
+
+CombinedStream.prototype._handleErrors = function(stream) {
+ var self = this;
+ stream.on('error', function(err) {
+ self._emitError(err);
+ });
+};
+
+CombinedStream.prototype.write = function(data) {
+ this.emit('data', data);
+};
+
+CombinedStream.prototype.pause = function() {
+ if (!this.pauseStreams) {
+ return;
+ }
+
+ if(this.pauseStreams && this._currentStream && typeof(this._currentStream.pause) == 'function') this._currentStream.pause();
+ this.emit('pause');
+};
+
+CombinedStream.prototype.resume = function() {
+ if (!this._released) {
+ this._released = true;
+ this.writable = true;
+ this._getNext();
+ }
+
+ if(this.pauseStreams && this._currentStream && typeof(this._currentStream.resume) == 'function') this._currentStream.resume();
+ this.emit('resume');
+};
+
+CombinedStream.prototype.end = function() {
+ this._reset();
+ this.emit('end');
+};
+
+CombinedStream.prototype.destroy = function() {
+ this._reset();
+ this.emit('close');
+};
+
+CombinedStream.prototype._reset = function() {
+ this.writable = false;
+ this._streams = [];
+ this._currentStream = null;
+};
+
+CombinedStream.prototype._checkDataSize = function() {
+ this._updateDataSize();
+ if (this.dataSize <= this.maxDataSize) {
+ return;
+ }
+
+ var message =
+ 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.';
+ this._emitError(new Error(message));
+};
+
+CombinedStream.prototype._updateDataSize = function() {
+ this.dataSize = 0;
+
+ var self = this;
+ this._streams.forEach(function(stream) {
+ if (!stream.dataSize) {
+ return;
+ }
+
+ self.dataSize += stream.dataSize;
+ });
+
+ if (this._currentStream && this._currentStream.dataSize) {
+ this.dataSize += this._currentStream.dataSize;
+ }
+};
+
+CombinedStream.prototype._emitError = function(err) {
+ this._reset();
+ this.emit('error', err);
+};
+
+
+/***/ }),
+
+/***/ 6110:
+/***/ ((module, exports, __nccwpck_require__) => {
+
+/* eslint-env browser */
+
+/**
+ * This is the web browser implementation of `debug()`.
+ */
+
+exports.formatArgs = formatArgs;
+exports.save = save;
+exports.load = load;
+exports.useColors = useColors;
+exports.storage = localstorage();
+exports.destroy = (() => {
+ let warned = false;
+
+ return () => {
+ if (!warned) {
+ warned = true;
+ console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');
+ }
+ };
+})();
+
+/**
+ * Colors.
+ */
+
+exports.colors = [
+ '#0000CC',
+ '#0000FF',
+ '#0033CC',
+ '#0033FF',
+ '#0066CC',
+ '#0066FF',
+ '#0099CC',
+ '#0099FF',
+ '#00CC00',
+ '#00CC33',
+ '#00CC66',
+ '#00CC99',
+ '#00CCCC',
+ '#00CCFF',
+ '#3300CC',
+ '#3300FF',
+ '#3333CC',
+ '#3333FF',
+ '#3366CC',
+ '#3366FF',
+ '#3399CC',
+ '#3399FF',
+ '#33CC00',
+ '#33CC33',
+ '#33CC66',
+ '#33CC99',
+ '#33CCCC',
+ '#33CCFF',
+ '#6600CC',
+ '#6600FF',
+ '#6633CC',
+ '#6633FF',
+ '#66CC00',
+ '#66CC33',
+ '#9900CC',
+ '#9900FF',
+ '#9933CC',
+ '#9933FF',
+ '#99CC00',
+ '#99CC33',
+ '#CC0000',
+ '#CC0033',
+ '#CC0066',
+ '#CC0099',
+ '#CC00CC',
+ '#CC00FF',
+ '#CC3300',
+ '#CC3333',
+ '#CC3366',
+ '#CC3399',
+ '#CC33CC',
+ '#CC33FF',
+ '#CC6600',
+ '#CC6633',
+ '#CC9900',
+ '#CC9933',
+ '#CCCC00',
+ '#CCCC33',
+ '#FF0000',
+ '#FF0033',
+ '#FF0066',
+ '#FF0099',
+ '#FF00CC',
+ '#FF00FF',
+ '#FF3300',
+ '#FF3333',
+ '#FF3366',
+ '#FF3399',
+ '#FF33CC',
+ '#FF33FF',
+ '#FF6600',
+ '#FF6633',
+ '#FF9900',
+ '#FF9933',
+ '#FFCC00',
+ '#FFCC33'
+];
+
+/**
+ * Currently only WebKit-based Web Inspectors, Firefox >= v31,
+ * and the Firebug extension (any Firefox version) are known
+ * to support "%c" CSS customizations.
+ *
+ * TODO: add a `localStorage` variable to explicitly enable/disable colors
+ */
+
+// eslint-disable-next-line complexity
+function useColors() {
+ // NB: In an Electron preload script, document will be defined but not fully
+ // initialized. Since we know we're in Chrome, we'll just detect this case
+ // explicitly
+ if (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) {
+ return true;
+ }
+
+ // Internet Explorer and Edge do not support colors.
+ if (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
+ return false;
+ }
+
+ let m;
+
+ // Is webkit? http://stackoverflow.com/a/16459606/376773
+ // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
+ // eslint-disable-next-line no-return-assign
+ return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
+ // Is firebug? http://stackoverflow.com/a/398120/376773
+ (typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||
+ // Is firefox >= v31?
+ // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
+ (typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31) ||
+ // Double check webkit in userAgent just in case we are in a worker
+ (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/));
+}
+
+/**
+ * Colorize log arguments if enabled.
+ *
+ * @api public
+ */
+
+function formatArgs(args) {
+ args[0] = (this.useColors ? '%c' : '') +
+ this.namespace +
+ (this.useColors ? ' %c' : ' ') +
+ args[0] +
+ (this.useColors ? '%c ' : ' ') +
+ '+' + module.exports.humanize(this.diff);
+
+ if (!this.useColors) {
+ return;
+ }
+
+ const c = 'color: ' + this.color;
+ args.splice(1, 0, c, 'color: inherit');
+
+ // The final "%c" is somewhat tricky, because there could be other
+ // arguments passed either before or after the %c, so we need to
+ // figure out the correct index to insert the CSS into
+ let index = 0;
+ let lastC = 0;
+ args[0].replace(/%[a-zA-Z%]/g, match => {
+ if (match === '%%') {
+ return;
+ }
+ index++;
+ if (match === '%c') {
+ // We only are interested in the *last* %c
+ // (the user may have provided their own)
+ lastC = index;
+ }
+ });
+
+ args.splice(lastC, 0, c);
+}
+
+/**
+ * Invokes `console.debug()` when available.
+ * No-op when `console.debug` is not a "function".
+ * If `console.debug` is not available, falls back
+ * to `console.log`.
+ *
+ * @api public
+ */
+exports.log = console.debug || console.log || (() => {});
+
+/**
+ * Save `namespaces`.
+ *
+ * @param {String} namespaces
+ * @api private
+ */
+function save(namespaces) {
+ try {
+ if (namespaces) {
+ exports.storage.setItem('debug', namespaces);
+ } else {
+ exports.storage.removeItem('debug');
+ }
+ } catch (error) {
+ // Swallow
+ // XXX (@Qix-) should we be logging these?
+ }
+}
+
+/**
+ * Load `namespaces`.
+ *
+ * @return {String} returns the previously persisted debug modes
+ * @api private
+ */
+function load() {
+ let r;
+ try {
+ r = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;
+ } catch (error) {
+ // Swallow
+ // XXX (@Qix-) should we be logging these?
+ }
+
+ // If debug isn't set in LS, and we're in Electron, try to load $DEBUG
+ if (!r && typeof process !== 'undefined' && 'env' in process) {
+ r = process.env.DEBUG;
+ }
+
+ return r;
+}
+
+/**
+ * Localstorage attempts to return the localstorage.
+ *
+ * This is necessary because safari throws
+ * when a user disables cookies/localstorage
+ * and you attempt to access it.
+ *
+ * @return {LocalStorage}
+ * @api private
+ */
+
+function localstorage() {
+ try {
+ // TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context
+ // The Browser also has localStorage in the global context.
+ return localStorage;
+ } catch (error) {
+ // Swallow
+ // XXX (@Qix-) should we be logging these?
+ }
+}
+
+module.exports = __nccwpck_require__(897)(exports);
+
+const {formatters} = module.exports;
+
+/**
+ * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.
+ */
+
+formatters.j = function (v) {
+ try {
+ return JSON.stringify(v);
+ } catch (error) {
+ return '[UnexpectedJSONParseError]: ' + error.message;
+ }
+};
+
+
+/***/ }),
+
+/***/ 897:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+/**
+ * This is the common logic for both the Node.js and web browser
+ * implementations of `debug()`.
+ */
+
+function setup(env) {
+ createDebug.debug = createDebug;
+ createDebug.default = createDebug;
+ createDebug.coerce = coerce;
+ createDebug.disable = disable;
+ createDebug.enable = enable;
+ createDebug.enabled = enabled;
+ createDebug.humanize = __nccwpck_require__(744);
+ createDebug.destroy = destroy;
+
+ Object.keys(env).forEach(key => {
+ createDebug[key] = env[key];
+ });
+
+ /**
+ * The currently active debug mode names, and names to skip.
+ */
+
+ createDebug.names = [];
+ createDebug.skips = [];
+
+ /**
+ * Map of special "%n" handling functions, for the debug "format" argument.
+ *
+ * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N".
+ */
+ createDebug.formatters = {};
+
+ /**
+ * Selects a color for a debug namespace
+ * @param {String} namespace The namespace string for the debug instance to be colored
+ * @return {Number|String} An ANSI color code for the given namespace
+ * @api private
+ */
+ function selectColor(namespace) {
+ let hash = 0;
+
+ for (let i = 0; i < namespace.length; i++) {
+ hash = ((hash << 5) - hash) + namespace.charCodeAt(i);
+ hash |= 0; // Convert to 32bit integer
+ }
+
+ return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
+ }
+ createDebug.selectColor = selectColor;
+
+ /**
+ * Create a debugger with the given `namespace`.
+ *
+ * @param {String} namespace
+ * @return {Function}
+ * @api public
+ */
+ function createDebug(namespace) {
+ let prevTime;
+ let enableOverride = null;
+ let namespacesCache;
+ let enabledCache;
+
+ function debug(...args) {
+ // Disabled?
+ if (!debug.enabled) {
+ return;
+ }
+
+ const self = debug;
+
+ // Set `diff` timestamp
+ const curr = Number(new Date());
+ const ms = curr - (prevTime || curr);
+ self.diff = ms;
+ self.prev = prevTime;
+ self.curr = curr;
+ prevTime = curr;
+
+ args[0] = createDebug.coerce(args[0]);
+
+ if (typeof args[0] !== 'string') {
+ // Anything else let's inspect with %O
+ args.unshift('%O');
+ }
+
+ // Apply any `formatters` transformations
+ let index = 0;
+ args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
+ // If we encounter an escaped % then don't increase the array index
+ if (match === '%%') {
+ return '%';
+ }
+ index++;
+ const formatter = createDebug.formatters[format];
+ if (typeof formatter === 'function') {
+ const val = args[index];
+ match = formatter.call(self, val);
+
+ // Now we need to remove `args[index]` since it's inlined in the `format`
+ args.splice(index, 1);
+ index--;
+ }
+ return match;
+ });
+
+ // Apply env-specific formatting (colors, etc.)
+ createDebug.formatArgs.call(self, args);
+
+ const logFn = self.log || createDebug.log;
+ logFn.apply(self, args);
+ }
+
+ debug.namespace = namespace;
+ debug.useColors = createDebug.useColors();
+ debug.color = createDebug.selectColor(namespace);
+ debug.extend = extend;
+ debug.destroy = createDebug.destroy; // XXX Temporary. Will be removed in the next major release.
+
+ Object.defineProperty(debug, 'enabled', {
+ enumerable: true,
+ configurable: false,
+ get: () => {
+ if (enableOverride !== null) {
+ return enableOverride;
+ }
+ if (namespacesCache !== createDebug.namespaces) {
+ namespacesCache = createDebug.namespaces;
+ enabledCache = createDebug.enabled(namespace);
+ }
+
+ return enabledCache;
+ },
+ set: v => {
+ enableOverride = v;
+ }
+ });
+
+ // Env-specific initialization logic for debug instances
+ if (typeof createDebug.init === 'function') {
+ createDebug.init(debug);
+ }
+
+ return debug;
+ }
+
+ function extend(namespace, delimiter) {
+ const newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace);
+ newDebug.log = this.log;
+ return newDebug;
+ }
+
+ /**
+ * Enables a debug mode by namespaces. This can include modes
+ * separated by a colon and wildcards.
+ *
+ * @param {String} namespaces
+ * @api public
+ */
+ function enable(namespaces) {
+ createDebug.save(namespaces);
+ createDebug.namespaces = namespaces;
+
+ createDebug.names = [];
+ createDebug.skips = [];
+
+ const split = (typeof namespaces === 'string' ? namespaces : '')
+ .trim()
+ .replace(/\s+/g, ',')
+ .split(',')
+ .filter(Boolean);
+
+ for (const ns of split) {
+ if (ns[0] === '-') {
+ createDebug.skips.push(ns.slice(1));
+ } else {
+ createDebug.names.push(ns);
+ }
+ }
+ }
+
+ /**
+ * Checks if the given string matches a namespace template, honoring
+ * asterisks as wildcards.
+ *
+ * @param {String} search
+ * @param {String} template
+ * @return {Boolean}
+ */
+ function matchesTemplate(search, template) {
+ let searchIndex = 0;
+ let templateIndex = 0;
+ let starIndex = -1;
+ let matchIndex = 0;
+
+ while (searchIndex < search.length) {
+ if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === '*')) {
+ // Match character or proceed with wildcard
+ if (template[templateIndex] === '*') {
+ starIndex = templateIndex;
+ matchIndex = searchIndex;
+ templateIndex++; // Skip the '*'
+ } else {
+ searchIndex++;
+ templateIndex++;
+ }
+ } else if (starIndex !== -1) { // eslint-disable-line no-negated-condition
+ // Backtrack to the last '*' and try to match more characters
+ templateIndex = starIndex + 1;
+ matchIndex++;
+ searchIndex = matchIndex;
+ } else {
+ return false; // No match
+ }
+ }
+
+ // Handle trailing '*' in template
+ while (templateIndex < template.length && template[templateIndex] === '*') {
+ templateIndex++;
+ }
+
+ return templateIndex === template.length;
+ }
+
+ /**
+ * Disable debug output.
+ *
+ * @return {String} namespaces
+ * @api public
+ */
+ function disable() {
+ const namespaces = [
+ ...createDebug.names,
+ ...createDebug.skips.map(namespace => '-' + namespace)
+ ].join(',');
+ createDebug.enable('');
+ return namespaces;
+ }
+
+ /**
+ * Returns true if the given mode name is enabled, false otherwise.
+ *
+ * @param {String} name
+ * @return {Boolean}
+ * @api public
+ */
+ function enabled(name) {
+ for (const skip of createDebug.skips) {
+ if (matchesTemplate(name, skip)) {
+ return false;
+ }
+ }
+
+ for (const ns of createDebug.names) {
+ if (matchesTemplate(name, ns)) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * Coerce `val`.
+ *
+ * @param {Mixed} val
+ * @return {Mixed}
+ * @api private
+ */
+ function coerce(val) {
+ if (val instanceof Error) {
+ return val.stack || val.message;
+ }
+ return val;
+ }
+
+ /**
+ * XXX DO NOT USE. This is a temporary stub function.
+ * XXX It WILL be removed in the next major release.
+ */
+ function destroy() {
+ console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');
+ }
+
+ createDebug.enable(createDebug.load());
+
+ return createDebug;
+}
+
+module.exports = setup;
+
+
+/***/ }),
+
+/***/ 2830:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+/**
+ * Detect Electron renderer / nwjs process, which is node, but we should
+ * treat as a browser.
+ */
+
+if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
+ module.exports = __nccwpck_require__(6110);
+} else {
+ module.exports = __nccwpck_require__(5108);
+}
+
+
+/***/ }),
+
+/***/ 5108:
+/***/ ((module, exports, __nccwpck_require__) => {
+
+/**
+ * Module dependencies.
+ */
+
+const tty = __nccwpck_require__(2018);
+const util = __nccwpck_require__(9023);
+
+/**
+ * This is the Node.js implementation of `debug()`.
+ */
+
+exports.init = init;
+exports.log = log;
+exports.formatArgs = formatArgs;
+exports.save = save;
+exports.load = load;
+exports.useColors = useColors;
+exports.destroy = util.deprecate(
+ () => {},
+ 'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'
+);
+
+/**
+ * Colors.
+ */
+
+exports.colors = [6, 2, 3, 4, 5, 1];
+
+try {
+ // Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
+ // eslint-disable-next-line import/no-extraneous-dependencies
+ const supportsColor = __nccwpck_require__(75);
+
+ if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
+ exports.colors = [
+ 20,
+ 21,
+ 26,
+ 27,
+ 32,
+ 33,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 56,
+ 57,
+ 62,
+ 63,
+ 68,
+ 69,
+ 74,
+ 75,
+ 76,
+ 77,
+ 78,
+ 79,
+ 80,
+ 81,
+ 92,
+ 93,
+ 98,
+ 99,
+ 112,
+ 113,
+ 128,
+ 129,
+ 134,
+ 135,
+ 148,
+ 149,
+ 160,
+ 161,
+ 162,
+ 163,
+ 164,
+ 165,
+ 166,
+ 167,
+ 168,
+ 169,
+ 170,
+ 171,
+ 172,
+ 173,
+ 178,
+ 179,
+ 184,
+ 185,
+ 196,
+ 197,
+ 198,
+ 199,
+ 200,
+ 201,
+ 202,
+ 203,
+ 204,
+ 205,
+ 206,
+ 207,
+ 208,
+ 209,
+ 214,
+ 215,
+ 220,
+ 221
+ ];
+ }
+} catch (error) {
+ // Swallow - we only care if `supports-color` is available; it doesn't have to be.
+}
+
+/**
+ * Build up the default `inspectOpts` object from the environment variables.
+ *
+ * $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js
+ */
+
+exports.inspectOpts = Object.keys(process.env).filter(key => {
+ return /^debug_/i.test(key);
+}).reduce((obj, key) => {
+ // Camel-case
+ const prop = key
+ .substring(6)
+ .toLowerCase()
+ .replace(/_([a-z])/g, (_, k) => {
+ return k.toUpperCase();
+ });
+
+ // Coerce string value into JS value
+ let val = process.env[key];
+ if (/^(yes|on|true|enabled)$/i.test(val)) {
+ val = true;
+ } else if (/^(no|off|false|disabled)$/i.test(val)) {
+ val = false;
+ } else if (val === 'null') {
+ val = null;
+ } else {
+ val = Number(val);
+ }
+
+ obj[prop] = val;
+ return obj;
+}, {});
+
+/**
+ * Is stdout a TTY? Colored output is enabled when `true`.
+ */
+
+function useColors() {
+ return 'colors' in exports.inspectOpts ?
+ Boolean(exports.inspectOpts.colors) :
+ tty.isatty(process.stderr.fd);
+}
+
+/**
+ * Adds ANSI color escape codes if enabled.
+ *
+ * @api public
+ */
+
+function formatArgs(args) {
+ const {namespace: name, useColors} = this;
+
+ if (useColors) {
+ const c = this.color;
+ const colorCode = '\u001B[3' + (c < 8 ? c : '8;5;' + c);
+ const prefix = ` ${colorCode};1m${name} \u001B[0m`;
+
+ args[0] = prefix + args[0].split('\n').join('\n' + prefix);
+ args.push(colorCode + 'm+' + module.exports.humanize(this.diff) + '\u001B[0m');
+ } else {
+ args[0] = getDate() + name + ' ' + args[0];
+ }
+}
+
+function getDate() {
+ if (exports.inspectOpts.hideDate) {
+ return '';
+ }
+ return new Date().toISOString() + ' ';
+}
+
+/**
+ * Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr.
+ */
+
+function log(...args) {
+ return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n');
+}
+
+/**
+ * Save `namespaces`.
+ *
+ * @param {String} namespaces
+ * @api private
+ */
+function save(namespaces) {
+ if (namespaces) {
+ process.env.DEBUG = namespaces;
+ } else {
+ // If you set a process.env field to null or undefined, it gets cast to the
+ // string 'null' or 'undefined'. Just delete instead.
+ delete process.env.DEBUG;
+ }
+}
+
+/**
+ * Load `namespaces`.
+ *
+ * @return {String} returns the previously persisted debug modes
+ * @api private
+ */
+
+function load() {
+ return process.env.DEBUG;
+}
+
+/**
+ * Init logic for `debug` instances.
+ *
+ * Create a new `inspectOpts` object in case `useColors` is set
+ * differently for a particular `debug` instance.
+ */
+
+function init(debug) {
+ debug.inspectOpts = {};
+
+ const keys = Object.keys(exports.inspectOpts);
+ for (let i = 0; i < keys.length; i++) {
+ debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
+ }
+}
+
+module.exports = __nccwpck_require__(897)(exports);
+
+const {formatters} = module.exports;
+
+/**
+ * Map %o to `util.inspect()`, all on a single line.
+ */
+
+formatters.o = function (v) {
+ this.inspectOpts.colors = this.useColors;
+ return util.inspect(v, this.inspectOpts)
+ .split('\n')
+ .map(str => str.trim())
+ .join(' ');
+};
+
+/**
+ * Map %O to `util.inspect()`, allowing multiple lines if needed.
+ */
+
+formatters.O = function (v) {
+ this.inspectOpts.colors = this.useColors;
+ return util.inspect(v, this.inspectOpts);
+};
+
+
+/***/ }),
+
+/***/ 2710:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var Stream = (__nccwpck_require__(2203).Stream);
+var util = __nccwpck_require__(9023);
+
+module.exports = DelayedStream;
+function DelayedStream() {
+ this.source = null;
+ this.dataSize = 0;
+ this.maxDataSize = 1024 * 1024;
+ this.pauseStream = true;
+
+ this._maxDataSizeExceeded = false;
+ this._released = false;
+ this._bufferedEvents = [];
+}
+util.inherits(DelayedStream, Stream);
+
+DelayedStream.create = function(source, options) {
+ var delayedStream = new this();
+
+ options = options || {};
+ for (var option in options) {
+ delayedStream[option] = options[option];
+ }
+
+ delayedStream.source = source;
+
+ var realEmit = source.emit;
+ source.emit = function() {
+ delayedStream._handleEmit(arguments);
+ return realEmit.apply(source, arguments);
+ };
+
+ source.on('error', function() {});
+ if (delayedStream.pauseStream) {
+ source.pause();
+ }
+
+ return delayedStream;
+};
+
+Object.defineProperty(DelayedStream.prototype, 'readable', {
+ configurable: true,
+ enumerable: true,
+ get: function() {
+ return this.source.readable;
+ }
+});
+
+DelayedStream.prototype.setEncoding = function() {
+ return this.source.setEncoding.apply(this.source, arguments);
+};
+
+DelayedStream.prototype.resume = function() {
+ if (!this._released) {
+ this.release();
+ }
+
+ this.source.resume();
+};
+
+DelayedStream.prototype.pause = function() {
+ this.source.pause();
+};
+
+DelayedStream.prototype.release = function() {
+ this._released = true;
+
+ this._bufferedEvents.forEach(function(args) {
+ this.emit.apply(this, args);
+ }.bind(this));
+ this._bufferedEvents = [];
+};
+
+DelayedStream.prototype.pipe = function() {
+ var r = Stream.prototype.pipe.apply(this, arguments);
+ this.resume();
+ return r;
+};
+
+DelayedStream.prototype._handleEmit = function(args) {
+ if (this._released) {
+ this.emit.apply(this, args);
+ return;
+ }
+
+ if (args[0] === 'data') {
+ this.dataSize += args[1].length;
+ this._checkIfMaxDataSizeExceeded();
+ }
+
+ this._bufferedEvents.push(args);
+};
+
+DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() {
+ if (this._maxDataSizeExceeded) {
+ return;
+ }
+
+ if (this.dataSize <= this.maxDataSize) {
+ return;
+ }
+
+ this._maxDataSizeExceeded = true;
+ var message =
+ 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.'
+ this.emit('error', new Error(message));
+};
+
+
+/***/ }),
+
+/***/ 6669:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var callBind = __nccwpck_require__(8705);
+var gOPD = __nccwpck_require__(3170);
+
+var hasProtoAccessor;
+try {
+ // eslint-disable-next-line no-extra-parens, no-proto
+ hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype;
+} catch (e) {
+ if (!e || typeof e !== 'object' || !('code' in e) || e.code !== 'ERR_PROTO_ACCESS') {
+ throw e;
+ }
+}
+
+// eslint-disable-next-line no-extra-parens
+var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__'));
+
+var $Object = Object;
+var $getPrototypeOf = $Object.getPrototypeOf;
+
+/** @type {import('./get')} */
+module.exports = desc && typeof desc.get === 'function'
+ ? callBind([desc.get])
+ : typeof $getPrototypeOf === 'function'
+ ? /** @type {import('./get')} */ function getDunder(value) {
+ // eslint-disable-next-line eqeqeq
+ return $getPrototypeOf(value == null ? value : $Object(value));
+ }
+ : false;
+
+
+/***/ }),
+
+/***/ 9094:
+/***/ ((module) => {
+
+
+
+/** @type {import('.')} */
+var $defineProperty = Object.defineProperty || false;
+if ($defineProperty) {
+ try {
+ $defineProperty({}, 'a', { value: 1 });
+ } catch (e) {
+ // IE 8 has a broken defineProperty
+ $defineProperty = false;
+ }
+}
+
+module.exports = $defineProperty;
+
+
+/***/ }),
+
+/***/ 3056:
+/***/ ((module) => {
+
+
+
+/** @type {import('./eval')} */
+module.exports = EvalError;
+
+
+/***/ }),
+
+/***/ 1620:
+/***/ ((module) => {
+
+
+
+/** @type {import('.')} */
+module.exports = Error;
+
+
+/***/ }),
+
+/***/ 4585:
+/***/ ((module) => {
+
+
+
+/** @type {import('./range')} */
+module.exports = RangeError;
+
+
+/***/ }),
+
+/***/ 6905:
+/***/ ((module) => {
+
+
+
+/** @type {import('./ref')} */
+module.exports = ReferenceError;
+
+
+/***/ }),
+
+/***/ 105:
+/***/ ((module) => {
+
+
+
+/** @type {import('./syntax')} */
+module.exports = SyntaxError;
+
+
+/***/ }),
+
+/***/ 3314:
+/***/ ((module) => {
+
+
+
+/** @type {import('./type')} */
+module.exports = TypeError;
+
+
+/***/ }),
+
+/***/ 2578:
+/***/ ((module) => {
+
+
+
+/** @type {import('./uri')} */
+module.exports = URIError;
+
+
+/***/ }),
+
+/***/ 5399:
+/***/ ((module) => {
+
+
+
+/** @type {import('.')} */
+module.exports = Object;
+
+
+/***/ }),
+
+/***/ 8700:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var GetIntrinsic = __nccwpck_require__(470);
+
+var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
+
+var hasToStringTag = __nccwpck_require__(5479)();
+var hasOwn = __nccwpck_require__(4076);
+var $TypeError = __nccwpck_require__(3314);
+
+var toStringTag = hasToStringTag ? Symbol.toStringTag : null;
+
+/** @type {import('.')} */
+module.exports = function setToStringTag(object, value) {
+ var overrideIfSet = arguments.length > 2 && !!arguments[2] && arguments[2].force;
+ var nonConfigurable = arguments.length > 2 && !!arguments[2] && arguments[2].nonConfigurable;
+ if (
+ (typeof overrideIfSet !== 'undefined' && typeof overrideIfSet !== 'boolean')
+ || (typeof nonConfigurable !== 'undefined' && typeof nonConfigurable !== 'boolean')
+ ) {
+ throw new $TypeError('if provided, the `overrideIfSet` and `nonConfigurable` options must be booleans');
+ }
+ if (toStringTag && (overrideIfSet || !hasOwn(object, toStringTag))) {
+ if ($defineProperty) {
+ $defineProperty(object, toStringTag, {
+ configurable: !nonConfigurable,
+ enumerable: false,
+ value: value,
+ writable: false
+ });
+ } else {
+ object[toStringTag] = value; // eslint-disable-line no-param-reassign
+ }
+ }
+};
+
+
+/***/ }),
+
+/***/ 4778:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var debug;
+
+module.exports = function () {
+ if (!debug) {
+ try {
+ /* eslint global-require: off */
+ debug = __nccwpck_require__(2830)("follow-redirects");
+ }
+ catch (error) { /* */ }
+ if (typeof debug !== "function") {
+ debug = function () { /* */ };
+ }
+ }
+ debug.apply(null, arguments);
+};
+
+
+/***/ }),
+
+/***/ 1573:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var url = __nccwpck_require__(7016);
+var URL = url.URL;
+var http = __nccwpck_require__(8611);
+var https = __nccwpck_require__(5692);
+var Writable = (__nccwpck_require__(2203).Writable);
+var assert = __nccwpck_require__(2613);
+var debug = __nccwpck_require__(4778);
+
+// Preventive platform detection
+// istanbul ignore next
+(function detectUnsupportedEnvironment() {
+ var looksLikeNode = typeof process !== "undefined";
+ var looksLikeBrowser = typeof window !== "undefined" && typeof document !== "undefined";
+ var looksLikeV8 = isFunction(Error.captureStackTrace);
+ if (!looksLikeNode && (looksLikeBrowser || !looksLikeV8)) {
+ console.warn("The follow-redirects package should be excluded from browser builds.");
+ }
+}());
+
+// Whether to use the native URL object or the legacy url module
+var useNativeURL = false;
+try {
+ assert(new URL(""));
+}
+catch (error) {
+ useNativeURL = error.code === "ERR_INVALID_URL";
+}
+
+// HTTP headers to drop across HTTP/HTTPS and domain boundaries
+var sensitiveHeaders = [
+ "Authorization",
+ "Proxy-Authorization",
+ "Cookie",
+];
+
+// URL fields to preserve in copy operations
+var preservedUrlFields = [
+ "auth",
+ "host",
+ "hostname",
+ "href",
+ "path",
+ "pathname",
+ "port",
+ "protocol",
+ "query",
+ "search",
+ "hash",
+];
+
+// Create handlers that pass events from native requests
+var events = ["abort", "aborted", "connect", "error", "socket", "timeout"];
+var eventHandlers = Object.create(null);
+events.forEach(function (event) {
+ eventHandlers[event] = function (arg1, arg2, arg3) {
+ this._redirectable.emit(event, arg1, arg2, arg3);
+ };
+});
+
+// Error types with codes
+var InvalidUrlError = createErrorType(
+ "ERR_INVALID_URL",
+ "Invalid URL",
+ TypeError
+);
+var RedirectionError = createErrorType(
+ "ERR_FR_REDIRECTION_FAILURE",
+ "Redirected request failed"
+);
+var TooManyRedirectsError = createErrorType(
+ "ERR_FR_TOO_MANY_REDIRECTS",
+ "Maximum number of redirects exceeded",
+ RedirectionError
+);
+var MaxBodyLengthExceededError = createErrorType(
+ "ERR_FR_MAX_BODY_LENGTH_EXCEEDED",
+ "Request body larger than maxBodyLength limit"
+);
+var WriteAfterEndError = createErrorType(
+ "ERR_STREAM_WRITE_AFTER_END",
+ "write after end"
+);
+
+// istanbul ignore next
+var destroy = Writable.prototype.destroy || noop;
+
+// An HTTP(S) request that can be redirected
+function RedirectableRequest(options, responseCallback) {
+ // Initialize the request
+ Writable.call(this);
+ this._sanitizeOptions(options);
+ this._options = options;
+ this._ended = false;
+ this._ending = false;
+ this._redirectCount = 0;
+ this._redirects = [];
+ this._requestBodyLength = 0;
+ this._requestBodyBuffers = [];
+
+ // Attach a callback if passed
+ if (responseCallback) {
+ this.on("response", responseCallback);
+ }
+
+ // React to responses of native requests
+ var self = this;
+ this._onNativeResponse = function (response) {
+ try {
+ self._processResponse(response);
+ }
+ catch (cause) {
+ self.emit("error", cause instanceof RedirectionError ?
+ cause : new RedirectionError({ cause: cause }));
+ }
+ };
+
+ // Create filter for sensitive HTTP headers
+ this._headerFilter = new RegExp("^(?:" +
+ sensitiveHeaders.concat(options.sensitiveHeaders).map(escapeRegex).join("|") +
+ ")$", "i");
+
+ // Perform the first request
+ this._performRequest();
+}
+RedirectableRequest.prototype = Object.create(Writable.prototype);
+
+RedirectableRequest.prototype.abort = function () {
+ destroyRequest(this._currentRequest);
+ this._currentRequest.abort();
+ this.emit("abort");
+};
+
+RedirectableRequest.prototype.destroy = function (error) {
+ destroyRequest(this._currentRequest, error);
+ destroy.call(this, error);
+ return this;
+};
+
+// Writes buffered data to the current native request
+RedirectableRequest.prototype.write = function (data, encoding, callback) {
+ // Writing is not allowed if end has been called
+ if (this._ending) {
+ throw new WriteAfterEndError();
+ }
+
+ // Validate input and shift parameters if necessary
+ if (!isString(data) && !isBuffer(data)) {
+ throw new TypeError("data should be a string, Buffer or Uint8Array");
+ }
+ if (isFunction(encoding)) {
+ callback = encoding;
+ encoding = null;
+ }
+
+ // Ignore empty buffers, since writing them doesn't invoke the callback
+ // https://github.com/nodejs/node/issues/22066
+ if (data.length === 0) {
+ if (callback) {
+ callback();
+ }
+ return;
+ }
+ // Only write when we don't exceed the maximum body length
+ if (this._requestBodyLength + data.length <= this._options.maxBodyLength) {
+ this._requestBodyLength += data.length;
+ this._requestBodyBuffers.push({ data: data, encoding: encoding });
+ this._currentRequest.write(data, encoding, callback);
+ }
+ // Error when we exceed the maximum body length
+ else {
+ this.emit("error", new MaxBodyLengthExceededError());
+ this.abort();
+ }
+};
+
+// Ends the current native request
+RedirectableRequest.prototype.end = function (data, encoding, callback) {
+ // Shift parameters if necessary
+ if (isFunction(data)) {
+ callback = data;
+ data = encoding = null;
+ }
+ else if (isFunction(encoding)) {
+ callback = encoding;
+ encoding = null;
+ }
+
+ // Write data if needed and end
+ if (!data) {
+ this._ended = this._ending = true;
+ this._currentRequest.end(null, null, callback);
+ }
+ else {
+ var self = this;
+ var currentRequest = this._currentRequest;
+ this.write(data, encoding, function () {
+ self._ended = true;
+ currentRequest.end(null, null, callback);
+ });
+ this._ending = true;
+ }
+};
+
+// Sets a header value on the current native request
+RedirectableRequest.prototype.setHeader = function (name, value) {
+ this._options.headers[name] = value;
+ this._currentRequest.setHeader(name, value);
+};
+
+// Clears a header value on the current native request
+RedirectableRequest.prototype.removeHeader = function (name) {
+ delete this._options.headers[name];
+ this._currentRequest.removeHeader(name);
+};
+
+// Global timeout for all underlying requests
+RedirectableRequest.prototype.setTimeout = function (msecs, callback) {
+ var self = this;
+
+ // Destroys the socket on timeout
+ function destroyOnTimeout(socket) {
+ socket.setTimeout(msecs);
+ socket.removeListener("timeout", socket.destroy);
+ socket.addListener("timeout", socket.destroy);
+ }
+
+ // Sets up a timer to trigger a timeout event
+ function startTimer(socket) {
+ if (self._timeout) {
+ clearTimeout(self._timeout);
+ }
+ self._timeout = setTimeout(function () {
+ self.emit("timeout");
+ clearTimer();
+ }, msecs);
+ destroyOnTimeout(socket);
+ }
+
+ // Stops a timeout from triggering
+ function clearTimer() {
+ // Clear the timeout
+ if (self._timeout) {
+ clearTimeout(self._timeout);
+ self._timeout = null;
+ }
+
+ // Clean up all attached listeners
+ self.removeListener("abort", clearTimer);
+ self.removeListener("error", clearTimer);
+ self.removeListener("response", clearTimer);
+ self.removeListener("close", clearTimer);
+ if (callback) {
+ self.removeListener("timeout", callback);
+ }
+ if (!self.socket) {
+ self._currentRequest.removeListener("socket", startTimer);
+ }
+ }
+
+ // Attach callback if passed
+ if (callback) {
+ this.on("timeout", callback);
+ }
+
+ // Start the timer if or when the socket is opened
+ if (this.socket) {
+ startTimer(this.socket);
+ }
+ else {
+ this._currentRequest.once("socket", startTimer);
+ }
+
+ // Clean up on events
+ this.on("socket", destroyOnTimeout);
+ this.on("abort", clearTimer);
+ this.on("error", clearTimer);
+ this.on("response", clearTimer);
+ this.on("close", clearTimer);
+
+ return this;
+};
+
+// Proxy all other public ClientRequest methods
+[
+ "flushHeaders", "getHeader",
+ "setNoDelay", "setSocketKeepAlive",
+].forEach(function (method) {
+ RedirectableRequest.prototype[method] = function (a, b) {
+ return this._currentRequest[method](a, b);
+ };
+});
+
+// Proxy all public ClientRequest properties
+["aborted", "connection", "socket"].forEach(function (property) {
+ Object.defineProperty(RedirectableRequest.prototype, property, {
+ get: function () { return this._currentRequest[property]; },
+ });
+});
+
+RedirectableRequest.prototype._sanitizeOptions = function (options) {
+ // Ensure headers are always present
+ if (!options.headers) {
+ options.headers = {};
+ }
+ if (!isArray(options.sensitiveHeaders)) {
+ options.sensitiveHeaders = [];
+ }
+
+ // Since http.request treats host as an alias of hostname,
+ // but the url module interprets host as hostname plus port,
+ // eliminate the host property to avoid confusion.
+ if (options.host) {
+ // Use hostname if set, because it has precedence
+ if (!options.hostname) {
+ options.hostname = options.host;
+ }
+ delete options.host;
+ }
+
+ // Complete the URL object when necessary
+ if (!options.pathname && options.path) {
+ var searchPos = options.path.indexOf("?");
+ if (searchPos < 0) {
+ options.pathname = options.path;
+ }
+ else {
+ options.pathname = options.path.substring(0, searchPos);
+ options.search = options.path.substring(searchPos);
+ }
+ }
+};
+
+
+// Executes the next native request (initial or redirect)
+RedirectableRequest.prototype._performRequest = function () {
+ // Load the native protocol
+ var protocol = this._options.protocol;
+ var nativeProtocol = this._options.nativeProtocols[protocol];
+ if (!nativeProtocol) {
+ throw new TypeError("Unsupported protocol " + protocol);
+ }
+
+ // If specified, use the agent corresponding to the protocol
+ // (HTTP and HTTPS use different types of agents)
+ if (this._options.agents) {
+ var scheme = protocol.slice(0, -1);
+ this._options.agent = this._options.agents[scheme];
+ }
+
+ // Create the native request and set up its event handlers
+ var request = this._currentRequest =
+ nativeProtocol.request(this._options, this._onNativeResponse);
+ request._redirectable = this;
+ for (var event of events) {
+ request.on(event, eventHandlers[event]);
+ }
+
+ // RFC7230§5.3.1: When making a request directly to an origin server, […]
+ // a client MUST send only the absolute path […] as the request-target.
+ this._currentUrl = /^\//.test(this._options.path) ?
+ url.format(this._options) :
+ // When making a request to a proxy, […]
+ // a client MUST send the target URI in absolute-form […].
+ this._options.path;
+
+ // End a redirected request
+ // (The first request must be ended explicitly with RedirectableRequest#end)
+ if (this._isRedirect) {
+ // Write the request entity and end
+ var i = 0;
+ var self = this;
+ var buffers = this._requestBodyBuffers;
+ (function writeNext(error) {
+ // Only write if this request has not been redirected yet
+ // istanbul ignore else
+ if (request === self._currentRequest) {
+ // Report any write errors
+ // istanbul ignore if
+ if (error) {
+ self.emit("error", error);
+ }
+ // Write the next buffer if there are still left
+ else if (i < buffers.length) {
+ var buffer = buffers[i++];
+ // istanbul ignore else
+ if (!request.finished) {
+ request.write(buffer.data, buffer.encoding, writeNext);
+ }
+ }
+ // End the request if `end` has been called on us
+ else if (self._ended) {
+ request.end();
+ }
+ }
+ }());
+ }
+};
+
+// Processes a response from the current native request
+RedirectableRequest.prototype._processResponse = function (response) {
+ // Store the redirected response
+ var statusCode = response.statusCode;
+ if (this._options.trackRedirects) {
+ this._redirects.push({
+ url: this._currentUrl,
+ headers: response.headers,
+ statusCode: statusCode,
+ });
+ }
+
+ // RFC7231§6.4: The 3xx (Redirection) class of status code indicates
+ // that further action needs to be taken by the user agent in order to
+ // fulfill the request. If a Location header field is provided,
+ // the user agent MAY automatically redirect its request to the URI
+ // referenced by the Location field value,
+ // even if the specific status code is not understood.
+
+ // If the response is not a redirect; return it as-is
+ var location = response.headers.location;
+ if (!location || this._options.followRedirects === false ||
+ statusCode < 300 || statusCode >= 400) {
+ response.responseUrl = this._currentUrl;
+ response.redirects = this._redirects;
+ this.emit("response", response);
+
+ // Clean up
+ this._requestBodyBuffers = [];
+ return;
+ }
+
+ // The response is a redirect, so abort the current request
+ destroyRequest(this._currentRequest);
+ // Discard the remainder of the response to avoid waiting for data
+ response.destroy();
+
+ // RFC7231§6.4: A client SHOULD detect and intervene
+ // in cyclical redirections (i.e., "infinite" redirection loops).
+ if (++this._redirectCount > this._options.maxRedirects) {
+ throw new TooManyRedirectsError();
+ }
+
+ // Store the request headers if applicable
+ var requestHeaders;
+ var beforeRedirect = this._options.beforeRedirect;
+ if (beforeRedirect) {
+ requestHeaders = Object.assign({
+ // The Host header was set by nativeProtocol.request
+ Host: response.req.getHeader("host"),
+ }, this._options.headers);
+ }
+
+ // RFC7231§6.4: Automatic redirection needs to done with
+ // care for methods not known to be safe, […]
+ // RFC7231§6.4.2–3: For historical reasons, a user agent MAY change
+ // the request method from POST to GET for the subsequent request.
+ var method = this._options.method;
+ if ((statusCode === 301 || statusCode === 302) && this._options.method === "POST" ||
+ // RFC7231§6.4.4: The 303 (See Other) status code indicates that
+ // the server is redirecting the user agent to a different resource […]
+ // A user agent can perform a retrieval request targeting that URI
+ // (a GET or HEAD request if using HTTP) […]
+ (statusCode === 303) && !/^(?:GET|HEAD)$/.test(this._options.method)) {
+ this._options.method = "GET";
+ // Drop a possible entity and headers related to it
+ this._requestBodyBuffers = [];
+ removeMatchingHeaders(/^content-/i, this._options.headers);
+ }
+
+ // Drop the Host header, as the redirect might lead to a different host
+ var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers);
+
+ // If the redirect is relative, carry over the host of the last request
+ var currentUrlParts = parseUrl(this._currentUrl);
+ var currentHost = currentHostHeader || currentUrlParts.host;
+ var currentUrl = /^\w+:/.test(location) ? this._currentUrl :
+ url.format(Object.assign(currentUrlParts, { host: currentHost }));
+
+ // Create the redirected request
+ var redirectUrl = resolveUrl(location, currentUrl);
+ debug("redirecting to", redirectUrl.href);
+ this._isRedirect = true;
+ spreadUrlObject(redirectUrl, this._options);
+
+ // Drop confidential headers when redirecting to a less secure protocol
+ // or to a different domain that is not a superdomain
+ if (redirectUrl.protocol !== currentUrlParts.protocol &&
+ redirectUrl.protocol !== "https:" ||
+ redirectUrl.host !== currentHost &&
+ !isSubdomain(redirectUrl.host, currentHost)) {
+ removeMatchingHeaders(this._headerFilter, this._options.headers);
+ }
+
+ // Evaluate the beforeRedirect callback
+ if (isFunction(beforeRedirect)) {
+ var responseDetails = {
+ headers: response.headers,
+ statusCode: statusCode,
+ };
+ var requestDetails = {
+ url: currentUrl,
+ method: method,
+ headers: requestHeaders,
+ };
+ beforeRedirect(this._options, responseDetails, requestDetails);
+ this._sanitizeOptions(this._options);
+ }
+
+ // Perform the redirected request
+ this._performRequest();
+};
+
+// Wraps the key/value object of protocols with redirect functionality
+function wrap(protocols) {
+ // Default settings
+ var exports = {
+ maxRedirects: 21,
+ maxBodyLength: 10 * 1024 * 1024,
+ };
+
+ // Wrap each protocol
+ var nativeProtocols = {};
+ Object.keys(protocols).forEach(function (scheme) {
+ var protocol = scheme + ":";
+ var nativeProtocol = nativeProtocols[protocol] = protocols[scheme];
+ var wrappedProtocol = exports[scheme] = Object.create(nativeProtocol);
+
+ // Executes a request, following redirects
+ function request(input, options, callback) {
+ // Parse parameters, ensuring that input is an object
+ if (isURL(input)) {
+ input = spreadUrlObject(input);
+ }
+ else if (isString(input)) {
+ input = spreadUrlObject(parseUrl(input));
+ }
+ else {
+ callback = options;
+ options = validateUrl(input);
+ input = { protocol: protocol };
+ }
+ if (isFunction(options)) {
+ callback = options;
+ options = null;
+ }
+
+ // Set defaults
+ options = Object.assign({
+ maxRedirects: exports.maxRedirects,
+ maxBodyLength: exports.maxBodyLength,
+ }, input, options);
+ options.nativeProtocols = nativeProtocols;
+ if (!isString(options.host) && !isString(options.hostname)) {
+ options.hostname = "::1";
+ }
+
+ assert.equal(options.protocol, protocol, "protocol mismatch");
+ debug("options", options);
+ return new RedirectableRequest(options, callback);
+ }
+
+ // Executes a GET request, following redirects
+ function get(input, options, callback) {
+ var wrappedRequest = wrappedProtocol.request(input, options, callback);
+ wrappedRequest.end();
+ return wrappedRequest;
+ }
+
+ // Expose the properties on the wrapped protocol
+ Object.defineProperties(wrappedProtocol, {
+ request: { value: request, configurable: true, enumerable: true, writable: true },
+ get: { value: get, configurable: true, enumerable: true, writable: true },
+ });
+ });
+ return exports;
+}
+
+function noop() { /* empty */ }
+
+function parseUrl(input) {
+ var parsed;
+ // istanbul ignore else
+ if (useNativeURL) {
+ parsed = new URL(input);
+ }
+ else {
+ // Ensure the URL is valid and absolute
+ parsed = validateUrl(url.parse(input));
+ if (!isString(parsed.protocol)) {
+ throw new InvalidUrlError({ input });
+ }
+ }
+ return parsed;
+}
+
+function resolveUrl(relative, base) {
+ // istanbul ignore next
+ return useNativeURL ? new URL(relative, base) : parseUrl(url.resolve(base, relative));
+}
+
+function validateUrl(input) {
+ if (/^\[/.test(input.hostname) && !/^\[[:0-9a-f]+\]$/i.test(input.hostname)) {
+ throw new InvalidUrlError({ input: input.href || input });
+ }
+ if (/^\[/.test(input.host) && !/^\[[:0-9a-f]+\](:\d+)?$/i.test(input.host)) {
+ throw new InvalidUrlError({ input: input.href || input });
+ }
+ return input;
+}
+
+function spreadUrlObject(urlObject, target) {
+ var spread = target || {};
+ for (var key of preservedUrlFields) {
+ spread[key] = urlObject[key];
+ }
+
+ // Fix IPv6 hostname
+ if (spread.hostname.startsWith("[")) {
+ spread.hostname = spread.hostname.slice(1, -1);
+ }
+ // Ensure port is a number
+ if (spread.port !== "") {
+ spread.port = Number(spread.port);
+ }
+ // Concatenate path
+ spread.path = spread.search ? spread.pathname + spread.search : spread.pathname;
+
+ return spread;
+}
+
+function removeMatchingHeaders(regex, headers) {
+ var lastValue;
+ for (var header in headers) {
+ if (regex.test(header)) {
+ lastValue = headers[header];
+ delete headers[header];
+ }
+ }
+ return (lastValue === null || typeof lastValue === "undefined") ?
+ undefined : String(lastValue).trim();
+}
+
+function createErrorType(code, message, baseClass) {
+ // Create constructor
+ function CustomError(properties) {
+ // istanbul ignore else
+ if (isFunction(Error.captureStackTrace)) {
+ Error.captureStackTrace(this, this.constructor);
+ }
+ Object.assign(this, properties || {});
+ this.code = code;
+ this.message = this.cause ? message + ": " + this.cause.message : message;
+ }
+
+ // Attach constructor and set default properties
+ CustomError.prototype = new (baseClass || Error)();
+ Object.defineProperties(CustomError.prototype, {
+ constructor: {
+ value: CustomError,
+ enumerable: false,
+ },
+ name: {
+ value: "Error [" + code + "]",
+ enumerable: false,
+ },
+ });
+ return CustomError;
+}
+
+function destroyRequest(request, error) {
+ for (var event of events) {
+ request.removeListener(event, eventHandlers[event]);
+ }
+ request.on("error", noop);
+ request.destroy(error);
+}
+
+function isSubdomain(subdomain, domain) {
+ assert(isString(subdomain) && isString(domain));
+ var dot = subdomain.length - domain.length - 1;
+ return dot > 0 && subdomain[dot] === "." && subdomain.endsWith(domain);
+}
+
+function isArray(value) {
+ return value instanceof Array;
+}
+
+function isString(value) {
+ return typeof value === "string" || value instanceof String;
+}
+
+function isFunction(value) {
+ return typeof value === "function";
+}
+
+function isBuffer(value) {
+ return typeof value === "object" && ("length" in value);
+}
+
+function isURL(value) {
+ return URL && value instanceof URL;
+}
+
+function escapeRegex(regex) {
+ return regex.replace(/[\]\\/()*+?.$]/g, "\\$&");
+}
+
+// Exports
+module.exports = wrap({ http: http, https: https });
+module.exports.wrap = wrap;
+
+
+/***/ }),
+
+/***/ 9808:
+/***/ ((module) => {
+
+
+
+/* eslint no-invalid-this: 1 */
+
+var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
+var toStr = Object.prototype.toString;
+var max = Math.max;
+var funcType = '[object Function]';
+
+var concatty = function concatty(a, b) {
+ var arr = [];
+
+ for (var i = 0; i < a.length; i += 1) {
+ arr[i] = a[i];
+ }
+ for (var j = 0; j < b.length; j += 1) {
+ arr[j + a.length] = b[j];
+ }
+
+ return arr;
+};
+
+var slicy = function slicy(arrLike, offset) {
+ var arr = [];
+ for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {
+ arr[j] = arrLike[i];
+ }
+ return arr;
+};
+
+var joiny = function (arr, joiner) {
+ var str = '';
+ for (var i = 0; i < arr.length; i += 1) {
+ str += arr[i];
+ if (i + 1 < arr.length) {
+ str += joiner;
+ }
+ }
+ return str;
+};
+
+module.exports = function bind(that) {
+ var target = this;
+ if (typeof target !== 'function' || toStr.apply(target) !== funcType) {
+ throw new TypeError(ERROR_MESSAGE + target);
+ }
+ var args = slicy(arguments, 1);
+
+ var bound;
+ var binder = function () {
+ if (this instanceof bound) {
+ var result = target.apply(
+ this,
+ concatty(args, arguments)
+ );
+ if (Object(result) === result) {
+ return result;
+ }
+ return this;
+ }
+ return target.apply(
+ that,
+ concatty(args, arguments)
+ );
+
+ };
+
+ var boundLength = max(0, target.length - args.length);
+ var boundArgs = [];
+ for (var i = 0; i < boundLength; i++) {
+ boundArgs[i] = '$' + i;
+ }
+
+ bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder);
+
+ if (target.prototype) {
+ var Empty = function Empty() {};
+ Empty.prototype = target.prototype;
+ bound.prototype = new Empty();
+ Empty.prototype = null;
+ }
+
+ return bound;
+};
+
+
+/***/ }),
+
+/***/ 7564:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var implementation = __nccwpck_require__(9808);
+
+module.exports = Function.prototype.bind || implementation;
+
+
+/***/ }),
+
+/***/ 470:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var undefined;
+
+var $Object = __nccwpck_require__(5399);
+
+var $Error = __nccwpck_require__(1620);
+var $EvalError = __nccwpck_require__(3056);
+var $RangeError = __nccwpck_require__(4585);
+var $ReferenceError = __nccwpck_require__(6905);
+var $SyntaxError = __nccwpck_require__(105);
+var $TypeError = __nccwpck_require__(3314);
+var $URIError = __nccwpck_require__(2578);
+
+var abs = __nccwpck_require__(5641);
+var floor = __nccwpck_require__(6171);
+var max = __nccwpck_require__(7147);
+var min = __nccwpck_require__(1017);
+var pow = __nccwpck_require__(6947);
+var round = __nccwpck_require__(2621);
+var sign = __nccwpck_require__(156);
+
+var $Function = Function;
+
+// eslint-disable-next-line consistent-return
+var getEvalledConstructor = function (expressionSyntax) {
+ try {
+ return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
+ } catch (e) {}
+};
+
+var $gOPD = __nccwpck_require__(3170);
+var $defineProperty = __nccwpck_require__(9094);
+
+var throwTypeError = function () {
+ throw new $TypeError();
+};
+var ThrowTypeError = $gOPD
+ ? (function () {
+ try {
+ // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
+ arguments.callee; // IE 8 does not throw here
+ return throwTypeError;
+ } catch (calleeThrows) {
+ try {
+ // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
+ return $gOPD(arguments, 'callee').get;
+ } catch (gOPDthrows) {
+ return throwTypeError;
+ }
+ }
+ }())
+ : throwTypeError;
+
+var hasSymbols = __nccwpck_require__(3336)();
+
+var getProto = __nccwpck_require__(1967);
+var $ObjectGPO = __nccwpck_require__(1311);
+var $ReflectGPO = __nccwpck_require__(8681);
+
+var $apply = __nccwpck_require__(3945);
+var $call = __nccwpck_require__(8093);
+
+var needsEval = {};
+
+var TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array);
+
+var INTRINSICS = {
+ __proto__: null,
+ '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,
+ '%Array%': Array,
+ '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,
+ '%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined,
+ '%AsyncFromSyncIteratorPrototype%': undefined,
+ '%AsyncFunction%': needsEval,
+ '%AsyncGenerator%': needsEval,
+ '%AsyncGeneratorFunction%': needsEval,
+ '%AsyncIteratorPrototype%': needsEval,
+ '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
+ '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
+ '%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
+ '%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
+ '%Boolean%': Boolean,
+ '%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
+ '%Date%': Date,
+ '%decodeURI%': decodeURI,
+ '%decodeURIComponent%': decodeURIComponent,
+ '%encodeURI%': encodeURI,
+ '%encodeURIComponent%': encodeURIComponent,
+ '%Error%': $Error,
+ '%eval%': eval, // eslint-disable-line no-eval
+ '%EvalError%': $EvalError,
+ '%Float16Array%': typeof Float16Array === 'undefined' ? undefined : Float16Array,
+ '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,
+ '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,
+ '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,
+ '%Function%': $Function,
+ '%GeneratorFunction%': needsEval,
+ '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,
+ '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,
+ '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,
+ '%isFinite%': isFinite,
+ '%isNaN%': isNaN,
+ '%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined,
+ '%JSON%': typeof JSON === 'object' ? JSON : undefined,
+ '%Map%': typeof Map === 'undefined' ? undefined : Map,
+ '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()),
+ '%Math%': Math,
+ '%Number%': Number,
+ '%Object%': $Object,
+ '%Object.getOwnPropertyDescriptor%': $gOPD,
+ '%parseFloat%': parseFloat,
+ '%parseInt%': parseInt,
+ '%Promise%': typeof Promise === 'undefined' ? undefined : Promise,
+ '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,
+ '%RangeError%': $RangeError,
+ '%ReferenceError%': $ReferenceError,
+ '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,
+ '%RegExp%': RegExp,
+ '%Set%': typeof Set === 'undefined' ? undefined : Set,
+ '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()),
+ '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,
+ '%String%': String,
+ '%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined,
+ '%Symbol%': hasSymbols ? Symbol : undefined,
+ '%SyntaxError%': $SyntaxError,
+ '%ThrowTypeError%': ThrowTypeError,
+ '%TypedArray%': TypedArray,
+ '%TypeError%': $TypeError,
+ '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,
+ '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,
+ '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,
+ '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,
+ '%URIError%': $URIError,
+ '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,
+ '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,
+ '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,
+
+ '%Function.prototype.call%': $call,
+ '%Function.prototype.apply%': $apply,
+ '%Object.defineProperty%': $defineProperty,
+ '%Object.getPrototypeOf%': $ObjectGPO,
+ '%Math.abs%': abs,
+ '%Math.floor%': floor,
+ '%Math.max%': max,
+ '%Math.min%': min,
+ '%Math.pow%': pow,
+ '%Math.round%': round,
+ '%Math.sign%': sign,
+ '%Reflect.getPrototypeOf%': $ReflectGPO
+};
+
+if (getProto) {
+ try {
+ null.error; // eslint-disable-line no-unused-expressions
+ } catch (e) {
+ // https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
+ var errorProto = getProto(getProto(e));
+ INTRINSICS['%Error.prototype%'] = errorProto;
+ }
+}
+
+var doEval = function doEval(name) {
+ var value;
+ if (name === '%AsyncFunction%') {
+ value = getEvalledConstructor('async function () {}');
+ } else if (name === '%GeneratorFunction%') {
+ value = getEvalledConstructor('function* () {}');
+ } else if (name === '%AsyncGeneratorFunction%') {
+ value = getEvalledConstructor('async function* () {}');
+ } else if (name === '%AsyncGenerator%') {
+ var fn = doEval('%AsyncGeneratorFunction%');
+ if (fn) {
+ value = fn.prototype;
+ }
+ } else if (name === '%AsyncIteratorPrototype%') {
+ var gen = doEval('%AsyncGenerator%');
+ if (gen && getProto) {
+ value = getProto(gen.prototype);
+ }
+ }
+
+ INTRINSICS[name] = value;
+
+ return value;
+};
+
+var LEGACY_ALIASES = {
+ __proto__: null,
+ '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],
+ '%ArrayPrototype%': ['Array', 'prototype'],
+ '%ArrayProto_entries%': ['Array', 'prototype', 'entries'],
+ '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],
+ '%ArrayProto_keys%': ['Array', 'prototype', 'keys'],
+ '%ArrayProto_values%': ['Array', 'prototype', 'values'],
+ '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],
+ '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],
+ '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],
+ '%BooleanPrototype%': ['Boolean', 'prototype'],
+ '%DataViewPrototype%': ['DataView', 'prototype'],
+ '%DatePrototype%': ['Date', 'prototype'],
+ '%ErrorPrototype%': ['Error', 'prototype'],
+ '%EvalErrorPrototype%': ['EvalError', 'prototype'],
+ '%Float32ArrayPrototype%': ['Float32Array', 'prototype'],
+ '%Float64ArrayPrototype%': ['Float64Array', 'prototype'],
+ '%FunctionPrototype%': ['Function', 'prototype'],
+ '%Generator%': ['GeneratorFunction', 'prototype'],
+ '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],
+ '%Int8ArrayPrototype%': ['Int8Array', 'prototype'],
+ '%Int16ArrayPrototype%': ['Int16Array', 'prototype'],
+ '%Int32ArrayPrototype%': ['Int32Array', 'prototype'],
+ '%JSONParse%': ['JSON', 'parse'],
+ '%JSONStringify%': ['JSON', 'stringify'],
+ '%MapPrototype%': ['Map', 'prototype'],
+ '%NumberPrototype%': ['Number', 'prototype'],
+ '%ObjectPrototype%': ['Object', 'prototype'],
+ '%ObjProto_toString%': ['Object', 'prototype', 'toString'],
+ '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],
+ '%PromisePrototype%': ['Promise', 'prototype'],
+ '%PromiseProto_then%': ['Promise', 'prototype', 'then'],
+ '%Promise_all%': ['Promise', 'all'],
+ '%Promise_reject%': ['Promise', 'reject'],
+ '%Promise_resolve%': ['Promise', 'resolve'],
+ '%RangeErrorPrototype%': ['RangeError', 'prototype'],
+ '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],
+ '%RegExpPrototype%': ['RegExp', 'prototype'],
+ '%SetPrototype%': ['Set', 'prototype'],
+ '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],
+ '%StringPrototype%': ['String', 'prototype'],
+ '%SymbolPrototype%': ['Symbol', 'prototype'],
+ '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],
+ '%TypedArrayPrototype%': ['TypedArray', 'prototype'],
+ '%TypeErrorPrototype%': ['TypeError', 'prototype'],
+ '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],
+ '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],
+ '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],
+ '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],
+ '%URIErrorPrototype%': ['URIError', 'prototype'],
+ '%WeakMapPrototype%': ['WeakMap', 'prototype'],
+ '%WeakSetPrototype%': ['WeakSet', 'prototype']
+};
+
+var bind = __nccwpck_require__(7564);
+var hasOwn = __nccwpck_require__(4076);
+var $concat = bind.call($call, Array.prototype.concat);
+var $spliceApply = bind.call($apply, Array.prototype.splice);
+var $replace = bind.call($call, String.prototype.replace);
+var $strSlice = bind.call($call, String.prototype.slice);
+var $exec = bind.call($call, RegExp.prototype.exec);
+
+/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
+var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
+var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */
+var stringToPath = function stringToPath(string) {
+ var first = $strSlice(string, 0, 1);
+ var last = $strSlice(string, -1);
+ if (first === '%' && last !== '%') {
+ throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`');
+ } else if (last === '%' && first !== '%') {
+ throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`');
+ }
+ var result = [];
+ $replace(string, rePropName, function (match, number, quote, subString) {
+ result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;
+ });
+ return result;
+};
+/* end adaptation */
+
+var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
+ var intrinsicName = name;
+ var alias;
+ if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
+ alias = LEGACY_ALIASES[intrinsicName];
+ intrinsicName = '%' + alias[0] + '%';
+ }
+
+ if (hasOwn(INTRINSICS, intrinsicName)) {
+ var value = INTRINSICS[intrinsicName];
+ if (value === needsEval) {
+ value = doEval(intrinsicName);
+ }
+ if (typeof value === 'undefined' && !allowMissing) {
+ throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
+ }
+
+ return {
+ alias: alias,
+ name: intrinsicName,
+ value: value
+ };
+ }
+
+ throw new $SyntaxError('intrinsic ' + name + ' does not exist!');
+};
+
+module.exports = function GetIntrinsic(name, allowMissing) {
+ if (typeof name !== 'string' || name.length === 0) {
+ throw new $TypeError('intrinsic name must be a non-empty string');
+ }
+ if (arguments.length > 1 && typeof allowMissing !== 'boolean') {
+ throw new $TypeError('"allowMissing" argument must be a boolean');
+ }
+
+ if ($exec(/^%?[^%]*%?$/, name) === null) {
+ throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
+ }
+ var parts = stringToPath(name);
+ var intrinsicBaseName = parts.length > 0 ? parts[0] : '';
+
+ var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);
+ var intrinsicRealName = intrinsic.name;
+ var value = intrinsic.value;
+ var skipFurtherCaching = false;
+
+ var alias = intrinsic.alias;
+ if (alias) {
+ intrinsicBaseName = alias[0];
+ $spliceApply(parts, $concat([0, 1], alias));
+ }
+
+ for (var i = 1, isOwn = true; i < parts.length; i += 1) {
+ var part = parts[i];
+ var first = $strSlice(part, 0, 1);
+ var last = $strSlice(part, -1);
+ if (
+ (
+ (first === '"' || first === "'" || first === '`')
+ || (last === '"' || last === "'" || last === '`')
+ )
+ && first !== last
+ ) {
+ throw new $SyntaxError('property names with quotes must have matching quotes');
+ }
+ if (part === 'constructor' || !isOwn) {
+ skipFurtherCaching = true;
+ }
+
+ intrinsicBaseName += '.' + part;
+ intrinsicRealName = '%' + intrinsicBaseName + '%';
+
+ if (hasOwn(INTRINSICS, intrinsicRealName)) {
+ value = INTRINSICS[intrinsicRealName];
+ } else if (value != null) {
+ if (!(part in value)) {
+ if (!allowMissing) {
+ throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
+ }
+ return void undefined;
+ }
+ if ($gOPD && (i + 1) >= parts.length) {
+ var desc = $gOPD(value, part);
+ isOwn = !!desc;
+
+ // By convention, when a data property is converted to an accessor
+ // property to emulate a data property that does not suffer from
+ // the override mistake, that accessor's getter is marked with
+ // an `originalValue` property. Here, when we detect this, we
+ // uphold the illusion by pretending to see that original data
+ // property, i.e., returning the value rather than the getter
+ // itself.
+ if (isOwn && 'get' in desc && !('originalValue' in desc.get)) {
+ value = desc.get;
+ } else {
+ value = value[part];
+ }
+ } else {
+ isOwn = hasOwn(value, part);
+ value = value[part];
+ }
+
+ if (isOwn && !skipFurtherCaching) {
+ INTRINSICS[intrinsicRealName] = value;
+ }
+ }
+ }
+ return value;
+};
+
+
+/***/ }),
+
+/***/ 1311:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var $Object = __nccwpck_require__(5399);
+
+/** @type {import('./Object.getPrototypeOf')} */
+module.exports = $Object.getPrototypeOf || null;
+
+
+/***/ }),
+
+/***/ 8681:
+/***/ ((module) => {
+
+
+
+/** @type {import('./Reflect.getPrototypeOf')} */
+module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
+
+
+/***/ }),
+
+/***/ 1967:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var reflectGetProto = __nccwpck_require__(8681);
+var originalGetProto = __nccwpck_require__(1311);
+
+var getDunderProto = __nccwpck_require__(6669);
+
+/** @type {import('.')} */
+module.exports = reflectGetProto
+ ? function getProto(O) {
+ // @ts-expect-error TS can't narrow inside a closure, for some reason
+ return reflectGetProto(O);
+ }
+ : originalGetProto
+ ? function getProto(O) {
+ if (!O || (typeof O !== 'object' && typeof O !== 'function')) {
+ throw new TypeError('getProto: not an object');
+ }
+ // @ts-expect-error TS can't narrow inside a closure, for some reason
+ return originalGetProto(O);
+ }
+ : getDunderProto
+ ? function getProto(O) {
+ // @ts-expect-error TS can't narrow inside a closure, for some reason
+ return getDunderProto(O);
+ }
+ : null;
+
+
+/***/ }),
+
+/***/ 1174:
+/***/ ((module) => {
+
+
+
+/** @type {import('./gOPD')} */
+module.exports = Object.getOwnPropertyDescriptor;
+
+
+/***/ }),
+
+/***/ 3170:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+/** @type {import('.')} */
+var $gOPD = __nccwpck_require__(1174);
+
+if ($gOPD) {
+ try {
+ $gOPD([], 'length');
+ } catch (e) {
+ // IE 8 has a broken gOPD
+ $gOPD = null;
+ }
+}
+
+module.exports = $gOPD;
+
+
+/***/ }),
+
+/***/ 3336:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var origSymbol = typeof Symbol !== 'undefined' && Symbol;
+var hasSymbolSham = __nccwpck_require__(1114);
+
+/** @type {import('.')} */
+module.exports = function hasNativeSymbols() {
+ if (typeof origSymbol !== 'function') { return false; }
+ if (typeof Symbol !== 'function') { return false; }
+ if (typeof origSymbol('foo') !== 'symbol') { return false; }
+ if (typeof Symbol('bar') !== 'symbol') { return false; }
+
+ return hasSymbolSham();
+};
+
+
+/***/ }),
+
+/***/ 1114:
+/***/ ((module) => {
+
+
+
+/** @type {import('./shams')} */
+/* eslint complexity: [2, 18], max-statements: [2, 33] */
+module.exports = function hasSymbols() {
+ if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }
+ if (typeof Symbol.iterator === 'symbol') { return true; }
+
+ /** @type {{ [k in symbol]?: unknown }} */
+ var obj = {};
+ var sym = Symbol('test');
+ var symObj = Object(sym);
+ if (typeof sym === 'string') { return false; }
+
+ if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }
+ if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }
+
+ // temp disabled per https://github.com/ljharb/object.assign/issues/17
+ // if (sym instanceof Symbol) { return false; }
+ // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
+ // if (!(symObj instanceof Symbol)) { return false; }
+
+ // if (typeof Symbol.prototype.toString !== 'function') { return false; }
+ // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
+
+ var symVal = 42;
+ obj[sym] = symVal;
+ for (var _ in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
+ if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
+
+ if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
+
+ var syms = Object.getOwnPropertySymbols(obj);
+ if (syms.length !== 1 || syms[0] !== sym) { return false; }
+
+ if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
+
+ if (typeof Object.getOwnPropertyDescriptor === 'function') {
+ // eslint-disable-next-line no-extra-parens
+ var descriptor = /** @type {PropertyDescriptor} */ (Object.getOwnPropertyDescriptor(obj, sym));
+ if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
+ }
+
+ return true;
+};
+
+
+/***/ }),
+
+/***/ 5479:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var hasSymbols = __nccwpck_require__(1114);
+
+/** @type {import('.')} */
+module.exports = function hasToStringTagShams() {
+ return hasSymbols() && !!Symbol.toStringTag;
+};
+
+
+/***/ }),
+
+/***/ 4076:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var call = Function.prototype.call;
+var $hasOwn = Object.prototype.hasOwnProperty;
+var bind = __nccwpck_require__(7564);
+
+/** @type {import('.')} */
+module.exports = bind.call(call, $hasOwn);
+
+
+/***/ }),
+
+/***/ 5641:
+/***/ ((module) => {
+
+
+
+/** @type {import('./abs')} */
+module.exports = Math.abs;
+
+
+/***/ }),
+
+/***/ 6171:
+/***/ ((module) => {
+
+
+
+/** @type {import('./floor')} */
+module.exports = Math.floor;
+
+
+/***/ }),
+
+/***/ 7044:
+/***/ ((module) => {
+
+
+
+/** @type {import('./isNaN')} */
+module.exports = Number.isNaN || function isNaN(a) {
+ return a !== a;
+};
+
+
+/***/ }),
+
+/***/ 7147:
+/***/ ((module) => {
+
+
+
+/** @type {import('./max')} */
+module.exports = Math.max;
+
+
+/***/ }),
+
+/***/ 1017:
+/***/ ((module) => {
+
+
+
+/** @type {import('./min')} */
+module.exports = Math.min;
+
+
+/***/ }),
+
+/***/ 6947:
+/***/ ((module) => {
+
+
+
+/** @type {import('./pow')} */
+module.exports = Math.pow;
+
+
+/***/ }),
+
+/***/ 2621:
+/***/ ((module) => {
+
+
+
+/** @type {import('./round')} */
+module.exports = Math.round;
+
+
+/***/ }),
+
+/***/ 156:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+var $isNaN = __nccwpck_require__(7044);
+
+/** @type {import('./sign')} */
+module.exports = function sign(number) {
+ if ($isNaN(number) || number === 0) {
+ return number;
+ }
+ return number < 0 ? -1 : +1;
+};
+
+
+/***/ }),
+
+/***/ 9829:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+/*!
+ * mime-db
+ * Copyright(c) 2014 Jonathan Ong
+ * Copyright(c) 2015-2022 Douglas Christopher Wilson
+ * MIT Licensed
+ */
+
+/**
+ * Module exports.
+ */
+
+module.exports = __nccwpck_require__(1813)
+
+
+/***/ }),
+
+/***/ 4096:
+/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
+
+/*!
+ * mime-types
+ * Copyright(c) 2014 Jonathan Ong
+ * Copyright(c) 2015 Douglas Christopher Wilson
+ * MIT Licensed
+ */
+
+
+
+/**
+ * Module dependencies.
+ * @private
+ */
+
+var db = __nccwpck_require__(9829)
+var extname = (__nccwpck_require__(6928).extname)
+
+/**
+ * Module variables.
+ * @private
+ */
+
+var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/
+var TEXT_TYPE_REGEXP = /^text\//i
+
+/**
+ * Module exports.
+ * @public
+ */
+
+exports.charset = charset
+exports.charsets = { lookup: charset }
+exports.contentType = contentType
+exports.extension = extension
+exports.extensions = Object.create(null)
+exports.lookup = lookup
+exports.types = Object.create(null)
+
+// Populate the extensions/types maps
+populateMaps(exports.extensions, exports.types)
+
+/**
+ * Get the default charset for a MIME type.
+ *
+ * @param {string} type
+ * @return {boolean|string}
+ */
+
+function charset (type) {
+ if (!type || typeof type !== 'string') {
+ return false
+ }
+
+ // TODO: use media-typer
+ var match = EXTRACT_TYPE_REGEXP.exec(type)
+ var mime = match && db[match[1].toLowerCase()]
+
+ if (mime && mime.charset) {
+ return mime.charset
+ }
+
+ // default text/* to utf-8
+ if (match && TEXT_TYPE_REGEXP.test(match[1])) {
+ return 'UTF-8'
+ }
+
+ return false
+}
+
+/**
+ * Create a full Content-Type header given a MIME type or extension.
+ *
+ * @param {string} str
+ * @return {boolean|string}
+ */
+
+function contentType (str) {
+ // TODO: should this even be in this module?
+ if (!str || typeof str !== 'string') {
+ return false
+ }
+
+ var mime = str.indexOf('/') === -1
+ ? exports.lookup(str)
+ : str
+
+ if (!mime) {
+ return false
+ }
+
+ // TODO: use content-type or other module
+ if (mime.indexOf('charset') === -1) {
+ var charset = exports.charset(mime)
+ if (charset) mime += '; charset=' + charset.toLowerCase()
+ }
+
+ return mime
+}
+
+/**
+ * Get the default extension for a MIME type.
+ *
+ * @param {string} type
+ * @return {boolean|string}
+ */
+
+function extension (type) {
+ if (!type || typeof type !== 'string') {
+ return false
+ }
+
+ // TODO: use media-typer
+ var match = EXTRACT_TYPE_REGEXP.exec(type)
+
+ // get extensions
+ var exts = match && exports.extensions[match[1].toLowerCase()]
+
+ if (!exts || !exts.length) {
+ return false
+ }
+
+ return exts[0]
+}
+
+/**
+ * Lookup the MIME type for a file path/extension.
+ *
+ * @param {string} path
+ * @return {boolean|string}
+ */
+
+function lookup (path) {
+ if (!path || typeof path !== 'string') {
+ return false
+ }
+
+ // get the extension ("ext" or ".ext" or full path)
+ var extension = extname('x.' + path)
+ .toLowerCase()
+ .substr(1)
+
+ if (!extension) {
+ return false
+ }
+
+ return exports.types[extension] || false
+}
+
+/**
+ * Populate the extensions and types maps.
+ * @private
+ */
+
+function populateMaps (extensions, types) {
+ // source preference (least -> most)
+ var preference = ['nginx', 'apache', undefined, 'iana']
+
+ Object.keys(db).forEach(function forEachMimeType (type) {
+ var mime = db[type]
+ var exts = mime.extensions
+
+ if (!exts || !exts.length) {
+ return
+ }
+
+ // mime -> extensions
+ extensions[type] = exts
+
+ // extension -> mime
+ for (var i = 0; i < exts.length; i++) {
+ var extension = exts[i]
+
+ if (types[extension]) {
+ var from = preference.indexOf(db[types[extension]].source)
+ var to = preference.indexOf(mime.source)
+
+ if (types[extension] !== 'application/octet-stream' &&
+ (from > to || (from === to && types[extension].substr(0, 12) === 'application/'))) {
+ // skip the remapping
+ continue
+ }
+ }
+
+ // set the extension -> mime
+ types[extension] = type
+ }
+ })
+}
+
+
+/***/ }),
+
+/***/ 744:
+/***/ ((module) => {
+
+/**
+ * Helpers.
+ */
+
+var s = 1000;
+var m = s * 60;
+var h = m * 60;
+var d = h * 24;
+var w = d * 7;
+var y = d * 365.25;
+
+/**
+ * Parse or format the given `val`.
+ *
+ * Options:
+ *
+ * - `long` verbose formatting [false]
+ *
+ * @param {String|Number} val
+ * @param {Object} [options]
+ * @throws {Error} throw an error if val is not a non-empty string or a number
+ * @return {String|Number}
+ * @api public
+ */
+
+module.exports = function (val, options) {
+ options = options || {};
+ var type = typeof val;
+ if (type === 'string' && val.length > 0) {
+ return parse(val);
+ } else if (type === 'number' && isFinite(val)) {
+ return options.long ? fmtLong(val) : fmtShort(val);
+ }
+ throw new Error(
+ 'val is not a non-empty string or a valid number. val=' +
+ JSON.stringify(val)
+ );
+};
+
+/**
+ * Parse the given `str` and return milliseconds.
+ *
+ * @param {String} str
+ * @return {Number}
+ * @api private
+ */
+
+function parse(str) {
+ str = String(str);
+ if (str.length > 100) {
+ return;
+ }
+ var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
+ str
+ );
+ if (!match) {
+ return;
+ }
+ var n = parseFloat(match[1]);
+ var type = (match[2] || 'ms').toLowerCase();
+ switch (type) {
+ case 'years':
+ case 'year':
+ case 'yrs':
+ case 'yr':
+ case 'y':
+ return n * y;
+ case 'weeks':
+ case 'week':
+ case 'w':
+ return n * w;
+ case 'days':
+ case 'day':
+ case 'd':
+ return n * d;
+ case 'hours':
+ case 'hour':
+ case 'hrs':
+ case 'hr':
+ case 'h':
+ return n * h;
+ case 'minutes':
+ case 'minute':
+ case 'mins':
+ case 'min':
+ case 'm':
+ return n * m;
+ case 'seconds':
+ case 'second':
+ case 'secs':
+ case 'sec':
+ case 's':
+ return n * s;
+ case 'milliseconds':
+ case 'millisecond':
+ case 'msecs':
+ case 'msec':
+ case 'ms':
+ return n;
+ default:
+ return undefined;
+ }
+}
+
+/**
+ * Short format for `ms`.
+ *
+ * @param {Number} ms
+ * @return {String}
+ * @api private
+ */
+
+function fmtShort(ms) {
+ var msAbs = Math.abs(ms);
+ if (msAbs >= d) {
+ return Math.round(ms / d) + 'd';
+ }
+ if (msAbs >= h) {
+ return Math.round(ms / h) + 'h';
+ }
+ if (msAbs >= m) {
+ return Math.round(ms / m) + 'm';
+ }
+ if (msAbs >= s) {
+ return Math.round(ms / s) + 's';
+ }
+ return ms + 'ms';
+}
+
+/**
+ * Long format for `ms`.
+ *
+ * @param {Number} ms
+ * @return {String}
+ * @api private
+ */
+
+function fmtLong(ms) {
+ var msAbs = Math.abs(ms);
+ if (msAbs >= d) {
+ return plural(ms, msAbs, d, 'day');
+ }
+ if (msAbs >= h) {
+ return plural(ms, msAbs, h, 'hour');
+ }
+ if (msAbs >= m) {
+ return plural(ms, msAbs, m, 'minute');
+ }
+ if (msAbs >= s) {
+ return plural(ms, msAbs, s, 'second');
+ }
+ return ms + ' ms';
+}
+
+/**
+ * Pluralization helper.
+ */
+
+function plural(ms, msAbs, n, name) {
+ var isPlural = msAbs >= n * 1.5;
+ return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
+}
+
+
+/***/ }),
+
+/***/ 9379:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const ANY = Symbol('SemVer ANY')
+// hoisted class for cyclic dependency
+class Comparator {
+ static get ANY () {
+ return ANY
+ }
+
+ constructor (comp, options) {
+ options = parseOptions(options)
+
+ if (comp instanceof Comparator) {
+ if (comp.loose === !!options.loose) {
+ return comp
+ } else {
+ comp = comp.value
+ }
+ }
+
+ comp = comp.trim().split(/\s+/).join(' ')
+ debug('comparator', comp, options)
+ this.options = options
+ this.loose = !!options.loose
+ this.parse(comp)
+
+ if (this.semver === ANY) {
+ this.value = ''
+ } else {
+ this.value = this.operator + this.semver.version
+ }
+
+ debug('comp', this)
+ }
+
+ parse (comp) {
+ const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]
+ const m = comp.match(r)
+
+ if (!m) {
+ throw new TypeError(`Invalid comparator: ${comp}`)
+ }
+
+ this.operator = m[1] !== undefined ? m[1] : ''
+ if (this.operator === '=') {
+ this.operator = ''
+ }
+
+ // if it literally is just '>' or '' then allow anything.
+ if (!m[2]) {
+ this.semver = ANY
+ } else {
+ this.semver = new SemVer(m[2], this.options.loose)
+ }
+ }
+
+ toString () {
+ return this.value
+ }
+
+ test (version) {
+ debug('Comparator.test', version, this.options.loose)
+
+ if (this.semver === ANY || version === ANY) {
+ return true
+ }
+
+ if (typeof version === 'string') {
+ try {
+ version = new SemVer(version, this.options)
+ } catch (er) {
+ return false
+ }
+ }
+
+ return cmp(version, this.operator, this.semver, this.options)
+ }
+
+ intersects (comp, options) {
+ if (!(comp instanceof Comparator)) {
+ throw new TypeError('a Comparator is required')
+ }
+
+ if (this.operator === '') {
+ if (this.value === '') {
+ return true
+ }
+ return new Range(comp.value, options).test(this.value)
+ } else if (comp.operator === '') {
+ if (comp.value === '') {
+ return true
+ }
+ return new Range(this.value, options).test(comp.semver)
+ }
+
+ options = parseOptions(options)
+
+ // Special cases where nothing can possibly be lower
+ if (options.includePrerelease &&
+ (this.value === '<0.0.0-0' || comp.value === '<0.0.0-0')) {
+ return false
+ }
+ if (!options.includePrerelease &&
+ (this.value.startsWith('<0.0.0') || comp.value.startsWith('<0.0.0'))) {
+ return false
+ }
+
+ // Same direction increasing (> or >=)
+ if (this.operator.startsWith('>') && comp.operator.startsWith('>')) {
+ return true
+ }
+ // Same direction decreasing (< or <=)
+ if (this.operator.startsWith('<') && comp.operator.startsWith('<')) {
+ return true
+ }
+ // same SemVer and both sides are inclusive (<= or >=)
+ if (
+ (this.semver.version === comp.semver.version) &&
+ this.operator.includes('=') && comp.operator.includes('=')) {
+ return true
+ }
+ // opposite directions less than
+ if (cmp(this.semver, '<', comp.semver, options) &&
+ this.operator.startsWith('>') && comp.operator.startsWith('<')) {
+ return true
+ }
+ // opposite directions greater than
+ if (cmp(this.semver, '>', comp.semver, options) &&
+ this.operator.startsWith('<') && comp.operator.startsWith('>')) {
+ return true
+ }
+ return false
+ }
+}
+
+module.exports = Comparator
+
+const parseOptions = __nccwpck_require__(356)
+const { safeRe: re, t } = __nccwpck_require__(5471)
+const cmp = __nccwpck_require__(8646)
+const debug = __nccwpck_require__(1159)
+const SemVer = __nccwpck_require__(7163)
+const Range = __nccwpck_require__(6782)
+
+
+/***/ }),
+
+/***/ 6782:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SPACE_CHARACTERS = /\s+/g
+
+// hoisted class for cyclic dependency
+class Range {
+ constructor (range, options) {
+ options = parseOptions(options)
+
+ if (range instanceof Range) {
+ if (
+ range.loose === !!options.loose &&
+ range.includePrerelease === !!options.includePrerelease
+ ) {
+ return range
+ } else {
+ return new Range(range.raw, options)
+ }
+ }
+
+ if (range instanceof Comparator) {
+ // just put it in the set and return
+ this.raw = range.value
+ this.set = [[range]]
+ this.formatted = undefined
+ return this
+ }
+
+ this.options = options
+ this.loose = !!options.loose
+ this.includePrerelease = !!options.includePrerelease
+
+ // First reduce all whitespace as much as possible so we do not have to rely
+ // on potentially slow regexes like \s*. This is then stored and used for
+ // future error messages as well.
+ this.raw = range.trim().replace(SPACE_CHARACTERS, ' ')
+
+ // First, split on ||
+ this.set = this.raw
+ .split('||')
+ // map the range to a 2d array of comparators
+ .map(r => this.parseRange(r.trim()))
+ // throw out any comparator lists that are empty
+ // this generally means that it was not a valid range, which is allowed
+ // in loose mode, but will still throw if the WHOLE range is invalid.
+ .filter(c => c.length)
+
+ if (!this.set.length) {
+ throw new TypeError(`Invalid SemVer Range: ${this.raw}`)
+ }
+
+ // if we have any that are not the null set, throw out null sets.
+ if (this.set.length > 1) {
+ // keep the first one, in case they're all null sets
+ const first = this.set[0]
+ this.set = this.set.filter(c => !isNullSet(c[0]))
+ if (this.set.length === 0) {
+ this.set = [first]
+ } else if (this.set.length > 1) {
+ // if we have any that are *, then the range is just *
+ for (const c of this.set) {
+ if (c.length === 1 && isAny(c[0])) {
+ this.set = [c]
+ break
+ }
+ }
+ }
+ }
+
+ this.formatted = undefined
+ }
+
+ get range () {
+ if (this.formatted === undefined) {
+ this.formatted = ''
+ for (let i = 0; i < this.set.length; i++) {
+ if (i > 0) {
+ this.formatted += '||'
+ }
+ const comps = this.set[i]
+ for (let k = 0; k < comps.length; k++) {
+ if (k > 0) {
+ this.formatted += ' '
+ }
+ this.formatted += comps[k].toString().trim()
+ }
+ }
+ }
+ return this.formatted
+ }
+
+ format () {
+ return this.range
+ }
+
+ toString () {
+ return this.range
+ }
+
+ parseRange (range) {
+ // memoize range parsing for performance.
+ // this is a very hot path, and fully deterministic.
+ const memoOpts =
+ (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) |
+ (this.options.loose && FLAG_LOOSE)
+ const memoKey = memoOpts + ':' + range
+ const cached = cache.get(memoKey)
+ if (cached) {
+ return cached
+ }
+
+ const loose = this.options.loose
+ // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`
+ const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]
+ range = range.replace(hr, hyphenReplace(this.options.includePrerelease))
+ debug('hyphen replace', range)
+
+ // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`
+ range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)
+ debug('comparator trim', range)
+
+ // `~ 1.2.3` => `~1.2.3`
+ range = range.replace(re[t.TILDETRIM], tildeTrimReplace)
+ debug('tilde trim', range)
+
+ // `^ 1.2.3` => `^1.2.3`
+ range = range.replace(re[t.CARETTRIM], caretTrimReplace)
+ debug('caret trim', range)
+
+ // At this point, the range is completely trimmed and
+ // ready to be split into comparators.
+
+ let rangeList = range
+ .split(' ')
+ .map(comp => parseComparator(comp, this.options))
+ .join(' ')
+ .split(/\s+/)
+ // >=0.0.0 is equivalent to *
+ .map(comp => replaceGTE0(comp, this.options))
+
+ if (loose) {
+ // in loose mode, throw out any that are not valid comparators
+ rangeList = rangeList.filter(comp => {
+ debug('loose invalid filter', comp, this.options)
+ return !!comp.match(re[t.COMPARATORLOOSE])
+ })
+ }
+ debug('range list', rangeList)
+
+ // if any comparators are the null set, then replace with JUST null set
+ // if more than one comparator, remove any * comparators
+ // also, don't include the same comparator more than once
+ const rangeMap = new Map()
+ const comparators = rangeList.map(comp => new Comparator(comp, this.options))
+ for (const comp of comparators) {
+ if (isNullSet(comp)) {
+ return [comp]
+ }
+ rangeMap.set(comp.value, comp)
+ }
+ if (rangeMap.size > 1 && rangeMap.has('')) {
+ rangeMap.delete('')
+ }
+
+ const result = [...rangeMap.values()]
+ cache.set(memoKey, result)
+ return result
+ }
+
+ intersects (range, options) {
+ if (!(range instanceof Range)) {
+ throw new TypeError('a Range is required')
+ }
+
+ return this.set.some((thisComparators) => {
+ return (
+ isSatisfiable(thisComparators, options) &&
+ range.set.some((rangeComparators) => {
+ return (
+ isSatisfiable(rangeComparators, options) &&
+ thisComparators.every((thisComparator) => {
+ return rangeComparators.every((rangeComparator) => {
+ return thisComparator.intersects(rangeComparator, options)
+ })
+ })
+ )
+ })
+ )
+ })
+ }
+
+ // if ANY of the sets match ALL of its comparators, then pass
+ test (version) {
+ if (!version) {
+ return false
+ }
+
+ if (typeof version === 'string') {
+ try {
+ version = new SemVer(version, this.options)
+ } catch (er) {
+ return false
+ }
+ }
+
+ for (let i = 0; i < this.set.length; i++) {
+ if (testSet(this.set[i], version, this.options)) {
+ return true
+ }
+ }
+ return false
+ }
+}
+
+module.exports = Range
+
+const LRU = __nccwpck_require__(1383)
+const cache = new LRU()
+
+const parseOptions = __nccwpck_require__(356)
+const Comparator = __nccwpck_require__(9379)
+const debug = __nccwpck_require__(1159)
+const SemVer = __nccwpck_require__(7163)
+const {
+ safeRe: re,
+ t,
+ comparatorTrimReplace,
+ tildeTrimReplace,
+ caretTrimReplace,
+} = __nccwpck_require__(5471)
+const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(5101)
+
+const isNullSet = c => c.value === '<0.0.0-0'
+const isAny = c => c.value === ''
+
+// take a set of comparators and determine whether there
+// exists a version which can satisfy it
+const isSatisfiable = (comparators, options) => {
+ let result = true
+ const remainingComparators = comparators.slice()
+ let testComparator = remainingComparators.pop()
+
+ while (result && remainingComparators.length) {
+ result = remainingComparators.every((otherComparator) => {
+ return testComparator.intersects(otherComparator, options)
+ })
+
+ testComparator = remainingComparators.pop()
+ }
+
+ return result
+}
+
+// comprised of xranges, tildes, stars, and gtlt's at this point.
+// already replaced the hyphen ranges
+// turn into a set of JUST comparators.
+const parseComparator = (comp, options) => {
+ comp = comp.replace(re[t.BUILD], '')
+ debug('comp', comp, options)
+ comp = replaceCarets(comp, options)
+ debug('caret', comp)
+ comp = replaceTildes(comp, options)
+ debug('tildes', comp)
+ comp = replaceXRanges(comp, options)
+ debug('xrange', comp)
+ comp = replaceStars(comp, options)
+ debug('stars', comp)
+ return comp
+}
+
+const isX = id => !id || id.toLowerCase() === 'x' || id === '*'
+
+// ~, ~> --> * (any, kinda silly)
+// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0-0
+// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0-0
+// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0
+// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0
+// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0
+// ~0.0.1 --> >=0.0.1 <0.1.0-0
+const replaceTildes = (comp, options) => {
+ return comp
+ .trim()
+ .split(/\s+/)
+ .map((c) => replaceTilde(c, options))
+ .join(' ')
+}
+
+const replaceTilde = (comp, options) => {
+ const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]
+ return comp.replace(r, (_, M, m, p, pr) => {
+ debug('tilde', comp, _, M, m, p, pr)
+ let ret
+
+ if (isX(M)) {
+ ret = ''
+ } else if (isX(m)) {
+ ret = `>=${M}.0.0 <${+M + 1}.0.0-0`
+ } else if (isX(p)) {
+ // ~1.2 == >=1.2.0 <1.3.0-0
+ ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`
+ } else if (pr) {
+ debug('replaceTilde pr', pr)
+ ret = `>=${M}.${m}.${p}-${pr
+ } <${M}.${+m + 1}.0-0`
+ } else {
+ // ~1.2.3 == >=1.2.3 <1.3.0-0
+ ret = `>=${M}.${m}.${p
+ } <${M}.${+m + 1}.0-0`
+ }
+
+ debug('tilde return', ret)
+ return ret
+ })
+}
+
+// ^ --> * (any, kinda silly)
+// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0-0
+// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0-0
+// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0
+// ^1.2.3 --> >=1.2.3 <2.0.0-0
+// ^1.2.0 --> >=1.2.0 <2.0.0-0
+// ^0.0.1 --> >=0.0.1 <0.0.2-0
+// ^0.1.0 --> >=0.1.0 <0.2.0-0
+const replaceCarets = (comp, options) => {
+ return comp
+ .trim()
+ .split(/\s+/)
+ .map((c) => replaceCaret(c, options))
+ .join(' ')
+}
+
+const replaceCaret = (comp, options) => {
+ debug('caret', comp, options)
+ const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]
+ const z = options.includePrerelease ? '-0' : ''
+ return comp.replace(r, (_, M, m, p, pr) => {
+ debug('caret', comp, _, M, m, p, pr)
+ let ret
+
+ if (isX(M)) {
+ ret = ''
+ } else if (isX(m)) {
+ ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`
+ } else if (isX(p)) {
+ if (M === '0') {
+ ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`
+ } else {
+ ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0`
+ }
+ } else if (pr) {
+ debug('replaceCaret pr', pr)
+ if (M === '0') {
+ if (m === '0') {
+ ret = `>=${M}.${m}.${p}-${pr
+ } <${M}.${m}.${+p + 1}-0`
+ } else {
+ ret = `>=${M}.${m}.${p}-${pr
+ } <${M}.${+m + 1}.0-0`
+ }
+ } else {
+ ret = `>=${M}.${m}.${p}-${pr
+ } <${+M + 1}.0.0-0`
+ }
+ } else {
+ debug('no pr')
+ if (M === '0') {
+ if (m === '0') {
+ ret = `>=${M}.${m}.${p
+ }${z} <${M}.${m}.${+p + 1}-0`
+ } else {
+ ret = `>=${M}.${m}.${p
+ }${z} <${M}.${+m + 1}.0-0`
+ }
+ } else {
+ ret = `>=${M}.${m}.${p
+ } <${+M + 1}.0.0-0`
+ }
+ }
+
+ debug('caret return', ret)
+ return ret
+ })
+}
+
+const replaceXRanges = (comp, options) => {
+ debug('replaceXRanges', comp, options)
+ return comp
+ .split(/\s+/)
+ .map((c) => replaceXRange(c, options))
+ .join(' ')
+}
+
+const replaceXRange = (comp, options) => {
+ comp = comp.trim()
+ const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]
+ return comp.replace(r, (ret, gtlt, M, m, p, pr) => {
+ debug('xRange', comp, ret, gtlt, M, m, p, pr)
+ const xM = isX(M)
+ const xm = xM || isX(m)
+ const xp = xm || isX(p)
+ const anyX = xp
+
+ if (gtlt === '=' && anyX) {
+ gtlt = ''
+ }
+
+ // if we're including prereleases in the match, then we need
+ // to fix this to -0, the lowest possible prerelease value
+ pr = options.includePrerelease ? '-0' : ''
+
+ if (xM) {
+ if (gtlt === '>' || gtlt === '<') {
+ // nothing is allowed
+ ret = '<0.0.0-0'
+ } else {
+ // nothing is forbidden
+ ret = '*'
+ }
+ } else if (gtlt && anyX) {
+ // we know patch is an x, because we have any x at all.
+ // replace X with 0
+ if (xm) {
+ m = 0
+ }
+ p = 0
+
+ if (gtlt === '>') {
+ // >1 => >=2.0.0
+ // >1.2 => >=1.3.0
+ gtlt = '>='
+ if (xm) {
+ M = +M + 1
+ m = 0
+ p = 0
+ } else {
+ m = +m + 1
+ p = 0
+ }
+ } else if (gtlt === '<=') {
+ // <=0.7.x is actually <0.8.0, since any 0.7.x should
+ // pass. Similarly, <=7.x is actually <8.0.0, etc.
+ gtlt = '<'
+ if (xm) {
+ M = +M + 1
+ } else {
+ m = +m + 1
+ }
+ }
+
+ if (gtlt === '<') {
+ pr = '-0'
+ }
+
+ ret = `${gtlt + M}.${m}.${p}${pr}`
+ } else if (xm) {
+ ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0`
+ } else if (xp) {
+ ret = `>=${M}.${m}.0${pr
+ } <${M}.${+m + 1}.0-0`
+ }
+
+ debug('xRange return', ret)
+
+ return ret
+ })
+}
+
+// Because * is AND-ed with everything else in the comparator,
+// and '' means "any version", just remove the *s entirely.
+const replaceStars = (comp, options) => {
+ debug('replaceStars', comp, options)
+ // Looseness is ignored here. star is always as loose as it gets!
+ return comp
+ .trim()
+ .replace(re[t.STAR], '')
+}
+
+const replaceGTE0 = (comp, options) => {
+ debug('replaceGTE0', comp, options)
+ return comp
+ .trim()
+ .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '')
+}
+
+// This function is passed to string.replace(re[t.HYPHENRANGE])
+// M, m, patch, prerelease, build
+// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5
+// 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do
+// 1.2 - 3.4 => >=1.2.0 <3.5.0-0
+// TODO build?
+const hyphenReplace = incPr => ($0,
+ from, fM, fm, fp, fpr, fb,
+ to, tM, tm, tp, tpr) => {
+ if (isX(fM)) {
+ from = ''
+ } else if (isX(fm)) {
+ from = `>=${fM}.0.0${incPr ? '-0' : ''}`
+ } else if (isX(fp)) {
+ from = `>=${fM}.${fm}.0${incPr ? '-0' : ''}`
+ } else if (fpr) {
+ from = `>=${from}`
+ } else {
+ from = `>=${from}${incPr ? '-0' : ''}`
+ }
+
+ if (isX(tM)) {
+ to = ''
+ } else if (isX(tm)) {
+ to = `<${+tM + 1}.0.0-0`
+ } else if (isX(tp)) {
+ to = `<${tM}.${+tm + 1}.0-0`
+ } else if (tpr) {
+ to = `<=${tM}.${tm}.${tp}-${tpr}`
+ } else if (incPr) {
+ to = `<${tM}.${tm}.${+tp + 1}-0`
+ } else {
+ to = `<=${to}`
+ }
+
+ return `${from} ${to}`.trim()
+}
+
+const testSet = (set, version, options) => {
+ for (let i = 0; i < set.length; i++) {
+ if (!set[i].test(version)) {
+ return false
+ }
+ }
+
+ if (version.prerelease.length && !options.includePrerelease) {
+ // Find the set of versions that are allowed to have prereleases
+ // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0
+ // That should allow `1.2.3-pr.2` to pass.
+ // However, `1.2.4-alpha.notready` should NOT be allowed,
+ // even though it's within the range set by the comparators.
+ for (let i = 0; i < set.length; i++) {
+ debug(set[i].semver)
+ if (set[i].semver === Comparator.ANY) {
+ continue
+ }
+
+ if (set[i].semver.prerelease.length > 0) {
+ const allowed = set[i].semver
+ if (allowed.major === version.major &&
+ allowed.minor === version.minor &&
+ allowed.patch === version.patch) {
+ return true
+ }
+ }
+ }
+
+ // Version has a -pre, but it's not one of the ones we like.
+ return false
+ }
+
+ return true
+}
+
+
+/***/ }),
+
+/***/ 7163:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const debug = __nccwpck_require__(1159)
+const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(5101)
+const { safeRe: re, t } = __nccwpck_require__(5471)
+
+const parseOptions = __nccwpck_require__(356)
+const { compareIdentifiers } = __nccwpck_require__(3348)
+class SemVer {
+ constructor (version, options) {
+ options = parseOptions(options)
+
+ if (version instanceof SemVer) {
+ if (version.loose === !!options.loose &&
+ version.includePrerelease === !!options.includePrerelease) {
+ return version
+ } else {
+ version = version.version
+ }
+ } else if (typeof version !== 'string') {
+ throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version}".`)
+ }
+
+ if (version.length > MAX_LENGTH) {
+ throw new TypeError(
+ `version is longer than ${MAX_LENGTH} characters`
+ )
+ }
+
+ debug('SemVer', version, options)
+ this.options = options
+ this.loose = !!options.loose
+ // this isn't actually relevant for versions, but keep it so that we
+ // don't run into trouble passing this.options around.
+ this.includePrerelease = !!options.includePrerelease
+
+ const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])
+
+ if (!m) {
+ throw new TypeError(`Invalid Version: ${version}`)
+ }
+
+ this.raw = version
+
+ // these are actually numbers
+ this.major = +m[1]
+ this.minor = +m[2]
+ this.patch = +m[3]
+
+ if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
+ throw new TypeError('Invalid major version')
+ }
+
+ if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
+ throw new TypeError('Invalid minor version')
+ }
+
+ if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
+ throw new TypeError('Invalid patch version')
+ }
+
+ // numberify any prerelease numeric ids
+ if (!m[4]) {
+ this.prerelease = []
+ } else {
+ this.prerelease = m[4].split('.').map((id) => {
+ if (/^[0-9]+$/.test(id)) {
+ const num = +id
+ if (num >= 0 && num < MAX_SAFE_INTEGER) {
+ return num
+ }
+ }
+ return id
+ })
+ }
+
+ this.build = m[5] ? m[5].split('.') : []
+ this.format()
+ }
+
+ format () {
+ this.version = `${this.major}.${this.minor}.${this.patch}`
+ if (this.prerelease.length) {
+ this.version += `-${this.prerelease.join('.')}`
+ }
+ return this.version
+ }
+
+ toString () {
+ return this.version
+ }
+
+ compare (other) {
+ debug('SemVer.compare', this.version, this.options, other)
+ if (!(other instanceof SemVer)) {
+ if (typeof other === 'string' && other === this.version) {
+ return 0
+ }
+ other = new SemVer(other, this.options)
+ }
+
+ if (other.version === this.version) {
+ return 0
+ }
+
+ return this.compareMain(other) || this.comparePre(other)
+ }
+
+ compareMain (other) {
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ if (this.major < other.major) {
+ return -1
+ }
+ if (this.major > other.major) {
+ return 1
+ }
+ if (this.minor < other.minor) {
+ return -1
+ }
+ if (this.minor > other.minor) {
+ return 1
+ }
+ if (this.patch < other.patch) {
+ return -1
+ }
+ if (this.patch > other.patch) {
+ return 1
+ }
+ return 0
+ }
+
+ comparePre (other) {
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ // NOT having a prerelease is > having one
+ if (this.prerelease.length && !other.prerelease.length) {
+ return -1
+ } else if (!this.prerelease.length && other.prerelease.length) {
+ return 1
+ } else if (!this.prerelease.length && !other.prerelease.length) {
+ return 0
+ }
+
+ let i = 0
+ do {
+ const a = this.prerelease[i]
+ const b = other.prerelease[i]
+ debug('prerelease compare', i, a, b)
+ if (a === undefined && b === undefined) {
+ return 0
+ } else if (b === undefined) {
+ return 1
+ } else if (a === undefined) {
+ return -1
+ } else if (a === b) {
+ continue
+ } else {
+ return compareIdentifiers(a, b)
+ }
+ } while (++i)
+ }
+
+ compareBuild (other) {
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ let i = 0
+ do {
+ const a = this.build[i]
+ const b = other.build[i]
+ debug('build compare', i, a, b)
+ if (a === undefined && b === undefined) {
+ return 0
+ } else if (b === undefined) {
+ return 1
+ } else if (a === undefined) {
+ return -1
+ } else if (a === b) {
+ continue
+ } else {
+ return compareIdentifiers(a, b)
+ }
+ } while (++i)
+ }
+
+ // preminor will bump the version up to the next minor release, and immediately
+ // down to pre-release. premajor and prepatch work the same way.
+ inc (release, identifier, identifierBase) {
+ if (release.startsWith('pre')) {
+ if (!identifier && identifierBase === false) {
+ throw new Error('invalid increment argument: identifier is empty')
+ }
+ // Avoid an invalid semver results
+ if (identifier) {
+ const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE])
+ if (!match || match[1] !== identifier) {
+ throw new Error(`invalid identifier: ${identifier}`)
+ }
+ }
+ }
+
+ switch (release) {
+ case 'premajor':
+ this.prerelease.length = 0
+ this.patch = 0
+ this.minor = 0
+ this.major++
+ this.inc('pre', identifier, identifierBase)
+ break
+ case 'preminor':
+ this.prerelease.length = 0
+ this.patch = 0
+ this.minor++
+ this.inc('pre', identifier, identifierBase)
+ break
+ case 'prepatch':
+ // If this is already a prerelease, it will bump to the next version
+ // drop any prereleases that might already exist, since they are not
+ // relevant at this point.
+ this.prerelease.length = 0
+ this.inc('patch', identifier, identifierBase)
+ this.inc('pre', identifier, identifierBase)
+ break
+ // If the input is a non-prerelease version, this acts the same as
+ // prepatch.
+ case 'prerelease':
+ if (this.prerelease.length === 0) {
+ this.inc('patch', identifier, identifierBase)
+ }
+ this.inc('pre', identifier, identifierBase)
+ break
+ case 'release':
+ if (this.prerelease.length === 0) {
+ throw new Error(`version ${this.raw} is not a prerelease`)
+ }
+ this.prerelease.length = 0
+ break
+
+ case 'major':
+ // If this is a pre-major version, bump up to the same major version.
+ // Otherwise increment major.
+ // 1.0.0-5 bumps to 1.0.0
+ // 1.1.0 bumps to 2.0.0
+ if (
+ this.minor !== 0 ||
+ this.patch !== 0 ||
+ this.prerelease.length === 0
+ ) {
+ this.major++
+ }
+ this.minor = 0
+ this.patch = 0
+ this.prerelease = []
+ break
+ case 'minor':
+ // If this is a pre-minor version, bump up to the same minor version.
+ // Otherwise increment minor.
+ // 1.2.0-5 bumps to 1.2.0
+ // 1.2.1 bumps to 1.3.0
+ if (this.patch !== 0 || this.prerelease.length === 0) {
+ this.minor++
+ }
+ this.patch = 0
+ this.prerelease = []
+ break
+ case 'patch':
+ // If this is not a pre-release version, it will increment the patch.
+ // If it is a pre-release it will bump up to the same patch version.
+ // 1.2.0-5 patches to 1.2.0
+ // 1.2.0 patches to 1.2.1
+ if (this.prerelease.length === 0) {
+ this.patch++
+ }
+ this.prerelease = []
+ break
+ // This probably shouldn't be used publicly.
+ // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.
+ case 'pre': {
+ const base = Number(identifierBase) ? 1 : 0
+
+ if (this.prerelease.length === 0) {
+ this.prerelease = [base]
+ } else {
+ let i = this.prerelease.length
+ while (--i >= 0) {
+ if (typeof this.prerelease[i] === 'number') {
+ this.prerelease[i]++
+ i = -2
+ }
+ }
+ if (i === -1) {
+ // didn't increment anything
+ if (identifier === this.prerelease.join('.') && identifierBase === false) {
+ throw new Error('invalid increment argument: identifier already exists')
+ }
+ this.prerelease.push(base)
+ }
+ }
+ if (identifier) {
+ // 1.2.0-beta.1 bumps to 1.2.0-beta.2,
+ // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0
+ let prerelease = [identifier, base]
+ if (identifierBase === false) {
+ prerelease = [identifier]
+ }
+ if (compareIdentifiers(this.prerelease[0], identifier) === 0) {
+ if (isNaN(this.prerelease[1])) {
+ this.prerelease = prerelease
+ }
+ } else {
+ this.prerelease = prerelease
+ }
+ }
+ break
+ }
+ default:
+ throw new Error(`invalid increment argument: ${release}`)
+ }
+ this.raw = this.format()
+ if (this.build.length) {
+ this.raw += `+${this.build.join('.')}`
+ }
+ return this
+ }
+}
+
+module.exports = SemVer
+
+
+/***/ }),
+
+/***/ 1799:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const parse = __nccwpck_require__(6353)
+const clean = (version, options) => {
+ const s = parse(version.trim().replace(/^[=v]+/, ''), options)
+ return s ? s.version : null
+}
+module.exports = clean
+
+
+/***/ }),
+
+/***/ 8646:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const eq = __nccwpck_require__(5082)
+const neq = __nccwpck_require__(4974)
+const gt = __nccwpck_require__(6599)
+const gte = __nccwpck_require__(1236)
+const lt = __nccwpck_require__(3872)
+const lte = __nccwpck_require__(6717)
+
+const cmp = (a, op, b, loose) => {
+ switch (op) {
+ case '===':
+ if (typeof a === 'object') {
+ a = a.version
+ }
+ if (typeof b === 'object') {
+ b = b.version
+ }
+ return a === b
+
+ case '!==':
+ if (typeof a === 'object') {
+ a = a.version
+ }
+ if (typeof b === 'object') {
+ b = b.version
+ }
+ return a !== b
+
+ case '':
+ case '=':
+ case '==':
+ return eq(a, b, loose)
+
+ case '!=':
+ return neq(a, b, loose)
+
+ case '>':
+ return gt(a, b, loose)
+
+ case '>=':
+ return gte(a, b, loose)
+
+ case '<':
+ return lt(a, b, loose)
+
+ case '<=':
+ return lte(a, b, loose)
+
+ default:
+ throw new TypeError(`Invalid operator: ${op}`)
+ }
+}
+module.exports = cmp
+
+
+/***/ }),
+
+/***/ 5385:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const parse = __nccwpck_require__(6353)
+const { safeRe: re, t } = __nccwpck_require__(5471)
+
+const coerce = (version, options) => {
+ if (version instanceof SemVer) {
+ return version
+ }
+
+ if (typeof version === 'number') {
+ version = String(version)
+ }
+
+ if (typeof version !== 'string') {
+ return null
+ }
+
+ options = options || {}
+
+ let match = null
+ if (!options.rtl) {
+ match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE])
+ } else {
+ // Find the right-most coercible string that does not share
+ // a terminus with a more left-ward coercible string.
+ // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'
+ // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4'
+ //
+ // Walk through the string checking with a /g regexp
+ // Manually set the index so as to pick up overlapping matches.
+ // Stop when we get a match that ends at the string end, since no
+ // coercible string can be more right-ward without the same terminus.
+ const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL]
+ let next
+ while ((next = coerceRtlRegex.exec(version)) &&
+ (!match || match.index + match[0].length !== version.length)
+ ) {
+ if (!match ||
+ next.index + next[0].length !== match.index + match[0].length) {
+ match = next
+ }
+ coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length
+ }
+ // leave it in a clean state
+ coerceRtlRegex.lastIndex = -1
+ }
+
+ if (match === null) {
+ return null
+ }
+
+ const major = match[2]
+ const minor = match[3] || '0'
+ const patch = match[4] || '0'
+ const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : ''
+ const build = options.includePrerelease && match[6] ? `+${match[6]}` : ''
+
+ return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options)
+}
+module.exports = coerce
+
+
+/***/ }),
+
+/***/ 7648:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const compareBuild = (a, b, loose) => {
+ const versionA = new SemVer(a, loose)
+ const versionB = new SemVer(b, loose)
+ return versionA.compare(versionB) || versionA.compareBuild(versionB)
+}
+module.exports = compareBuild
+
+
+/***/ }),
+
+/***/ 6874:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const compareLoose = (a, b) => compare(a, b, true)
+module.exports = compareLoose
+
+
+/***/ }),
+
+/***/ 8469:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const compare = (a, b, loose) =>
+ new SemVer(a, loose).compare(new SemVer(b, loose))
+
+module.exports = compare
+
+
+/***/ }),
+
+/***/ 711:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const parse = __nccwpck_require__(6353)
+
+const diff = (version1, version2) => {
+ const v1 = parse(version1, null, true)
+ const v2 = parse(version2, null, true)
+ const comparison = v1.compare(v2)
+
+ if (comparison === 0) {
+ return null
+ }
+
+ const v1Higher = comparison > 0
+ const highVersion = v1Higher ? v1 : v2
+ const lowVersion = v1Higher ? v2 : v1
+ const highHasPre = !!highVersion.prerelease.length
+ const lowHasPre = !!lowVersion.prerelease.length
+
+ if (lowHasPre && !highHasPre) {
+ // Going from prerelease -> no prerelease requires some special casing
+
+ // If the low version has only a major, then it will always be a major
+ // Some examples:
+ // 1.0.0-1 -> 1.0.0
+ // 1.0.0-1 -> 1.1.1
+ // 1.0.0-1 -> 2.0.0
+ if (!lowVersion.patch && !lowVersion.minor) {
+ return 'major'
+ }
+
+ // If the main part has no difference
+ if (lowVersion.compareMain(highVersion) === 0) {
+ if (lowVersion.minor && !lowVersion.patch) {
+ return 'minor'
+ }
+ return 'patch'
+ }
+ }
+
+ // add the `pre` prefix if we are going to a prerelease version
+ const prefix = highHasPre ? 'pre' : ''
+
+ if (v1.major !== v2.major) {
+ return prefix + 'major'
+ }
+
+ if (v1.minor !== v2.minor) {
+ return prefix + 'minor'
+ }
+
+ if (v1.patch !== v2.patch) {
+ return prefix + 'patch'
+ }
+
+ // high and low are prereleases
+ return 'prerelease'
+}
+
+module.exports = diff
+
+
+/***/ }),
+
+/***/ 5082:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const eq = (a, b, loose) => compare(a, b, loose) === 0
+module.exports = eq
+
+
+/***/ }),
+
+/***/ 6599:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const gt = (a, b, loose) => compare(a, b, loose) > 0
+module.exports = gt
+
+
+/***/ }),
+
+/***/ 1236:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const gte = (a, b, loose) => compare(a, b, loose) >= 0
+module.exports = gte
+
+
+/***/ }),
+
+/***/ 2338:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+
+const inc = (version, release, options, identifier, identifierBase) => {
+ if (typeof (options) === 'string') {
+ identifierBase = identifier
+ identifier = options
+ options = undefined
+ }
+
+ try {
+ return new SemVer(
+ version instanceof SemVer ? version.version : version,
+ options
+ ).inc(release, identifier, identifierBase).version
+ } catch (er) {
+ return null
+ }
+}
+module.exports = inc
+
+
+/***/ }),
+
+/***/ 3872:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const lt = (a, b, loose) => compare(a, b, loose) < 0
+module.exports = lt
+
+
+/***/ }),
+
+/***/ 6717:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const lte = (a, b, loose) => compare(a, b, loose) <= 0
+module.exports = lte
+
+
+/***/ }),
+
+/***/ 8511:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const major = (a, loose) => new SemVer(a, loose).major
+module.exports = major
+
+
+/***/ }),
+
+/***/ 2603:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const minor = (a, loose) => new SemVer(a, loose).minor
+module.exports = minor
+
+
+/***/ }),
+
+/***/ 4974:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const neq = (a, b, loose) => compare(a, b, loose) !== 0
+module.exports = neq
+
+
+/***/ }),
+
+/***/ 6353:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const parse = (version, options, throwErrors = false) => {
+ if (version instanceof SemVer) {
+ return version
+ }
+ try {
+ return new SemVer(version, options)
+ } catch (er) {
+ if (!throwErrors) {
+ return null
+ }
+ throw er
+ }
+}
+
+module.exports = parse
+
+
+/***/ }),
+
+/***/ 8756:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const patch = (a, loose) => new SemVer(a, loose).patch
+module.exports = patch
+
+
+/***/ }),
+
+/***/ 5714:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const parse = __nccwpck_require__(6353)
+const prerelease = (version, options) => {
+ const parsed = parse(version, options)
+ return (parsed && parsed.prerelease.length) ? parsed.prerelease : null
+}
+module.exports = prerelease
+
+
+/***/ }),
+
+/***/ 2173:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compare = __nccwpck_require__(8469)
+const rcompare = (a, b, loose) => compare(b, a, loose)
+module.exports = rcompare
+
+
+/***/ }),
+
+/***/ 7192:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compareBuild = __nccwpck_require__(7648)
+const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose))
+module.exports = rsort
+
+
+/***/ }),
+
+/***/ 8011:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const Range = __nccwpck_require__(6782)
+const satisfies = (version, range, options) => {
+ try {
+ range = new Range(range, options)
+ } catch (er) {
+ return false
+ }
+ return range.test(version)
+}
+module.exports = satisfies
+
+
+/***/ }),
+
+/***/ 9872:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const compareBuild = __nccwpck_require__(7648)
+const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose))
+module.exports = sort
+
+
+/***/ }),
+
+/***/ 6114:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const parse = __nccwpck_require__(6353)
+const constants = __nccwpck_require__(5101)
+const SemVer = __nccwpck_require__(7163)
+
+const truncate = (version, truncation, options) => {
+ if (!constants.RELEASE_TYPES.includes(truncation)) {
+ return null
+ }
+
+ const clonedVersion = cloneInputVersion(version, options)
+ return clonedVersion && doTruncation(clonedVersion, truncation)
+}
+
+const cloneInputVersion = (version, options) => {
+ const versionStringToParse = (
+ version instanceof SemVer ? version.version : version
+ )
+
+ return parse(versionStringToParse, options)
+}
+
+const doTruncation = (version, truncation) => {
+ if (isPrerelease(truncation)) {
+ return version.version
+ }
+
+ version.prerelease = []
+
+ switch (truncation) {
+ case 'major':
+ version.minor = 0
+ version.patch = 0
+ break
+ case 'minor':
+ version.patch = 0
+ break
+ }
+
+ return version.format()
+}
+
+const isPrerelease = (type) => {
+ return type.startsWith('pre')
+}
+
+module.exports = truncate
+
+
+/***/ }),
+
+/***/ 8780:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const parse = __nccwpck_require__(6353)
+const valid = (version, options) => {
+ const v = parse(version, options)
+ return v ? v.version : null
+}
+module.exports = valid
+
+
+/***/ }),
+
+/***/ 2088:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+// just pre-load all the stuff that index.js lazily exports
+const internalRe = __nccwpck_require__(5471)
+const constants = __nccwpck_require__(5101)
+const SemVer = __nccwpck_require__(7163)
+const identifiers = __nccwpck_require__(3348)
+const parse = __nccwpck_require__(6353)
+const valid = __nccwpck_require__(8780)
+const clean = __nccwpck_require__(1799)
+const inc = __nccwpck_require__(2338)
+const diff = __nccwpck_require__(711)
+const major = __nccwpck_require__(8511)
+const minor = __nccwpck_require__(2603)
+const patch = __nccwpck_require__(8756)
+const prerelease = __nccwpck_require__(5714)
+const compare = __nccwpck_require__(8469)
+const rcompare = __nccwpck_require__(2173)
+const compareLoose = __nccwpck_require__(6874)
+const compareBuild = __nccwpck_require__(7648)
+const sort = __nccwpck_require__(9872)
+const rsort = __nccwpck_require__(7192)
+const gt = __nccwpck_require__(6599)
+const lt = __nccwpck_require__(3872)
+const eq = __nccwpck_require__(5082)
+const neq = __nccwpck_require__(4974)
+const gte = __nccwpck_require__(1236)
+const lte = __nccwpck_require__(6717)
+const cmp = __nccwpck_require__(8646)
+const coerce = __nccwpck_require__(5385)
+const truncate = __nccwpck_require__(6114)
+const Comparator = __nccwpck_require__(9379)
+const Range = __nccwpck_require__(6782)
+const satisfies = __nccwpck_require__(8011)
+const toComparators = __nccwpck_require__(4750)
+const maxSatisfying = __nccwpck_require__(5574)
+const minSatisfying = __nccwpck_require__(8595)
+const minVersion = __nccwpck_require__(1866)
+const validRange = __nccwpck_require__(4737)
+const outside = __nccwpck_require__(280)
+const gtr = __nccwpck_require__(2276)
+const ltr = __nccwpck_require__(5213)
+const intersects = __nccwpck_require__(3465)
+const simplifyRange = __nccwpck_require__(2028)
+const subset = __nccwpck_require__(1489)
+module.exports = {
+ parse,
+ valid,
+ clean,
+ inc,
+ diff,
+ major,
+ minor,
+ patch,
+ prerelease,
+ compare,
+ rcompare,
+ compareLoose,
+ compareBuild,
+ sort,
+ rsort,
+ gt,
+ lt,
+ eq,
+ neq,
+ gte,
+ lte,
+ cmp,
+ coerce,
+ truncate,
+ Comparator,
+ Range,
+ satisfies,
+ toComparators,
+ maxSatisfying,
+ minSatisfying,
+ minVersion,
+ validRange,
+ outside,
+ gtr,
+ ltr,
+ intersects,
+ simplifyRange,
+ subset,
+ SemVer,
+ re: internalRe.re,
+ src: internalRe.src,
+ tokens: internalRe.t,
+ SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION,
+ RELEASE_TYPES: constants.RELEASE_TYPES,
+ compareIdentifiers: identifiers.compareIdentifiers,
+ rcompareIdentifiers: identifiers.rcompareIdentifiers,
+}
+
+
+/***/ }),
+
+/***/ 5101:
+/***/ ((module) => {
+
+
+
+// Note: this is the semver.org version of the spec that it implements
+// Not necessarily the package version of this code.
+const SEMVER_SPEC_VERSION = '2.0.0'
+
+const MAX_LENGTH = 256
+const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
+/* istanbul ignore next */ 9007199254740991
+
+// Max safe segment length for coercion.
+const MAX_SAFE_COMPONENT_LENGTH = 16
+
+// Max safe length for a build identifier. The max length minus 6 characters for
+// the shortest version with a build 0.0.0+BUILD.
+const MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6
+
+const RELEASE_TYPES = [
+ 'major',
+ 'premajor',
+ 'minor',
+ 'preminor',
+ 'patch',
+ 'prepatch',
+ 'prerelease',
+]
+
+module.exports = {
+ MAX_LENGTH,
+ MAX_SAFE_COMPONENT_LENGTH,
+ MAX_SAFE_BUILD_LENGTH,
+ MAX_SAFE_INTEGER,
+ RELEASE_TYPES,
+ SEMVER_SPEC_VERSION,
+ FLAG_INCLUDE_PRERELEASE: 0b001,
+ FLAG_LOOSE: 0b010,
+}
+
+
+/***/ }),
+
+/***/ 1159:
+/***/ ((module) => {
+
+
+
+const debug = (
+ typeof process === 'object' &&
+ process.env &&
+ process.env.NODE_DEBUG &&
+ /\bsemver\b/i.test(process.env.NODE_DEBUG)
+) ? (...args) => console.error('SEMVER', ...args)
+ : () => {}
+
+module.exports = debug
+
+
+/***/ }),
+
+/***/ 3348:
+/***/ ((module) => {
+
+
+
+const numeric = /^[0-9]+$/
+const compareIdentifiers = (a, b) => {
+ if (typeof a === 'number' && typeof b === 'number') {
+ return a === b ? 0 : a < b ? -1 : 1
+ }
+
+ const anum = numeric.test(a)
+ const bnum = numeric.test(b)
+
+ if (anum && bnum) {
+ a = +a
+ b = +b
+ }
+
+ return a === b ? 0
+ : (anum && !bnum) ? -1
+ : (bnum && !anum) ? 1
+ : a < b ? -1
+ : 1
+}
+
+const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a)
+
+module.exports = {
+ compareIdentifiers,
+ rcompareIdentifiers,
+}
+
+
+/***/ }),
+
+/***/ 1383:
+/***/ ((module) => {
+
+
+
+class LRUCache {
+ constructor () {
+ this.max = 1000
+ this.map = new Map()
+ }
+
+ get (key) {
+ const value = this.map.get(key)
+ if (value === undefined) {
+ return undefined
+ } else {
+ // Remove the key from the map and add it to the end
+ this.map.delete(key)
+ this.map.set(key, value)
+ return value
+ }
+ }
+
+ delete (key) {
+ return this.map.delete(key)
+ }
+
+ set (key, value) {
+ const deleted = this.delete(key)
+
+ if (!deleted && value !== undefined) {
+ // If cache is full, delete the least recently used item
+ if (this.map.size >= this.max) {
+ const firstKey = this.map.keys().next().value
+ this.delete(firstKey)
+ }
+
+ this.map.set(key, value)
+ }
+
+ return this
+ }
+}
+
+module.exports = LRUCache
+
+
+/***/ }),
+
+/***/ 356:
+/***/ ((module) => {
+
+
+
+// parse out just the options we care about
+const looseOption = Object.freeze({ loose: true })
+const emptyOpts = Object.freeze({ })
+const parseOptions = options => {
+ if (!options) {
+ return emptyOpts
+ }
+
+ if (typeof options !== 'object') {
+ return looseOption
+ }
+
+ return options
+}
+module.exports = parseOptions
+
+
+/***/ }),
+
+/***/ 5471:
+/***/ ((module, exports, __nccwpck_require__) => {
+
+
+
+const {
+ MAX_SAFE_COMPONENT_LENGTH,
+ MAX_SAFE_BUILD_LENGTH,
+ MAX_LENGTH,
+} = __nccwpck_require__(5101)
+const debug = __nccwpck_require__(1159)
+exports = module.exports = {}
+
+// The actual regexps go on exports.re
+const re = exports.re = []
+const safeRe = exports.safeRe = []
+const src = exports.src = []
+const safeSrc = exports.safeSrc = []
+const t = exports.t = {}
+let R = 0
+
+const LETTERDASHNUMBER = '[a-zA-Z0-9-]'
+
+// Replace some greedy regex tokens to prevent regex dos issues. These regex are
+// used internally via the safeRe object since all inputs in this library get
+// normalized first to trim and collapse all extra whitespace. The original
+// regexes are exported for userland consumption and lower level usage. A
+// future breaking change could export the safer regex only with a note that
+// all input should have extra whitespace removed.
+const safeRegexReplacements = [
+ ['\\s', 1],
+ ['\\d', MAX_LENGTH],
+ [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],
+]
+
+const makeSafeRegex = (value) => {
+ for (const [token, max] of safeRegexReplacements) {
+ value = value
+ .split(`${token}*`).join(`${token}{0,${max}}`)
+ .split(`${token}+`).join(`${token}{1,${max}}`)
+ }
+ return value
+}
+
+const createToken = (name, value, isGlobal) => {
+ const safe = makeSafeRegex(value)
+ const index = R++
+ debug(name, index, value)
+ t[name] = index
+ src[index] = value
+ safeSrc[index] = safe
+ re[index] = new RegExp(value, isGlobal ? 'g' : undefined)
+ safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined)
+}
+
+// The following Regular Expressions can be used for tokenizing,
+// validating, and parsing SemVer version strings.
+
+// ## Numeric Identifier
+// A single `0`, or a non-zero digit followed by zero or more digits.
+
+createToken('NUMERICIDENTIFIER', '0|[1-9]\\d*')
+createToken('NUMERICIDENTIFIERLOOSE', '\\d+')
+
+// ## Non-numeric Identifier
+// Zero or more digits, followed by a letter or hyphen, and then zero or
+// more letters, digits, or hyphens.
+
+createToken('NONNUMERICIDENTIFIER', `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`)
+
+// ## Main Version
+// Three dot-separated numeric identifiers.
+
+createToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\.` +
+ `(${src[t.NUMERICIDENTIFIER]})\\.` +
+ `(${src[t.NUMERICIDENTIFIER]})`)
+
+createToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` +
+ `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` +
+ `(${src[t.NUMERICIDENTIFIERLOOSE]})`)
+
+// ## Pre-release Version Identifier
+// A numeric identifier, or a non-numeric identifier.
+// Non-numeric identifiers include numeric identifiers but can be longer.
+// Therefore non-numeric identifiers must go first.
+
+createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NONNUMERICIDENTIFIER]
+}|${src[t.NUMERICIDENTIFIER]})`)
+
+createToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NONNUMERICIDENTIFIER]
+}|${src[t.NUMERICIDENTIFIERLOOSE]})`)
+
+// ## Pre-release Version
+// Hyphen, followed by one or more dot-separated pre-release version
+// identifiers.
+
+createToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER]
+}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`)
+
+createToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]
+}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`)
+
+// ## Build Metadata Identifier
+// Any combination of digits, letters, or hyphens.
+
+createToken('BUILDIDENTIFIER', `${LETTERDASHNUMBER}+`)
+
+// ## Build Metadata
+// Plus sign, followed by one or more period-separated build metadata
+// identifiers.
+
+createToken('BUILD', `(?:\\+(${src[t.BUILDIDENTIFIER]
+}(?:\\.${src[t.BUILDIDENTIFIER]})*))`)
+
+// ## Full Version String
+// A main version, followed optionally by a pre-release version and
+// build metadata.
+
+// Note that the only major, minor, patch, and pre-release sections of
+// the version string are capturing groups. The build metadata is not a
+// capturing group, because it should not ever be used in version
+// comparison.
+
+createToken('FULLPLAIN', `v?${src[t.MAINVERSION]
+}${src[t.PRERELEASE]}?${
+ src[t.BUILD]}?`)
+
+createToken('FULL', `^${src[t.FULLPLAIN]}$`)
+
+// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.
+// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty
+// common in the npm registry.
+createToken('LOOSEPLAIN', `[v=\\s]*${src[t.MAINVERSIONLOOSE]
+}${src[t.PRERELEASELOOSE]}?${
+ src[t.BUILD]}?`)
+
+createToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`)
+
+createToken('GTLT', '((?:<|>)?=?)')
+
+// Something like "2.*" or "1.2.x".
+// Note that "x.x" is a valid xRange identifier, meaning "any version"
+// Only the first item is strictly required.
+createToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`)
+createToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`)
+
+createToken('XRANGEPLAIN', `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})` +
+ `(?:\\.(${src[t.XRANGEIDENTIFIER]})` +
+ `(?:\\.(${src[t.XRANGEIDENTIFIER]})` +
+ `(?:${src[t.PRERELEASE]})?${
+ src[t.BUILD]}?` +
+ `)?)?`)
+
+createToken('XRANGEPLAINLOOSE', `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` +
+ `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +
+ `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +
+ `(?:${src[t.PRERELEASELOOSE]})?${
+ src[t.BUILD]}?` +
+ `)?)?`)
+
+createToken('XRANGE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`)
+createToken('XRANGELOOSE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`)
+
+// Coercion.
+// Extract anything that could conceivably be a part of a valid semver
+createToken('COERCEPLAIN', `${'(^|[^\\d])' +
+ '(\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` +
+ `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +
+ `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`)
+createToken('COERCE', `${src[t.COERCEPLAIN]}(?:$|[^\\d])`)
+createToken('COERCEFULL', src[t.COERCEPLAIN] +
+ `(?:${src[t.PRERELEASE]})?` +
+ `(?:${src[t.BUILD]})?` +
+ `(?:$|[^\\d])`)
+createToken('COERCERTL', src[t.COERCE], true)
+createToken('COERCERTLFULL', src[t.COERCEFULL], true)
+
+// Tilde ranges.
+// Meaning is "reasonably at or greater than"
+createToken('LONETILDE', '(?:~>?)')
+
+createToken('TILDETRIM', `(\\s*)${src[t.LONETILDE]}\\s+`, true)
+exports.tildeTrimReplace = '$1~'
+
+createToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`)
+createToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`)
+
+// Caret ranges.
+// Meaning is "at least and backwards compatible with"
+createToken('LONECARET', '(?:\\^)')
+
+createToken('CARETTRIM', `(\\s*)${src[t.LONECARET]}\\s+`, true)
+exports.caretTrimReplace = '$1^'
+
+createToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`)
+createToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`)
+
+// A simple gt/lt/eq thing, or just "" to indicate "any version"
+createToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`)
+createToken('COMPARATOR', `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`)
+
+// An expression to strip any whitespace between the gtlt and the thing
+// it modifies, so that `> 1.2.3` ==> `>1.2.3`
+createToken('COMPARATORTRIM', `(\\s*)${src[t.GTLT]
+}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true)
+exports.comparatorTrimReplace = '$1$2$3'
+
+// Something like `1.2.3 - 1.2.4`
+// Note that these all use the loose form, because they'll be
+// checked against either the strict or loose comparator form
+// later.
+createToken('HYPHENRANGE', `^\\s*(${src[t.XRANGEPLAIN]})` +
+ `\\s+-\\s+` +
+ `(${src[t.XRANGEPLAIN]})` +
+ `\\s*$`)
+
+createToken('HYPHENRANGELOOSE', `^\\s*(${src[t.XRANGEPLAINLOOSE]})` +
+ `\\s+-\\s+` +
+ `(${src[t.XRANGEPLAINLOOSE]})` +
+ `\\s*$`)
+
+// Star ranges basically just allow anything at all.
+createToken('STAR', '(<|>)?=?\\s*\\*')
+// >=0.0.0 is like a star
+createToken('GTE0', '^\\s*>=\\s*0\\.0\\.0\\s*$')
+createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$')
+
+
+/***/ }),
+
+/***/ 2276:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+// Determine if version is greater than all the versions possible in the range.
+const outside = __nccwpck_require__(280)
+const gtr = (version, range, options) => outside(version, range, '>', options)
+module.exports = gtr
+
+
+/***/ }),
+
+/***/ 3465:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const Range = __nccwpck_require__(6782)
+const intersects = (r1, r2, options) => {
+ r1 = new Range(r1, options)
+ r2 = new Range(r2, options)
+ return r1.intersects(r2, options)
+}
+module.exports = intersects
+
+
+/***/ }),
+
+/***/ 5213:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const outside = __nccwpck_require__(280)
+// Determine if version is less than all the versions possible in the range
+const ltr = (version, range, options) => outside(version, range, '<', options)
+module.exports = ltr
+
+
+/***/ }),
+
+/***/ 5574:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const Range = __nccwpck_require__(6782)
+
+const maxSatisfying = (versions, range, options) => {
+ let max = null
+ let maxSV = null
+ let rangeObj = null
+ try {
+ rangeObj = new Range(range, options)
+ } catch (er) {
+ return null
+ }
+ versions.forEach((v) => {
+ if (rangeObj.test(v)) {
+ // satisfies(v, range, options)
+ if (!max || maxSV.compare(v) === -1) {
+ // compare(max, v, true)
+ max = v
+ maxSV = new SemVer(max, options)
+ }
+ }
+ })
+ return max
+}
+module.exports = maxSatisfying
+
+
+/***/ }),
+
+/***/ 8595:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const Range = __nccwpck_require__(6782)
+const minSatisfying = (versions, range, options) => {
+ let min = null
+ let minSV = null
+ let rangeObj = null
+ try {
+ rangeObj = new Range(range, options)
+ } catch (er) {
+ return null
+ }
+ versions.forEach((v) => {
+ if (rangeObj.test(v)) {
+ // satisfies(v, range, options)
+ if (!min || minSV.compare(v) === 1) {
+ // compare(min, v, true)
+ min = v
+ minSV = new SemVer(min, options)
+ }
+ }
+ })
+ return min
+}
+module.exports = minSatisfying
+
+
+/***/ }),
+
+/***/ 1866:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const Range = __nccwpck_require__(6782)
+const gt = __nccwpck_require__(6599)
+
+const minVersion = (range, loose) => {
+ range = new Range(range, loose)
+
+ let minver = new SemVer('0.0.0')
+ if (range.test(minver)) {
+ return minver
+ }
+
+ minver = new SemVer('0.0.0-0')
+ if (range.test(minver)) {
+ return minver
+ }
+
+ minver = null
+ for (let i = 0; i < range.set.length; ++i) {
+ const comparators = range.set[i]
+
+ let setMin = null
+ comparators.forEach((comparator) => {
+ // Clone to avoid manipulating the comparator's semver object.
+ const compver = new SemVer(comparator.semver.version)
+ switch (comparator.operator) {
+ case '>':
+ if (compver.prerelease.length === 0) {
+ compver.patch++
+ } else {
+ compver.prerelease.push(0)
+ }
+ compver.raw = compver.format()
+ /* fallthrough */
+ case '':
+ case '>=':
+ if (!setMin || gt(compver, setMin)) {
+ setMin = compver
+ }
+ break
+ case '<':
+ case '<=':
+ /* Ignore maximum versions */
+ break
+ /* istanbul ignore next */
+ default:
+ throw new Error(`Unexpected operation: ${comparator.operator}`)
+ }
+ })
+ if (setMin && (!minver || gt(minver, setMin))) {
+ minver = setMin
+ }
+ }
+
+ if (minver && range.test(minver)) {
+ return minver
+ }
+
+ return null
+}
+module.exports = minVersion
+
+
+/***/ }),
+
+/***/ 280:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const SemVer = __nccwpck_require__(7163)
+const Comparator = __nccwpck_require__(9379)
+const { ANY } = Comparator
+const Range = __nccwpck_require__(6782)
+const satisfies = __nccwpck_require__(8011)
+const gt = __nccwpck_require__(6599)
+const lt = __nccwpck_require__(3872)
+const lte = __nccwpck_require__(6717)
+const gte = __nccwpck_require__(1236)
+
+const outside = (version, range, hilo, options) => {
+ version = new SemVer(version, options)
+ range = new Range(range, options)
+
+ let gtfn, ltefn, ltfn, comp, ecomp
+ switch (hilo) {
+ case '>':
+ gtfn = gt
+ ltefn = lte
+ ltfn = lt
+ comp = '>'
+ ecomp = '>='
+ break
+ case '<':
+ gtfn = lt
+ ltefn = gte
+ ltfn = gt
+ comp = '<'
+ ecomp = '<='
+ break
+ default:
+ throw new TypeError('Must provide a hilo val of "<" or ">"')
+ }
+
+ // If it satisfies the range it is not outside
+ if (satisfies(version, range, options)) {
+ return false
+ }
+
+ // From now on, variable terms are as if we're in "gtr" mode.
+ // but note that everything is flipped for the "ltr" function.
+
+ for (let i = 0; i < range.set.length; ++i) {
+ const comparators = range.set[i]
+
+ let high = null
+ let low = null
+
+ comparators.forEach((comparator) => {
+ if (comparator.semver === ANY) {
+ comparator = new Comparator('>=0.0.0')
+ }
+ high = high || comparator
+ low = low || comparator
+ if (gtfn(comparator.semver, high.semver, options)) {
+ high = comparator
+ } else if (ltfn(comparator.semver, low.semver, options)) {
+ low = comparator
+ }
+ })
+
+ // If the edge version comparator has a operator then our version
+ // isn't outside it
+ if (high.operator === comp || high.operator === ecomp) {
+ return false
+ }
+
+ // If the lowest version comparator has an operator and our version
+ // is less than it then it isn't higher than the range
+ if ((!low.operator || low.operator === comp) &&
+ ltefn(version, low.semver)) {
+ return false
+ } else if (low.operator === ecomp && ltfn(version, low.semver)) {
+ return false
+ }
+ }
+ return true
+}
+
+module.exports = outside
+
+
+/***/ }),
+
+/***/ 2028:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+// given a set of versions and a range, create a "simplified" range
+// that includes the same versions that the original range does
+// If the original range is shorter than the simplified one, return that.
+const satisfies = __nccwpck_require__(8011)
+const compare = __nccwpck_require__(8469)
+module.exports = (versions, range, options) => {
+ const set = []
+ let first = null
+ let prev = null
+ const v = versions.sort((a, b) => compare(a, b, options))
+ for (const version of v) {
+ const included = satisfies(version, range, options)
+ if (included) {
+ prev = version
+ if (!first) {
+ first = version
+ }
+ } else {
+ if (prev) {
+ set.push([first, prev])
+ }
+ prev = null
+ first = null
+ }
+ }
+ if (first) {
+ set.push([first, null])
+ }
+
+ const ranges = []
+ for (const [min, max] of set) {
+ if (min === max) {
+ ranges.push(min)
+ } else if (!max && min === v[0]) {
+ ranges.push('*')
+ } else if (!max) {
+ ranges.push(`>=${min}`)
+ } else if (min === v[0]) {
+ ranges.push(`<=${max}`)
+ } else {
+ ranges.push(`${min} - ${max}`)
+ }
+ }
+ const simplified = ranges.join(' || ')
+ const original = typeof range.raw === 'string' ? range.raw : String(range)
+ return simplified.length < original.length ? simplified : range
+}
+
+
+/***/ }),
+
+/***/ 1489:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const Range = __nccwpck_require__(6782)
+const Comparator = __nccwpck_require__(9379)
+const { ANY } = Comparator
+const satisfies = __nccwpck_require__(8011)
+const compare = __nccwpck_require__(8469)
+
+// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff:
+// - Every simple range `r1, r2, ...` is a null set, OR
+// - Every simple range `r1, r2, ...` which is not a null set is a subset of
+// some `R1, R2, ...`
+//
+// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff:
+// - If c is only the ANY comparator
+// - If C is only the ANY comparator, return true
+// - Else if in prerelease mode, return false
+// - else replace c with `[>=0.0.0]`
+// - If C is only the ANY comparator
+// - if in prerelease mode, return true
+// - else replace C with `[>=0.0.0]`
+// - Let EQ be the set of = comparators in c
+// - If EQ is more than one, return true (null set)
+// - Let GT be the highest > or >= comparator in c
+// - Let LT be the lowest < or <= comparator in c
+// - If GT and LT, and GT.semver > LT.semver, return true (null set)
+// - If any C is a = range, and GT or LT are set, return false
+// - If EQ
+// - If GT, and EQ does not satisfy GT, return true (null set)
+// - If LT, and EQ does not satisfy LT, return true (null set)
+// - If EQ satisfies every C, return true
+// - Else return false
+// - If GT
+// - If GT.semver is lower than any > or >= comp in C, return false
+// - If GT is >=, and GT.semver does not satisfy every C, return false
+// - If GT.semver has a prerelease, and not in prerelease mode
+// - If no C has a prerelease and the GT.semver tuple, return false
+// - If LT
+// - If LT.semver is greater than any < or <= comp in C, return false
+// - If LT is <=, and LT.semver does not satisfy every C, return false
+// - If LT.semver has a prerelease, and not in prerelease mode
+// - If no C has a prerelease and the LT.semver tuple, return false
+// - Else return true
+
+const subset = (sub, dom, options = {}) => {
+ if (sub === dom) {
+ return true
+ }
+
+ sub = new Range(sub, options)
+ dom = new Range(dom, options)
+ let sawNonNull = false
+
+ OUTER: for (const simpleSub of sub.set) {
+ for (const simpleDom of dom.set) {
+ const isSub = simpleSubset(simpleSub, simpleDom, options)
+ sawNonNull = sawNonNull || isSub !== null
+ if (isSub) {
+ continue OUTER
+ }
+ }
+ // the null set is a subset of everything, but null simple ranges in
+ // a complex range should be ignored. so if we saw a non-null range,
+ // then we know this isn't a subset, but if EVERY simple range was null,
+ // then it is a subset.
+ if (sawNonNull) {
+ return false
+ }
+ }
+ return true
+}
+
+const minimumVersionWithPreRelease = [new Comparator('>=0.0.0-0')]
+const minimumVersion = [new Comparator('>=0.0.0')]
+
+const simpleSubset = (sub, dom, options) => {
+ if (sub === dom) {
+ return true
+ }
+
+ if (sub.length === 1 && sub[0].semver === ANY) {
+ if (dom.length === 1 && dom[0].semver === ANY) {
+ return true
+ } else if (options.includePrerelease) {
+ sub = minimumVersionWithPreRelease
+ } else {
+ sub = minimumVersion
+ }
+ }
+
+ if (dom.length === 1 && dom[0].semver === ANY) {
+ if (options.includePrerelease) {
+ return true
+ } else {
+ dom = minimumVersion
+ }
+ }
+
+ const eqSet = new Set()
+ let gt, lt
+ for (const c of sub) {
+ if (c.operator === '>' || c.operator === '>=') {
+ gt = higherGT(gt, c, options)
+ } else if (c.operator === '<' || c.operator === '<=') {
+ lt = lowerLT(lt, c, options)
+ } else {
+ eqSet.add(c.semver)
+ }
+ }
+
+ if (eqSet.size > 1) {
+ return null
+ }
+
+ let gtltComp
+ if (gt && lt) {
+ gtltComp = compare(gt.semver, lt.semver, options)
+ if (gtltComp > 0) {
+ return null
+ } else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) {
+ return null
+ }
+ }
+
+ // will iterate one or zero times
+ for (const eq of eqSet) {
+ if (gt && !satisfies(eq, String(gt), options)) {
+ return null
+ }
+
+ if (lt && !satisfies(eq, String(lt), options)) {
+ return null
+ }
+
+ for (const c of dom) {
+ if (!satisfies(eq, String(c), options)) {
+ return false
+ }
+ }
+
+ return true
+ }
+
+ let higher, lower
+ let hasDomLT, hasDomGT
+ // if the subset has a prerelease, we need a comparator in the superset
+ // with the same tuple and a prerelease, or it's not a subset
+ let needDomLTPre = lt &&
+ !options.includePrerelease &&
+ lt.semver.prerelease.length ? lt.semver : false
+ let needDomGTPre = gt &&
+ !options.includePrerelease &&
+ gt.semver.prerelease.length ? gt.semver : false
+ // exception: <1.2.3-0 is the same as <1.2.3
+ if (needDomLTPre && needDomLTPre.prerelease.length === 1 &&
+ lt.operator === '<' && needDomLTPre.prerelease[0] === 0) {
+ needDomLTPre = false
+ }
+
+ for (const c of dom) {
+ hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>='
+ hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<='
+ if (gt) {
+ if (needDomGTPre) {
+ if (c.semver.prerelease && c.semver.prerelease.length &&
+ c.semver.major === needDomGTPre.major &&
+ c.semver.minor === needDomGTPre.minor &&
+ c.semver.patch === needDomGTPre.patch) {
+ needDomGTPre = false
+ }
+ }
+ if (c.operator === '>' || c.operator === '>=') {
+ higher = higherGT(gt, c, options)
+ if (higher === c && higher !== gt) {
+ return false
+ }
+ } else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) {
+ return false
+ }
+ }
+ if (lt) {
+ if (needDomLTPre) {
+ if (c.semver.prerelease && c.semver.prerelease.length &&
+ c.semver.major === needDomLTPre.major &&
+ c.semver.minor === needDomLTPre.minor &&
+ c.semver.patch === needDomLTPre.patch) {
+ needDomLTPre = false
+ }
+ }
+ if (c.operator === '<' || c.operator === '<=') {
+ lower = lowerLT(lt, c, options)
+ if (lower === c && lower !== lt) {
+ return false
+ }
+ } else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) {
+ return false
+ }
+ }
+ if (!c.operator && (lt || gt) && gtltComp !== 0) {
+ return false
+ }
+ }
+
+ // if there was a < or >, and nothing in the dom, then must be false
+ // UNLESS it was limited by another range in the other direction.
+ // Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0
+ if (gt && hasDomLT && !lt && gtltComp !== 0) {
+ return false
+ }
+
+ if (lt && hasDomGT && !gt && gtltComp !== 0) {
+ return false
+ }
+
+ // we needed a prerelease range in a specific tuple, but didn't get one
+ // then this isn't a subset. eg >=1.2.3-pre is not a subset of >=1.0.0,
+ // because it includes prereleases in the 1.2.3 tuple
+ if (needDomGTPre || needDomLTPre) {
+ return false
+ }
+
+ return true
+}
+
+// >=1.2.3 is lower than >1.2.3
+const higherGT = (a, b, options) => {
+ if (!a) {
+ return b
+ }
+ const comp = compare(a.semver, b.semver, options)
+ return comp > 0 ? a
+ : comp < 0 ? b
+ : b.operator === '>' && a.operator === '>=' ? b
+ : a
+}
+
+// <=1.2.3 is higher than <1.2.3
+const lowerLT = (a, b, options) => {
+ if (!a) {
+ return b
+ }
+ const comp = compare(a.semver, b.semver, options)
+ return comp < 0 ? a
+ : comp > 0 ? b
+ : b.operator === '<' && a.operator === '<=' ? b
+ : a
+}
+
+module.exports = subset
+
+
+/***/ }),
+
+/***/ 4750:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const Range = __nccwpck_require__(6782)
+
+// Mostly just for testing and legacy API reasons
+const toComparators = (range, options) =>
+ new Range(range, options).set
+ .map(comp => comp.map(c => c.value).join(' ').trim().split(' '))
+
+module.exports = toComparators
+
+
+/***/ }),
+
+/***/ 4737:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const Range = __nccwpck_require__(6782)
+const validRange = (range, options) => {
+ try {
+ // Return '*' instead of '' so that truthiness works.
+ // This will throw if it's invalid anyway
+ return new Range(range, options).range || '*'
+ } catch (er) {
+ return null
+ }
+}
+module.exports = validRange
+
+
+/***/ }),
+
+/***/ 770:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+module.exports = __nccwpck_require__(218);
+
+
+/***/ }),
+
+/***/ 218:
+/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
+
+var __webpack_unused_export__;
+
+
+var net = __nccwpck_require__(9278);
+var tls = __nccwpck_require__(4756);
+var http = __nccwpck_require__(8611);
+var https = __nccwpck_require__(5692);
+var events = __nccwpck_require__(4434);
+var assert = __nccwpck_require__(2613);
+var util = __nccwpck_require__(9023);
+
+
+exports.httpOverHttp = httpOverHttp;
+exports.httpsOverHttp = httpsOverHttp;
+exports.httpOverHttps = httpOverHttps;
+exports.httpsOverHttps = httpsOverHttps;
+
+
+function httpOverHttp(options) {
+ var agent = new TunnelingAgent(options);
+ agent.request = http.request;
+ return agent;
+}
+
+function httpsOverHttp(options) {
+ var agent = new TunnelingAgent(options);
+ agent.request = http.request;
+ agent.createSocket = createSecureSocket;
+ agent.defaultPort = 443;
+ return agent;
+}
+
+function httpOverHttps(options) {
+ var agent = new TunnelingAgent(options);
+ agent.request = https.request;
+ return agent;
+}
+
+function httpsOverHttps(options) {
+ var agent = new TunnelingAgent(options);
+ agent.request = https.request;
+ agent.createSocket = createSecureSocket;
+ agent.defaultPort = 443;
+ return agent;
+}
+
+
+function TunnelingAgent(options) {
+ var self = this;
+ self.options = options || {};
+ self.proxyOptions = self.options.proxy || {};
+ self.maxSockets = self.options.maxSockets || http.Agent.defaultMaxSockets;
+ self.requests = [];
+ self.sockets = [];
+
+ self.on('free', function onFree(socket, host, port, localAddress) {
+ var options = toOptions(host, port, localAddress);
+ for (var i = 0, len = self.requests.length; i < len; ++i) {
+ var pending = self.requests[i];
+ if (pending.host === options.host && pending.port === options.port) {
+ // Detect the request to connect same origin server,
+ // reuse the connection.
+ self.requests.splice(i, 1);
+ pending.request.onSocket(socket);
+ return;
+ }
+ }
+ socket.destroy();
+ self.removeSocket(socket);
+ });
+}
+util.inherits(TunnelingAgent, events.EventEmitter);
+
+TunnelingAgent.prototype.addRequest = function addRequest(req, host, port, localAddress) {
+ var self = this;
+ var options = mergeOptions({request: req}, self.options, toOptions(host, port, localAddress));
+
+ if (self.sockets.length >= this.maxSockets) {
+ // We are over limit so we'll add it to the queue.
+ self.requests.push(options);
+ return;
+ }
+
+ // If we are under maxSockets create a new one.
+ self.createSocket(options, function(socket) {
+ socket.on('free', onFree);
+ socket.on('close', onCloseOrRemove);
+ socket.on('agentRemove', onCloseOrRemove);
+ req.onSocket(socket);
+
+ function onFree() {
+ self.emit('free', socket, options);
+ }
+
+ function onCloseOrRemove(err) {
+ self.removeSocket(socket);
+ socket.removeListener('free', onFree);
+ socket.removeListener('close', onCloseOrRemove);
+ socket.removeListener('agentRemove', onCloseOrRemove);
+ }
+ });
+};
+
+TunnelingAgent.prototype.createSocket = function createSocket(options, cb) {
+ var self = this;
+ var placeholder = {};
+ self.sockets.push(placeholder);
+
+ var connectOptions = mergeOptions({}, self.proxyOptions, {
+ method: 'CONNECT',
+ path: options.host + ':' + options.port,
+ agent: false,
+ headers: {
+ host: options.host + ':' + options.port
+ }
+ });
+ if (options.localAddress) {
+ connectOptions.localAddress = options.localAddress;
+ }
+ if (connectOptions.proxyAuth) {
+ connectOptions.headers = connectOptions.headers || {};
+ connectOptions.headers['Proxy-Authorization'] = 'Basic ' +
+ new Buffer(connectOptions.proxyAuth).toString('base64');
+ }
+
+ debug('making CONNECT request');
+ var connectReq = self.request(connectOptions);
+ connectReq.useChunkedEncodingByDefault = false; // for v0.6
+ connectReq.once('response', onResponse); // for v0.6
+ connectReq.once('upgrade', onUpgrade); // for v0.6
+ connectReq.once('connect', onConnect); // for v0.7 or later
+ connectReq.once('error', onError);
+ connectReq.end();
+
+ function onResponse(res) {
+ // Very hacky. This is necessary to avoid http-parser leaks.
+ res.upgrade = true;
+ }
+
+ function onUpgrade(res, socket, head) {
+ // Hacky.
+ process.nextTick(function() {
+ onConnect(res, socket, head);
+ });
+ }
+
+ function onConnect(res, socket, head) {
+ connectReq.removeAllListeners();
+ socket.removeAllListeners();
+
+ if (res.statusCode !== 200) {
+ debug('tunneling socket could not be established, statusCode=%d',
+ res.statusCode);
+ socket.destroy();
+ var error = new Error('tunneling socket could not be established, ' +
+ 'statusCode=' + res.statusCode);
+ error.code = 'ECONNRESET';
+ options.request.emit('error', error);
+ self.removeSocket(placeholder);
+ return;
+ }
+ if (head.length > 0) {
+ debug('got illegal response body from proxy');
+ socket.destroy();
+ var error = new Error('got illegal response body from proxy');
+ error.code = 'ECONNRESET';
+ options.request.emit('error', error);
+ self.removeSocket(placeholder);
+ return;
+ }
+ debug('tunneling connection has established');
+ self.sockets[self.sockets.indexOf(placeholder)] = socket;
+ return cb(socket);
+ }
+
+ function onError(cause) {
+ connectReq.removeAllListeners();
+
+ debug('tunneling socket could not be established, cause=%s\n',
+ cause.message, cause.stack);
+ var error = new Error('tunneling socket could not be established, ' +
+ 'cause=' + cause.message);
+ error.code = 'ECONNRESET';
+ options.request.emit('error', error);
+ self.removeSocket(placeholder);
+ }
+};
+
+TunnelingAgent.prototype.removeSocket = function removeSocket(socket) {
+ var pos = this.sockets.indexOf(socket)
+ if (pos === -1) {
+ return;
+ }
+ this.sockets.splice(pos, 1);
+
+ var pending = this.requests.shift();
+ if (pending) {
+ // If we have pending requests and a socket gets closed a new one
+ // needs to be created to take over in the pool for the one that closed.
+ this.createSocket(pending, function(socket) {
+ pending.request.onSocket(socket);
+ });
+ }
+};
+
+function createSecureSocket(options, cb) {
+ var self = this;
+ TunnelingAgent.prototype.createSocket.call(self, options, function(socket) {
+ var hostHeader = options.request.getHeader('host');
+ var tlsOptions = mergeOptions({}, self.options, {
+ socket: socket,
+ servername: hostHeader ? hostHeader.replace(/:.*$/, '') : options.host
+ });
+
+ // 0 is dummy port for v0.6
+ var secureSocket = tls.connect(0, tlsOptions);
+ self.sockets[self.sockets.indexOf(socket)] = secureSocket;
+ cb(secureSocket);
+ });
+}
+
+
+function toOptions(host, port, localAddress) {
+ if (typeof host === 'string') { // since v0.10
+ return {
+ host: host,
+ port: port,
+ localAddress: localAddress
+ };
+ }
+ return host; // for v0.11 or later
+}
+
+function mergeOptions(target) {
+ for (var i = 1, len = arguments.length; i < len; ++i) {
+ var overrides = arguments[i];
+ if (typeof overrides === 'object') {
+ var keys = Object.keys(overrides);
+ for (var j = 0, keyLen = keys.length; j < keyLen; ++j) {
+ var k = keys[j];
+ if (overrides[k] !== undefined) {
+ target[k] = overrides[k];
+ }
+ }
+ }
+ }
+ return target;
+}
+
+
+var debug;
+if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
+ debug = function() {
+ var args = Array.prototype.slice.call(arguments);
+ if (typeof args[0] === 'string') {
+ args[0] = 'TUNNEL: ' + args[0];
+ } else {
+ args.unshift('TUNNEL:');
+ }
+ console.error.apply(console, args);
+ }
+} else {
+ debug = function() {};
+}
+__webpack_unused_export__ = debug; // for test
+
+
+/***/ }),
+
+/***/ 6752:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+var __webpack_unused_export__;
+
+
+const Client = __nccwpck_require__(3701)
+const Dispatcher = __nccwpck_require__(883)
+const Pool = __nccwpck_require__(628)
+const BalancedPool = __nccwpck_require__(837)
+const Agent = __nccwpck_require__(7405)
+const ProxyAgent = __nccwpck_require__(6672)
+const EnvHttpProxyAgent = __nccwpck_require__(3137)
+const RetryAgent = __nccwpck_require__(50)
+const errors = __nccwpck_require__(8707)
+const util = __nccwpck_require__(3440)
+const { InvalidArgumentError } = errors
+const api = __nccwpck_require__(6615)
+const buildConnector = __nccwpck_require__(9136)
+const MockClient = __nccwpck_require__(7365)
+const MockAgent = __nccwpck_require__(7501)
+const MockPool = __nccwpck_require__(4004)
+const mockErrors = __nccwpck_require__(2429)
+const RetryHandler = __nccwpck_require__(7816)
+const { getGlobalDispatcher, setGlobalDispatcher } = __nccwpck_require__(2581)
+const DecoratorHandler = __nccwpck_require__(8155)
+const RedirectHandler = __nccwpck_require__(8754)
+const createRedirectInterceptor = __nccwpck_require__(5092)
+
+Object.assign(Dispatcher.prototype, api)
+
+__webpack_unused_export__ = Dispatcher
+__webpack_unused_export__ = Client
+__webpack_unused_export__ = Pool
+__webpack_unused_export__ = BalancedPool
+__webpack_unused_export__ = Agent
+module.exports.kT = ProxyAgent
+__webpack_unused_export__ = EnvHttpProxyAgent
+__webpack_unused_export__ = RetryAgent
+__webpack_unused_export__ = RetryHandler
+
+__webpack_unused_export__ = DecoratorHandler
+__webpack_unused_export__ = RedirectHandler
+__webpack_unused_export__ = createRedirectInterceptor
+__webpack_unused_export__ = {
+ redirect: __nccwpck_require__(1514),
+ retry: __nccwpck_require__(2026),
+ dump: __nccwpck_require__(8060),
+ dns: __nccwpck_require__(379)
+}
+
+__webpack_unused_export__ = buildConnector
+__webpack_unused_export__ = errors
+__webpack_unused_export__ = {
+ parseHeaders: util.parseHeaders,
+ headerNameToString: util.headerNameToString
+}
+
+function makeDispatcher (fn) {
+ return (url, opts, handler) => {
+ if (typeof opts === 'function') {
+ handler = opts
+ opts = null
+ }
+
+ if (!url || (typeof url !== 'string' && typeof url !== 'object' && !(url instanceof URL))) {
+ throw new InvalidArgumentError('invalid url')
+ }
+
+ if (opts != null && typeof opts !== 'object') {
+ throw new InvalidArgumentError('invalid opts')
+ }
+
+ if (opts && opts.path != null) {
+ if (typeof opts.path !== 'string') {
+ throw new InvalidArgumentError('invalid opts.path')
+ }
+
+ let path = opts.path
+ if (!opts.path.startsWith('/')) {
+ path = `/${path}`
+ }
+
+ url = new URL(util.parseOrigin(url).origin + path)
+ } else {
+ if (!opts) {
+ opts = typeof url === 'object' ? url : {}
+ }
+
+ url = util.parseURL(url)
+ }
+
+ const { agent, dispatcher = getGlobalDispatcher() } = opts
+
+ if (agent) {
+ throw new InvalidArgumentError('unsupported opts.agent. Did you mean opts.client?')
+ }
+
+ return fn.call(dispatcher, {
+ ...opts,
+ origin: url.origin,
+ path: url.search ? `${url.pathname}${url.search}` : url.pathname,
+ method: opts.method || (opts.body ? 'PUT' : 'GET')
+ }, handler)
+ }
+}
+
+__webpack_unused_export__ = setGlobalDispatcher
+__webpack_unused_export__ = getGlobalDispatcher
+
+const fetchImpl = (__nccwpck_require__(4398).fetch)
+__webpack_unused_export__ = async function fetch (init, options = undefined) {
+ try {
+ return await fetchImpl(init, options)
+ } catch (err) {
+ if (err && typeof err === 'object') {
+ Error.captureStackTrace(err)
+ }
+
+ throw err
+ }
+}
+/* unused reexport */ __nccwpck_require__(660).Headers
+/* unused reexport */ __nccwpck_require__(9051).Response
+/* unused reexport */ __nccwpck_require__(9967).Request
+/* unused reexport */ __nccwpck_require__(5910).FormData
+__webpack_unused_export__ = globalThis.File ?? (__nccwpck_require__(4573).File)
+/* unused reexport */ __nccwpck_require__(8355).FileReader
+
+const { setGlobalOrigin, getGlobalOrigin } = __nccwpck_require__(1059)
+
+__webpack_unused_export__ = setGlobalOrigin
+__webpack_unused_export__ = getGlobalOrigin
+
+const { CacheStorage } = __nccwpck_require__(3245)
+const { kConstruct } = __nccwpck_require__(109)
+
+// Cache & CacheStorage are tightly coupled with fetch. Even if it may run
+// in an older version of Node, it doesn't have any use without fetch.
+__webpack_unused_export__ = new CacheStorage(kConstruct)
+
+const { deleteCookie, getCookies, getSetCookies, setCookie } = __nccwpck_require__(9061)
+
+__webpack_unused_export__ = deleteCookie
+__webpack_unused_export__ = getCookies
+__webpack_unused_export__ = getSetCookies
+__webpack_unused_export__ = setCookie
+
+const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(1900)
+
+__webpack_unused_export__ = parseMIMEType
+__webpack_unused_export__ = serializeAMimeType
+
+const { CloseEvent, ErrorEvent, MessageEvent } = __nccwpck_require__(5188)
+/* unused reexport */ __nccwpck_require__(3726).WebSocket
+__webpack_unused_export__ = CloseEvent
+__webpack_unused_export__ = ErrorEvent
+__webpack_unused_export__ = MessageEvent
+
+__webpack_unused_export__ = makeDispatcher(api.request)
+__webpack_unused_export__ = makeDispatcher(api.stream)
+__webpack_unused_export__ = makeDispatcher(api.pipeline)
+__webpack_unused_export__ = makeDispatcher(api.connect)
+__webpack_unused_export__ = makeDispatcher(api.upgrade)
+
+__webpack_unused_export__ = MockClient
+__webpack_unused_export__ = MockPool
+__webpack_unused_export__ = MockAgent
+__webpack_unused_export__ = mockErrors
+
+const { EventSource } = __nccwpck_require__(1238)
+
+__webpack_unused_export__ = EventSource
+
+
+/***/ }),
+
+/***/ 158:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+const { addAbortListener } = __nccwpck_require__(3440)
+const { RequestAbortedError } = __nccwpck_require__(8707)
+
+const kListener = Symbol('kListener')
+const kSignal = Symbol('kSignal')
+
+function abort (self) {
+ if (self.abort) {
+ self.abort(self[kSignal]?.reason)
+ } else {
+ self.reason = self[kSignal]?.reason ?? new RequestAbortedError()
+ }
+ removeSignal(self)
+}
+
+function addSignal (self, signal) {
+ self.reason = null
+
+ self[kSignal] = null
+ self[kListener] = null
+
+ if (!signal) {
+ return
+ }
+
+ if (signal.aborted) {
+ abort(self)
+ return
+ }
+
+ self[kSignal] = signal
+ self[kListener] = () => {
+ abort(self)
+ }
+
+ addAbortListener(self[kSignal], self[kListener])
+}
+
+function removeSignal (self) {
+ if (!self[kSignal]) {
+ return
+ }
+
+ if ('removeEventListener' in self[kSignal]) {
+ self[kSignal].removeEventListener('abort', self[kListener])
+ } else {
+ self[kSignal].removeListener('abort', self[kListener])
+ }
+
+ self[kSignal] = null
+ self[kListener] = null
+}
+
+module.exports = {
+ addSignal,
+ removeSignal
+}
+
+
+/***/ }),
+
+/***/ 2279:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const assert = __nccwpck_require__(4589)
+const { AsyncResource } = __nccwpck_require__(6698)
+const { InvalidArgumentError, SocketError } = __nccwpck_require__(8707)
+const util = __nccwpck_require__(3440)
+const { addSignal, removeSignal } = __nccwpck_require__(158)
+
+class ConnectHandler extends AsyncResource {
+ constructor (opts, callback) {
+ if (!opts || typeof opts !== 'object') {
+ throw new InvalidArgumentError('invalid opts')
+ }
+
+ if (typeof callback !== 'function') {
+ throw new InvalidArgumentError('invalid callback')
+ }
+
+ const { signal, opaque, responseHeaders } = opts
+
+ if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {
+ throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')
+ }
+
+ super('UNDICI_CONNECT')
+
+ this.opaque = opaque || null
+ this.responseHeaders = responseHeaders || null
+ this.callback = callback
+ this.abort = null
+
+ addSignal(this, signal)
+ }
+
+ onConnect (abort, context) {
+ if (this.reason) {
+ abort(this.reason)
+ return
+ }
+
+ assert(this.callback)
+
+ this.abort = abort
+ this.context = context
+ }
+
+ onHeaders () {
+ throw new SocketError('bad connect', null)
+ }
+
+ onUpgrade (statusCode, rawHeaders, socket) {
+ const { callback, opaque, context } = this
+
+ removeSignal(this)
+
+ this.callback = null
+
+ let headers = rawHeaders
+ // Indicates is an HTTP2Session
+ if (headers != null) {
+ headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders)
+ }
+
+ this.runInAsyncScope(callback, null, null, {
+ statusCode,
+ headers,
+ socket,
+ opaque,
+ context
+ })
+ }
+
+ onError (err) {
+ const { callback, opaque } = this
+
+ removeSignal(this)
+
+ if (callback) {
+ this.callback = null
+ queueMicrotask(() => {
+ this.runInAsyncScope(callback, null, err, { opaque })
+ })
+ }
+ }
+}
+
+function connect (opts, callback) {
+ if (callback === undefined) {
+ return new Promise((resolve, reject) => {
+ connect.call(this, opts, (err, data) => {
+ return err ? reject(err) : resolve(data)
+ })
+ })
+ }
+
+ try {
+ const connectHandler = new ConnectHandler(opts, callback)
+ this.dispatch({ ...opts, method: 'CONNECT' }, connectHandler)
+ } catch (err) {
+ if (typeof callback !== 'function') {
+ throw err
+ }
+ const opaque = opts?.opaque
+ queueMicrotask(() => callback(err, { opaque }))
+ }
+}
+
+module.exports = connect
+
+
+/***/ }),
+
+/***/ 6862:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const {
+ Readable,
+ Duplex,
+ PassThrough
+} = __nccwpck_require__(7075)
+const {
+ InvalidArgumentError,
+ InvalidReturnValueError,
+ RequestAbortedError
+} = __nccwpck_require__(8707)
+const util = __nccwpck_require__(3440)
+const { AsyncResource } = __nccwpck_require__(6698)
+const { addSignal, removeSignal } = __nccwpck_require__(158)
+const assert = __nccwpck_require__(4589)
+
+const kResume = Symbol('resume')
+
+class PipelineRequest extends Readable {
+ constructor () {
+ super({ autoDestroy: true })
+
+ this[kResume] = null
+ }
+
+ _read () {
+ const { [kResume]: resume } = this
+
+ if (resume) {
+ this[kResume] = null
+ resume()
+ }
+ }
+
+ _destroy (err, callback) {
+ this._read()
+
+ callback(err)
+ }
+}
+
+class PipelineResponse extends Readable {
+ constructor (resume) {
+ super({ autoDestroy: true })
+ this[kResume] = resume
+ }
+
+ _read () {
+ this[kResume]()
+ }
+
+ _destroy (err, callback) {
+ if (!err && !this._readableState.endEmitted) {
+ err = new RequestAbortedError()
+ }
+
+ callback(err)
+ }
+}
+
+class PipelineHandler extends AsyncResource {
+ constructor (opts, handler) {
+ if (!opts || typeof opts !== 'object') {
+ throw new InvalidArgumentError('invalid opts')
+ }
+
+ if (typeof handler !== 'function') {
+ throw new InvalidArgumentError('invalid handler')
+ }
+
+ const { signal, method, opaque, onInfo, responseHeaders } = opts
+
+ if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {
+ throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')
+ }
+
+ if (method === 'CONNECT') {
+ throw new InvalidArgumentError('invalid method')
+ }
+
+ if (onInfo && typeof onInfo !== 'function') {
+ throw new InvalidArgumentError('invalid onInfo callback')
+ }
+
+ super('UNDICI_PIPELINE')
+
+ this.opaque = opaque || null
+ this.responseHeaders = responseHeaders || null
+ this.handler = handler
+ this.abort = null
+ this.context = null
+ this.onInfo = onInfo || null
+
+ this.req = new PipelineRequest().on('error', util.nop)
+
+ this.ret = new Duplex({
+ readableObjectMode: opts.objectMode,
+ autoDestroy: true,
+ read: () => {
+ const { body } = this
+
+ if (body?.resume) {
+ body.resume()
+ }
+ },
+ write: (chunk, encoding, callback) => {
+ const { req } = this
+
+ if (req.push(chunk, encoding) || req._readableState.destroyed) {
+ callback()
+ } else {
+ req[kResume] = callback
+ }
+ },
+ destroy: (err, callback) => {
+ const { body, req, res, ret, abort } = this
+
+ if (!err && !ret._readableState.endEmitted) {
+ err = new RequestAbortedError()
+ }
+
+ if (abort && err) {
+ abort()
+ }
+
+ util.destroy(body, err)
+ util.destroy(req, err)
+ util.destroy(res, err)
+
+ removeSignal(this)
+
+ callback(err)
+ }
+ }).on('prefinish', () => {
+ const { req } = this
+
+ // Node < 15 does not call _final in same tick.
+ req.push(null)
+ })
+
+ this.res = null
+
+ addSignal(this, signal)
+ }
+
+ onConnect (abort, context) {
+ const { ret, res } = this
+
+ if (this.reason) {
+ abort(this.reason)
+ return
+ }
+
+ assert(!res, 'pipeline cannot be retried')
+ assert(!ret.destroyed)
+
+ this.abort = abort
+ this.context = context
+ }
+
+ onHeaders (statusCode, rawHeaders, resume) {
+ const { opaque, handler, context } = this
+
+ if (statusCode < 200) {
+ if (this.onInfo) {
+ const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders)
+ this.onInfo({ statusCode, headers })
+ }
+ return
+ }
+
+ this.res = new PipelineResponse(resume)
+
+ let body
+ try {
+ this.handler = null
+ const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders)
+ body = this.runInAsyncScope(handler, null, {
+ statusCode,
+ headers,
+ opaque,
+ body: this.res,
+ context
+ })
+ } catch (err) {
+ this.res.on('error', util.nop)
+ throw err
+ }
+
+ if (!body || typeof body.on !== 'function') {
+ throw new InvalidReturnValueError('expected Readable')
+ }
+
+ body
+ .on('data', (chunk) => {
+ const { ret, body } = this
+
+ if (!ret.push(chunk) && body.pause) {
+ body.pause()
+ }
+ })
+ .on('error', (err) => {
+ const { ret } = this
+
+ util.destroy(ret, err)
+ })
+ .on('end', () => {
+ const { ret } = this
+
+ ret.push(null)
+ })
+ .on('close', () => {
+ const { ret } = this
+
+ if (!ret._readableState.ended) {
+ util.destroy(ret, new RequestAbortedError())
+ }
+ })
+
+ this.body = body
+ }
+
+ onData (chunk) {
+ const { res } = this
+ return res.push(chunk)
+ }
+
+ onComplete (trailers) {
+ const { res } = this
+ res.push(null)
+ }
+
+ onError (err) {
+ const { ret } = this
+ this.handler = null
+ util.destroy(ret, err)
+ }
+}
+
+function pipeline (opts, handler) {
+ try {
+ const pipelineHandler = new PipelineHandler(opts, handler)
+ this.dispatch({ ...opts, body: pipelineHandler.req }, pipelineHandler)
+ return pipelineHandler.ret
+ } catch (err) {
+ return new PassThrough().destroy(err)
+ }
+}
+
+module.exports = pipeline
+
+
+/***/ }),
+
+/***/ 4043:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const assert = __nccwpck_require__(4589)
+const { Readable } = __nccwpck_require__(9927)
+const { InvalidArgumentError, RequestAbortedError } = __nccwpck_require__(8707)
+const util = __nccwpck_require__(3440)
+const { getResolveErrorBodyCallback } = __nccwpck_require__(7655)
+const { AsyncResource } = __nccwpck_require__(6698)
+
+class RequestHandler extends AsyncResource {
+ constructor (opts, callback) {
+ if (!opts || typeof opts !== 'object') {
+ throw new InvalidArgumentError('invalid opts')
+ }
+
+ const { signal, method, opaque, body, onInfo, responseHeaders, throwOnError, highWaterMark } = opts
+
+ try {
+ if (typeof callback !== 'function') {
+ throw new InvalidArgumentError('invalid callback')
+ }
+
+ if (highWaterMark && (typeof highWaterMark !== 'number' || highWaterMark < 0)) {
+ throw new InvalidArgumentError('invalid highWaterMark')
+ }
+
+ if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {
+ throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')
+ }
+
+ if (method === 'CONNECT') {
+ throw new InvalidArgumentError('invalid method')
+ }
+
+ if (onInfo && typeof onInfo !== 'function') {
+ throw new InvalidArgumentError('invalid onInfo callback')
+ }
+
+ super('UNDICI_REQUEST')
+ } catch (err) {
+ if (util.isStream(body)) {
+ util.destroy(body.on('error', util.nop), err)
+ }
+ throw err
+ }
+
+ this.method = method
+ this.responseHeaders = responseHeaders || null
+ this.opaque = opaque || null
+ this.callback = callback
+ this.res = null
+ this.abort = null
+ this.body = body
+ this.trailers = {}
+ this.context = null
+ this.onInfo = onInfo || null
+ this.throwOnError = throwOnError
+ this.highWaterMark = highWaterMark
+ this.signal = signal
+ this.reason = null
+ this.removeAbortListener = null
+
+ if (util.isStream(body)) {
+ body.on('error', (err) => {
+ this.onError(err)
+ })
+ }
+
+ if (this.signal) {
+ if (this.signal.aborted) {
+ this.reason = this.signal.reason ?? new RequestAbortedError()
+ } else {
+ this.removeAbortListener = util.addAbortListener(this.signal, () => {
+ this.reason = this.signal.reason ?? new RequestAbortedError()
+ if (this.res) {
+ util.destroy(this.res.on('error', util.nop), this.reason)
+ } else if (this.abort) {
+ this.abort(this.reason)
+ }
+
+ if (this.removeAbortListener) {
+ this.res?.off('close', this.removeAbortListener)
+ this.removeAbortListener()
+ this.removeAbortListener = null
+ }
+ })
+ }
+ }
+ }
+
+ onConnect (abort, context) {
+ if (this.reason) {
+ abort(this.reason)
+ return
+ }
+
+ assert(this.callback)
+
+ this.abort = abort
+ this.context = context
+ }
+
+ onHeaders (statusCode, rawHeaders, resume, statusMessage) {
+ const { callback, opaque, abort, context, responseHeaders, highWaterMark } = this
+
+ const headers = responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders)
+
+ if (statusCode < 200) {
+ if (this.onInfo) {
+ this.onInfo({ statusCode, headers })
+ }
+ return
+ }
+
+ const parsedHeaders = responseHeaders === 'raw' ? util.parseHeaders(rawHeaders) : headers
+ const contentType = parsedHeaders['content-type']
+ const contentLength = parsedHeaders['content-length']
+ const res = new Readable({
+ resume,
+ abort,
+ contentType,
+ contentLength: this.method !== 'HEAD' && contentLength
+ ? Number(contentLength)
+ : null,
+ highWaterMark
+ })
+
+ if (this.removeAbortListener) {
+ res.on('close', this.removeAbortListener)
+ }
+
+ this.callback = null
+ this.res = res
+ if (callback !== null) {
+ if (this.throwOnError && statusCode >= 400) {
+ this.runInAsyncScope(getResolveErrorBodyCallback, null,
+ { callback, body: res, contentType, statusCode, statusMessage, headers }
+ )
+ } else {
+ this.runInAsyncScope(callback, null, null, {
+ statusCode,
+ headers,
+ trailers: this.trailers,
+ opaque,
+ body: res,
+ context
+ })
+ }
+ }
+ }
+
+ onData (chunk) {
+ return this.res.push(chunk)
+ }
+
+ onComplete (trailers) {
+ util.parseHeaders(trailers, this.trailers)
+ this.res.push(null)
+ }
+
+ onError (err) {
+ const { res, callback, body, opaque } = this
+
+ if (callback) {
+ // TODO: Does this need queueMicrotask?
+ this.callback = null
+ queueMicrotask(() => {
+ this.runInAsyncScope(callback, null, err, { opaque })
+ })
+ }
+
+ if (res) {
+ this.res = null
+ // Ensure all queued handlers are invoked before destroying res.
+ queueMicrotask(() => {
+ util.destroy(res, err)
+ })
+ }
+
+ if (body) {
+ this.body = null
+ util.destroy(body, err)
+ }
+
+ if (this.removeAbortListener) {
+ res?.off('close', this.removeAbortListener)
+ this.removeAbortListener()
+ this.removeAbortListener = null
+ }
+ }
+}
+
+function request (opts, callback) {
+ if (callback === undefined) {
+ return new Promise((resolve, reject) => {
+ request.call(this, opts, (err, data) => {
+ return err ? reject(err) : resolve(data)
+ })
+ })
+ }
+
+ try {
+ this.dispatch(opts, new RequestHandler(opts, callback))
+ } catch (err) {
+ if (typeof callback !== 'function') {
+ throw err
+ }
+ const opaque = opts?.opaque
+ queueMicrotask(() => callback(err, { opaque }))
+ }
+}
+
+module.exports = request
+module.exports.RequestHandler = RequestHandler
+
+
+/***/ }),
+
+/***/ 3560:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const assert = __nccwpck_require__(4589)
+const { finished, PassThrough } = __nccwpck_require__(7075)
+const { InvalidArgumentError, InvalidReturnValueError } = __nccwpck_require__(8707)
+const util = __nccwpck_require__(3440)
+const { getResolveErrorBodyCallback } = __nccwpck_require__(7655)
+const { AsyncResource } = __nccwpck_require__(6698)
+const { addSignal, removeSignal } = __nccwpck_require__(158)
+
+class StreamHandler extends AsyncResource {
+ constructor (opts, factory, callback) {
+ if (!opts || typeof opts !== 'object') {
+ throw new InvalidArgumentError('invalid opts')
+ }
+
+ const { signal, method, opaque, body, onInfo, responseHeaders, throwOnError } = opts
+
+ try {
+ if (typeof callback !== 'function') {
+ throw new InvalidArgumentError('invalid callback')
+ }
+
+ if (typeof factory !== 'function') {
+ throw new InvalidArgumentError('invalid factory')
+ }
+
+ if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {
+ throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')
+ }
+
+ if (method === 'CONNECT') {
+ throw new InvalidArgumentError('invalid method')
+ }
+
+ if (onInfo && typeof onInfo !== 'function') {
+ throw new InvalidArgumentError('invalid onInfo callback')
+ }
+
+ super('UNDICI_STREAM')
+ } catch (err) {
+ if (util.isStream(body)) {
+ util.destroy(body.on('error', util.nop), err)
+ }
+ throw err
+ }
+
+ this.responseHeaders = responseHeaders || null
+ this.opaque = opaque || null
+ this.factory = factory
+ this.callback = callback
+ this.res = null
+ this.abort = null
+ this.context = null
+ this.trailers = null
+ this.body = body
+ this.onInfo = onInfo || null
+ this.throwOnError = throwOnError || false
+
+ if (util.isStream(body)) {
+ body.on('error', (err) => {
+ this.onError(err)
+ })
+ }
+
+ addSignal(this, signal)
+ }
+
+ onConnect (abort, context) {
+ if (this.reason) {
+ abort(this.reason)
+ return
+ }
+
+ assert(this.callback)
+
+ this.abort = abort
+ this.context = context
+ }
+
+ onHeaders (statusCode, rawHeaders, resume, statusMessage) {
+ const { factory, opaque, context, callback, responseHeaders } = this
+
+ const headers = responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders)
+
+ if (statusCode < 200) {
+ if (this.onInfo) {
+ this.onInfo({ statusCode, headers })
+ }
+ return
+ }
+
+ this.factory = null
+
+ let res
+
+ if (this.throwOnError && statusCode >= 400) {
+ const parsedHeaders = responseHeaders === 'raw' ? util.parseHeaders(rawHeaders) : headers
+ const contentType = parsedHeaders['content-type']
+ res = new PassThrough()
+
+ this.callback = null
+ this.runInAsyncScope(getResolveErrorBodyCallback, null,
+ { callback, body: res, contentType, statusCode, statusMessage, headers }
+ )
+ } else {
+ if (factory === null) {
+ return
+ }
+
+ res = this.runInAsyncScope(factory, null, {
+ statusCode,
+ headers,
+ opaque,
+ context
+ })
+
+ if (
+ !res ||
+ typeof res.write !== 'function' ||
+ typeof res.end !== 'function' ||
+ typeof res.on !== 'function'
+ ) {
+ throw new InvalidReturnValueError('expected Writable')
+ }
+
+ // TODO: Avoid finished. It registers an unnecessary amount of listeners.
+ finished(res, { readable: false }, (err) => {
+ const { callback, res, opaque, trailers, abort } = this
+
+ this.res = null
+ if (err || !res.readable) {
+ util.destroy(res, err)
+ }
+
+ this.callback = null
+ this.runInAsyncScope(callback, null, err || null, { opaque, trailers })
+
+ if (err) {
+ abort()
+ }
+ })
+ }
+
+ res.on('drain', resume)
+
+ this.res = res
+
+ const needDrain = res.writableNeedDrain !== undefined
+ ? res.writableNeedDrain
+ : res._writableState?.needDrain
+
+ return needDrain !== true
+ }
+
+ onData (chunk) {
+ const { res } = this
+
+ return res ? res.write(chunk) : true
+ }
+
+ onComplete (trailers) {
+ const { res } = this
+
+ removeSignal(this)
+
+ if (!res) {
+ return
+ }
+
+ this.trailers = util.parseHeaders(trailers)
+
+ res.end()
+ }
+
+ onError (err) {
+ const { res, callback, opaque, body } = this
+
+ removeSignal(this)
+
+ this.factory = null
+
+ if (res) {
+ this.res = null
+ util.destroy(res, err)
+ } else if (callback) {
+ this.callback = null
+ queueMicrotask(() => {
+ this.runInAsyncScope(callback, null, err, { opaque })
+ })
+ }
+
+ if (body) {
+ this.body = null
+ util.destroy(body, err)
+ }
+ }
+}
+
+function stream (opts, factory, callback) {
+ if (callback === undefined) {
+ return new Promise((resolve, reject) => {
+ stream.call(this, opts, factory, (err, data) => {
+ return err ? reject(err) : resolve(data)
+ })
+ })
+ }
+
+ try {
+ this.dispatch(opts, new StreamHandler(opts, factory, callback))
+ } catch (err) {
+ if (typeof callback !== 'function') {
+ throw err
+ }
+ const opaque = opts?.opaque
+ queueMicrotask(() => callback(err, { opaque }))
+ }
+}
+
+module.exports = stream
+
+
+/***/ }),
+
+/***/ 1882:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const { InvalidArgumentError, SocketError } = __nccwpck_require__(8707)
+const { AsyncResource } = __nccwpck_require__(6698)
+const util = __nccwpck_require__(3440)
+const { addSignal, removeSignal } = __nccwpck_require__(158)
+const assert = __nccwpck_require__(4589)
+
+class UpgradeHandler extends AsyncResource {
+ constructor (opts, callback) {
+ if (!opts || typeof opts !== 'object') {
+ throw new InvalidArgumentError('invalid opts')
+ }
+
+ if (typeof callback !== 'function') {
+ throw new InvalidArgumentError('invalid callback')
+ }
+
+ const { signal, opaque, responseHeaders } = opts
+
+ if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') {
+ throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget')
+ }
+
+ super('UNDICI_UPGRADE')
+
+ this.responseHeaders = responseHeaders || null
+ this.opaque = opaque || null
+ this.callback = callback
+ this.abort = null
+ this.context = null
+
+ addSignal(this, signal)
+ }
+
+ onConnect (abort, context) {
+ if (this.reason) {
+ abort(this.reason)
+ return
+ }
+
+ assert(this.callback)
+
+ this.abort = abort
+ this.context = null
+ }
+
+ onHeaders () {
+ throw new SocketError('bad upgrade', null)
+ }
+
+ onUpgrade (statusCode, rawHeaders, socket) {
+ assert(statusCode === 101)
+
+ const { callback, opaque, context } = this
+
+ removeSignal(this)
+
+ this.callback = null
+ const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders)
+ this.runInAsyncScope(callback, null, null, {
+ headers,
+ socket,
+ opaque,
+ context
+ })
+ }
+
+ onError (err) {
+ const { callback, opaque } = this
+
+ removeSignal(this)
+
+ if (callback) {
+ this.callback = null
+ queueMicrotask(() => {
+ this.runInAsyncScope(callback, null, err, { opaque })
+ })
+ }
+ }
+}
+
+function upgrade (opts, callback) {
+ if (callback === undefined) {
+ return new Promise((resolve, reject) => {
+ upgrade.call(this, opts, (err, data) => {
+ return err ? reject(err) : resolve(data)
+ })
+ })
+ }
+
+ try {
+ const upgradeHandler = new UpgradeHandler(opts, callback)
+ this.dispatch({
+ ...opts,
+ method: opts.method || 'GET',
+ upgrade: opts.protocol || 'Websocket'
+ }, upgradeHandler)
+ } catch (err) {
+ if (typeof callback !== 'function') {
+ throw err
+ }
+ const opaque = opts?.opaque
+ queueMicrotask(() => callback(err, { opaque }))
+ }
+}
+
+module.exports = upgrade
+
+
+/***/ }),
+
+/***/ 6615:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+module.exports.request = __nccwpck_require__(4043)
+module.exports.stream = __nccwpck_require__(3560)
+module.exports.pipeline = __nccwpck_require__(6862)
+module.exports.upgrade = __nccwpck_require__(1882)
+module.exports.connect = __nccwpck_require__(2279)
+
+
+/***/ }),
+
+/***/ 9927:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+// Ported from https://github.com/nodejs/undici/pull/907
+
+
+
+const assert = __nccwpck_require__(4589)
+const { Readable } = __nccwpck_require__(7075)
+const { RequestAbortedError, NotSupportedError, InvalidArgumentError, AbortError } = __nccwpck_require__(8707)
+const util = __nccwpck_require__(3440)
+const { ReadableStreamFrom } = __nccwpck_require__(3440)
+
+const kConsume = Symbol('kConsume')
+const kReading = Symbol('kReading')
+const kBody = Symbol('kBody')
+const kAbort = Symbol('kAbort')
+const kContentType = Symbol('kContentType')
+const kContentLength = Symbol('kContentLength')
+
+const noop = () => {}
+
+class BodyReadable extends Readable {
+ constructor ({
+ resume,
+ abort,
+ contentType = '',
+ contentLength,
+ highWaterMark = 64 * 1024 // Same as nodejs fs streams.
+ }) {
+ super({
+ autoDestroy: true,
+ read: resume,
+ highWaterMark
+ })
+
+ this._readableState.dataEmitted = false
+
+ this[kAbort] = abort
+ this[kConsume] = null
+ this[kBody] = null
+ this[kContentType] = contentType
+ this[kContentLength] = contentLength
+
+ // Is stream being consumed through Readable API?
+ // This is an optimization so that we avoid checking
+ // for 'data' and 'readable' listeners in the hot path
+ // inside push().
+ this[kReading] = false
+ }
+
+ destroy (err) {
+ if (!err && !this._readableState.endEmitted) {
+ err = new RequestAbortedError()
+ }
+
+ if (err) {
+ this[kAbort]()
+ }
+
+ return super.destroy(err)
+ }
+
+ _destroy (err, callback) {
+ // Workaround for Node "bug". If the stream is destroyed in same
+ // tick as it is created, then a user who is waiting for a
+ // promise (i.e micro tick) for installing a 'error' listener will
+ // never get a chance and will always encounter an unhandled exception.
+ if (!this[kReading]) {
+ setImmediate(() => {
+ callback(err)
+ })
+ } else {
+ callback(err)
+ }
+ }
+
+ on (ev, ...args) {
+ if (ev === 'data' || ev === 'readable') {
+ this[kReading] = true
+ }
+ return super.on(ev, ...args)
+ }
+
+ addListener (ev, ...args) {
+ return this.on(ev, ...args)
+ }
+
+ off (ev, ...args) {
+ const ret = super.off(ev, ...args)
+ if (ev === 'data' || ev === 'readable') {
+ this[kReading] = (
+ this.listenerCount('data') > 0 ||
+ this.listenerCount('readable') > 0
+ )
+ }
+ return ret
+ }
+
+ removeListener (ev, ...args) {
+ return this.off(ev, ...args)
+ }
+
+ push (chunk) {
+ if (this[kConsume] && chunk !== null) {
+ consumePush(this[kConsume], chunk)
+ return this[kReading] ? super.push(chunk) : true
+ }
+ return super.push(chunk)
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-text
+ async text () {
+ return consume(this, 'text')
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-json
+ async json () {
+ return consume(this, 'json')
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-blob
+ async blob () {
+ return consume(this, 'blob')
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-bytes
+ async bytes () {
+ return consume(this, 'bytes')
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-arraybuffer
+ async arrayBuffer () {
+ return consume(this, 'arrayBuffer')
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-formdata
+ async formData () {
+ // TODO: Implement.
+ throw new NotSupportedError()
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-bodyused
+ get bodyUsed () {
+ return util.isDisturbed(this)
+ }
+
+ // https://fetch.spec.whatwg.org/#dom-body-body
+ get body () {
+ if (!this[kBody]) {
+ this[kBody] = ReadableStreamFrom(this)
+ if (this[kConsume]) {
+ // TODO: Is this the best way to force a lock?
+ this[kBody].getReader() // Ensure stream is locked.
+ assert(this[kBody].locked)
+ }
+ }
+ return this[kBody]
+ }
+
+ async dump (opts) {
+ let limit = Number.isFinite(opts?.limit) ? opts.limit : 128 * 1024
+ const signal = opts?.signal
+
+ if (signal != null && (typeof signal !== 'object' || !('aborted' in signal))) {
+ throw new InvalidArgumentError('signal must be an AbortSignal')
+ }
+
+ signal?.throwIfAborted()
+
+ if (this._readableState.closeEmitted) {
+ return null
+ }
+
+ return await new Promise((resolve, reject) => {
+ if (this[kContentLength] > limit) {
+ this.destroy(new AbortError())
+ }
+
+ const onAbort = () => {
+ this.destroy(signal.reason ?? new AbortError())
+ }
+ signal?.addEventListener('abort', onAbort)
+
+ this
+ .on('close', function () {
+ signal?.removeEventListener('abort', onAbort)
+ if (signal?.aborted) {
+ reject(signal.reason ?? new AbortError())
+ } else {
+ resolve(null)
+ }
+ })
+ .on('error', noop)
+ .on('data', function (chunk) {
+ limit -= chunk.length
+ if (limit <= 0) {
+ this.destroy()
+ }
+ })
+ .resume()
+ })
+ }
+}
+
+// https://streams.spec.whatwg.org/#readablestream-locked
+function isLocked (self) {
+ // Consume is an implicit lock.
+ return (self[kBody] && self[kBody].locked === true) || self[kConsume]
+}
+
+// https://fetch.spec.whatwg.org/#body-unusable
+function isUnusable (self) {
+ return util.isDisturbed(self) || isLocked(self)
+}
+
+async function consume (stream, type) {
+ assert(!stream[kConsume])
+
+ return new Promise((resolve, reject) => {
+ if (isUnusable(stream)) {
+ const rState = stream._readableState
+ if (rState.destroyed && rState.closeEmitted === false) {
+ stream
+ .on('error', err => {
+ reject(err)
+ })
+ .on('close', () => {
+ reject(new TypeError('unusable'))
+ })
+ } else {
+ reject(rState.errored ?? new TypeError('unusable'))
+ }
+ } else {
+ queueMicrotask(() => {
+ stream[kConsume] = {
+ type,
+ stream,
+ resolve,
+ reject,
+ length: 0,
+ body: []
+ }
+
+ stream
+ .on('error', function (err) {
+ consumeFinish(this[kConsume], err)
+ })
+ .on('close', function () {
+ if (this[kConsume].body !== null) {
+ consumeFinish(this[kConsume], new RequestAbortedError())
+ }
+ })
+
+ consumeStart(stream[kConsume])
+ })
+ }
+ })
+}
+
+function consumeStart (consume) {
+ if (consume.body === null) {
+ return
+ }
+
+ const { _readableState: state } = consume.stream
+
+ if (state.bufferIndex) {
+ const start = state.bufferIndex
+ const end = state.buffer.length
+ for (let n = start; n < end; n++) {
+ consumePush(consume, state.buffer[n])
+ }
+ } else {
+ for (const chunk of state.buffer) {
+ consumePush(consume, chunk)
+ }
+ }
+
+ if (state.endEmitted) {
+ consumeEnd(this[kConsume])
+ } else {
+ consume.stream.on('end', function () {
+ consumeEnd(this[kConsume])
+ })
+ }
+
+ consume.stream.resume()
+
+ while (consume.stream.read() != null) {
+ // Loop
+ }
+}
+
+/**
+ * @param {Buffer[]} chunks
+ * @param {number} length
+ */
+function chunksDecode (chunks, length) {
+ if (chunks.length === 0 || length === 0) {
+ return ''
+ }
+ const buffer = chunks.length === 1 ? chunks[0] : Buffer.concat(chunks, length)
+ const bufferLength = buffer.length
+
+ // Skip BOM.
+ const start =
+ bufferLength > 2 &&
+ buffer[0] === 0xef &&
+ buffer[1] === 0xbb &&
+ buffer[2] === 0xbf
+ ? 3
+ : 0
+ return buffer.utf8Slice(start, bufferLength)
+}
+
+/**
+ * @param {Buffer[]} chunks
+ * @param {number} length
+ * @returns {Uint8Array}
+ */
+function chunksConcat (chunks, length) {
+ if (chunks.length === 0 || length === 0) {
+ return new Uint8Array(0)
+ }
+ if (chunks.length === 1) {
+ // fast-path
+ return new Uint8Array(chunks[0])
+ }
+ const buffer = new Uint8Array(Buffer.allocUnsafeSlow(length).buffer)
+
+ let offset = 0
+ for (let i = 0; i < chunks.length; ++i) {
+ const chunk = chunks[i]
+ buffer.set(chunk, offset)
+ offset += chunk.length
+ }
+
+ return buffer
+}
+
+function consumeEnd (consume) {
+ const { type, body, resolve, stream, length } = consume
+
+ try {
+ if (type === 'text') {
+ resolve(chunksDecode(body, length))
+ } else if (type === 'json') {
+ resolve(JSON.parse(chunksDecode(body, length)))
+ } else if (type === 'arrayBuffer') {
+ resolve(chunksConcat(body, length).buffer)
+ } else if (type === 'blob') {
+ resolve(new Blob(body, { type: stream[kContentType] }))
+ } else if (type === 'bytes') {
+ resolve(chunksConcat(body, length))
+ }
+
+ consumeFinish(consume)
+ } catch (err) {
+ stream.destroy(err)
+ }
+}
+
+function consumePush (consume, chunk) {
+ consume.length += chunk.length
+ consume.body.push(chunk)
+}
+
+function consumeFinish (consume, err) {
+ if (consume.body === null) {
+ return
+ }
+
+ if (err) {
+ consume.reject(err)
+ } else {
+ consume.resolve()
+ }
+
+ consume.type = null
+ consume.stream = null
+ consume.resolve = null
+ consume.reject = null
+ consume.length = 0
+ consume.body = null
+}
+
+module.exports = { Readable: BodyReadable, chunksDecode }
+
+
+/***/ }),
+
+/***/ 7655:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+const assert = __nccwpck_require__(4589)
+const {
+ ResponseStatusCodeError
+} = __nccwpck_require__(8707)
+
+const { chunksDecode } = __nccwpck_require__(9927)
+const CHUNK_LIMIT = 128 * 1024
+
+async function getResolveErrorBodyCallback ({ callback, body, contentType, statusCode, statusMessage, headers }) {
+ assert(body)
+
+ let chunks = []
+ let length = 0
+
+ try {
+ for await (const chunk of body) {
+ chunks.push(chunk)
+ length += chunk.length
+ if (length > CHUNK_LIMIT) {
+ chunks = []
+ length = 0
+ break
+ }
+ }
+ } catch {
+ chunks = []
+ length = 0
+ // Do nothing....
+ }
+
+ const message = `Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`
+
+ if (statusCode === 204 || !contentType || !length) {
+ queueMicrotask(() => callback(new ResponseStatusCodeError(message, statusCode, headers)))
+ return
+ }
+
+ const stackTraceLimit = Error.stackTraceLimit
+ Error.stackTraceLimit = 0
+ let payload
+
+ try {
+ if (isContentTypeApplicationJson(contentType)) {
+ payload = JSON.parse(chunksDecode(chunks, length))
+ } else if (isContentTypeText(contentType)) {
+ payload = chunksDecode(chunks, length)
+ }
+ } catch {
+ // process in a callback to avoid throwing in the microtask queue
+ } finally {
+ Error.stackTraceLimit = stackTraceLimit
+ }
+ queueMicrotask(() => callback(new ResponseStatusCodeError(message, statusCode, headers, payload)))
+}
+
+const isContentTypeApplicationJson = (contentType) => {
+ return (
+ contentType.length > 15 &&
+ contentType[11] === '/' &&
+ contentType[0] === 'a' &&
+ contentType[1] === 'p' &&
+ contentType[2] === 'p' &&
+ contentType[3] === 'l' &&
+ contentType[4] === 'i' &&
+ contentType[5] === 'c' &&
+ contentType[6] === 'a' &&
+ contentType[7] === 't' &&
+ contentType[8] === 'i' &&
+ contentType[9] === 'o' &&
+ contentType[10] === 'n' &&
+ contentType[12] === 'j' &&
+ contentType[13] === 's' &&
+ contentType[14] === 'o' &&
+ contentType[15] === 'n'
+ )
+}
+
+const isContentTypeText = (contentType) => {
+ return (
+ contentType.length > 4 &&
+ contentType[4] === '/' &&
+ contentType[0] === 't' &&
+ contentType[1] === 'e' &&
+ contentType[2] === 'x' &&
+ contentType[3] === 't'
+ )
+}
+
+module.exports = {
+ getResolveErrorBodyCallback,
+ isContentTypeApplicationJson,
+ isContentTypeText
+}
+
+
+/***/ }),
+
+/***/ 9136:
+/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
+
+
+
+const net = __nccwpck_require__(7030)
+const assert = __nccwpck_require__(4589)
+const util = __nccwpck_require__(3440)
+const { InvalidArgumentError, ConnectTimeoutError } = __nccwpck_require__(8707)
+const timers = __nccwpck_require__(6603)
+
+function noop () {}
+
+let tls // include tls conditionally since it is not always available
+
+// TODO: session re-use does not wait for the first
+// connection to resolve the session and might therefore
+// resolve the same servername multiple times even when
+// re-use is enabled.
+
+let SessionCache
+// FIXME: remove workaround when the Node bug is fixed
+// https://github.com/nodejs/node/issues/49344#issuecomment-1741776308
+if (global.FinalizationRegistry && !(process.env.NODE_V8_COVERAGE || process.env.UNDICI_NO_FG)) {
+ SessionCache = class WeakSessionCache {
+ constructor (maxCachedSessions) {
+ this._maxCachedSessions = maxCachedSessions
+ this._sessionCache = new Map()
+ this._sessionRegistry = new global.FinalizationRegistry((key) => {
+ if (this._sessionCache.size < this._maxCachedSessions) {
+ return
+ }
+
+ const ref = this._sessionCache.get(key)
+ if (ref !== undefined && ref.deref() === undefined) {
+ this._sessionCache.delete(key)
+ }
+ })
+ }
+
+ get (sessionKey) {
+ const ref = this._sessionCache.get(sessionKey)
+ return ref ? ref.deref() : null
+ }
+
+ set (sessionKey, session) {
+ if (this._maxCachedSessions === 0) {
+ return
+ }
+
+ this._sessionCache.set(sessionKey, new WeakRef(session))
+ this._sessionRegistry.register(session, sessionKey)
+ }
+ }
+} else {
+ SessionCache = class SimpleSessionCache {
+ constructor (maxCachedSessions) {
+ this._maxCachedSessions = maxCachedSessions
+ this._sessionCache = new Map()
+ }
+
+ get (sessionKey) {
+ return this._sessionCache.get(sessionKey)
+ }
+
+ set (sessionKey, session) {
+ if (this._maxCachedSessions === 0) {
+ return
+ }
+
+ if (this._sessionCache.size >= this._maxCachedSessions) {
+ // remove the oldest session
+ const { value: oldestKey } = this._sessionCache.keys().next()
+ this._sessionCache.delete(oldestKey)
+ }
+
+ this._sessionCache.set(sessionKey, session)
+ }
+ }
+}
+
+function buildConnector ({ allowH2, maxCachedSessions, socketPath, timeout, session: customSession, ...opts }) {
+ if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) {
+ throw new InvalidArgumentError('maxCachedSessions must be a positive integer or zero')
+ }
+
+ const options = { path: socketPath, ...opts }
+ const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions)
+ timeout = timeout == null ? 10e3 : timeout
+ allowH2 = allowH2 != null ? allowH2 : false
+ return function connect ({ hostname, host, protocol, port, servername, localAddress, httpSocket }, callback) {
+ let socket
+ if (protocol === 'https:') {
+ if (!tls) {
+ tls = __nccwpck_require__(1692)
+ }
+ servername = servername || options.servername || util.getServerName(host) || null
+
+ const sessionKey = servername || hostname
+ assert(sessionKey)
+
+ const session = customSession || sessionCache.get(sessionKey) || null
+
+ port = port || 443
+
+ socket = tls.connect({
+ highWaterMark: 16384, // TLS in node can't have bigger HWM anyway...
+ ...options,
+ servername,
+ session,
+ localAddress,
+ // TODO(HTTP/2): Add support for h2c
+ ALPNProtocols: allowH2 ? ['http/1.1', 'h2'] : ['http/1.1'],
+ socket: httpSocket, // upgrade socket connection
+ port,
+ host: hostname
+ })
+
+ socket
+ .on('session', function (session) {
+ // TODO (fix): Can a session become invalid once established? Don't think so?
+ sessionCache.set(sessionKey, session)
+ })
+ } else {
+ assert(!httpSocket, 'httpSocket can only be sent on TLS update')
+
+ port = port || 80
+
+ socket = net.connect({
+ highWaterMark: 64 * 1024, // Same as nodejs fs streams.
+ ...options,
+ localAddress,
+ port,
+ host: hostname
+ })
+ }
+
+ // Set TCP keep alive options on the socket here instead of in connect() for the case of assigning the socket
+ if (options.keepAlive == null || options.keepAlive) {
+ const keepAliveInitialDelay = options.keepAliveInitialDelay === undefined ? 60e3 : options.keepAliveInitialDelay
+ socket.setKeepAlive(true, keepAliveInitialDelay)
+ }
+
+ const clearConnectTimeout = setupConnectTimeout(new WeakRef(socket), { timeout, hostname, port })
+
+ socket
+ .setNoDelay(true)
+ .once(protocol === 'https:' ? 'secureConnect' : 'connect', function () {
+ queueMicrotask(clearConnectTimeout)
+
+ if (callback) {
+ const cb = callback
+ callback = null
+ cb(null, this)
+ }
+ })
+ .on('error', function (err) {
+ queueMicrotask(clearConnectTimeout)
+
+ if (callback) {
+ const cb = callback
+ callback = null
+ cb(err)
+ }
+ })
+
+ return socket
+ }
+}
+
+/**
+ * @param {WeakRef