Skip to content

Releases: taskcluster/taskcluster

v65.1.0

22 May 14:05
1a085da
Compare
Choose a tag to compare

USERS

▶ [minor] #5967
Allows Docker Worker payloads to be used on the insecure Generic Worker engine, translated by d2g.

v65.0.2

21 May 13:43
0a7a19e
Compare
Choose a tag to compare

USERS

▶ [patch] #7025
Fixes JavaScript error in "Create Worker Pool" page that was introduced in the last release.
Adds link to "Errors" in workers navigation bar.

Automated Package Updates

2 Dependabot updates
  • --- updated-dependencies: - dependency-name: requests dependency-type: indirect ... (42569cc)
  • build(deps-dev): bump eslint from 8.57.0 to 9.3.0 in /clients/client-web (2bccd8b)

v65.0.1

16 May 15:52
c856774
Compare
Choose a tag to compare

GENERAL

▶ [patch]
Upgrades to go1.22.3 (SECURITY release). Was supposed to be handled in PR #7006, but was accidentally left out.

v65.0.0

16 May 14:31
c461353
Compare
Choose a tag to compare

WORKER-DEPLOYERS

▶ [MAJOR] #7017
Generic Worker multiuser engine now places task directories under /home
(Linux and FreeBSD) and /Users on macOS. Previously it was placing them under
/ by default on all three platforms, unless either HOME was set to a
non-standard value in the process launching Generic Worker multiuser engine, or
if tasksDir was explicitly set in Generic Worker config.

This is a bug fix, but due to being a significant change in behaviour, is being
released as a major change to trigger a major version bump.

USERS

▶ [patch] #6117
Fixes Worker page when queue information was missing and error was displayed.
If worker-manager data exists for this worker, it would be displayed instead.

▶ [patch] #6117
Workers in UI use consistent navigation element that allows to switch between worker pool definition,
workers, pending and claimed tasks.

▶ [patch] #6117
Workers list page in UI shows "Worker Pool" link when it is available to improve navigation.

v64.3.0

15 May 11:49
b66b661
Compare
Choose a tag to compare

GENERAL

▶ [patch]
Upgrades to node v20.13.0 and go1.22.3 (SECURITY release).

WORKER-DEPLOYERS

▶ [minor] #6979
Generic Worker multiuser engine on Linux now sets environment variableXDG_RUNTIME_DIR to /run/user/<UID> in task command processes (unless Generic Worker config setting runTasksAsCurrentUser is set to true).

USERS

▶ [patch] bug 1768667
Adds Task Group link in UI for indexed tasks.
Introduces new route to redirect to the Task Group view: /tasks/index/:namespace/:indexTask/task-group

Automated Package Updates

1 Dependabot updates
  • build(deps): bump jinja2 from 3.1.3 to 3.1.4 in /taskcluster (8433f4b)

v64.2.8

02 May 16:41
e69139b
Compare
Choose a tag to compare

Automated Package Updates

8 Dependabot updates
  • build(deps): bump the node-deps group across 1 directory with 17 updates (7664993)
  • build(deps): bump hawk in /clients/client in the client-node-deps group (676d3a0)
  • build(deps): bump the client-web-node-deps group (1724b09)
  • build(deps): bump taskcluster in /taskcluster in the python-deps group (435162d)
  • build(deps): bump dependabot/fetch-metadata in the gh-actions-deps group (7e8f35d)
  • build(deps): bump taskcluster-taskgraph in /taskcluster (1d2a4ca)
  • build(deps): bump the go-deps group with 5 updates (45dbb12)
  • build(deps): bump ejs from 3.1.9 to 3.1.10 (d320208)

v64.2.7

29 Apr 15:36
6f28121
Compare
Choose a tag to compare

WORKER-DEPLOYERS

▶ [patch] #6983
AWS provider correctly detects InvalidInstanceID.NotFound error and marks worker as stopped.

USERS

▶ [patch] #6987
Generic Worker now checks if a graceful termination was requested from worker runner before calling queue.claimWork().

This helps fix a race condition where a preemption occurs right after Generic Worker starts up, but before the graceful termination handler to abort the task has been initialized.

DEVELOPERS

▶ [patch] #6984
Github auto-cancel gracefully ignores missing task groups and doesn't log errors in github comments.
This can happen when decision task failed on previous runs.

▶ [patch] #6761
Switching from googleapis package to a smaller @googleapis/* libraries to reduce startup time and avoid loading APIs we don't use.

v64.2.6

22 Apr 15:00
edab196
Compare
Choose a tag to compare

WORKER-DEPLOYERS

▶ [patch] #6972
Generic Worker now uploads task payload artifacts in parallel to decrease graceful termination time in the event of a spot termination.

The insecure engine no longer performs a file copy command as the task user before the artifact upload process happens to help speed up the process.

Generic Worker (posix only) now tries to put an exclusive file lock on artifacts before upload to prevent the file from being written to by any other process. This is done in lieu of copying the file to a temporary location which was achieving the same thing. If putting the lock on the file fails, Generic Worker will fallback to copying the file.

USERS

▶ [patch] #6972
Don't compress .npz artifacts by default in Generic Worker.

Automated Package Updates

2 Dependabot updates
  • build(deps): bump aiohttp from 3.9.2 to 3.9.4 in /taskcluster (c4737ab)
  • build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (95aa8bf)

v64.2.5

16 Apr 20:35
5f78921
Compare
Choose a tag to compare

GENERAL

▶ [patch]
Upgrades to Node.js v20.12.2 which is a security release.

Automated Package Updates

6 Dependabot updates
  • build(deps): bump idna from 3.4 to 3.7 in /taskcluster (2cd73d9)
  • build(deps): bump tar from 6.2.0 to 6.2.1 in /ui (254af16)
  • build(deps): bump tar from 6.2.0 to 6.2.1 in /clients/client (f8ddfbe)
  • build(deps): bump tar from 6.2.0 to 6.2.1 (e1ff1fb)
  • build(deps): bump tar from 6.2.0 to 6.2.1 in /clients/client-test (3b9ec5c)
  • build(deps): bump tar from 6.2.0 to 6.2.1 in /clients/client-web (f69bea1)

v64.2.4

08 Apr 12:23
ae8bf7b
Compare
Choose a tag to compare

WORKER-DEPLOYERS

▶ [patch] #6900
Worker Runner on Azure no longer sends a graceful-termination message if the scheduled event type is Freeze. It will continue to send the message for all other event types: Reboot, Redeploy, Preempt, and Terminate.

USERS

▶ [patch] #6957
Improves performance of the findTasksAtIndex call (introduced in #6915)
that returns multiple tasks for a given list of namespaces and indexes.