Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency taskcluster-client to v55 #174

Merged
merged 1 commit into from
Sep 1, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
taskcluster-client (source) 54.0.0 -> 55.0.0 age adoption passing confidence

Release Notes

taskcluster/taskcluster (taskcluster-client)

v55.0.0

Compare Source

DEPLOYERS

▶ [minor] #​2942
The new queue.maxTaskDeadlineDays Helm configuration parameter controls the maximum value allowed for task deadlines. The default is 5 days, matching the previous hard-coded setting.

USERS

▶ [MAJOR] #​6117
workerManager.getWorker returns worker even if it is quarantined and expired.
This is to avoid confusion in the UI when a worker is linked in UI, still exists in database, but page returns 404.

Automated Package Updates
1 Dependabot/Renovate updates
  • build(deps): bump apollo-server-core from 3.12.0 to 3.12.1 (74b0912)

v54.5.0

Compare Source

USERS

▶ [minor] #​5995
Generic Worker: Adds task.payload.feature.loopbackAudio for loopback audio device support on Linux.

The snd-aloop kernel module must be installed on the host system for this feature to work, although it does not need to be loaded. Generic Worker loads the module with modprobe and generates the virtual audio device with a snd-aloop command. Under the multiuser engine, it also manages file ownership of the device with chown to ensure that only tasks with suitable scopes have read/write access to the virtual device.

For tasks that enable the feature, the virtual audio device will be found at /dev/snd. Devices inside that directory will take the form /dev/snd/controlC<DEVICE_NUMBER>, /dev/snd/pcmC<DEVICE_NUMBER>D0c, /dev/snd/pcmC<DEVICE_NUMBER>D0p, /dev/snd/pcmC<DEVICE_NUMBER>D1c, and /dev/snd/pcmC<DEVICE_NUMBER>D1p, where <DEVICE_NUMBER> is an integer between 0 and 31, inclusive. The Generic Worker config setting loopbackAudioDeviceNumber may be used to change the device number in case the default value (16) conflicts with another audio device on the worker. Future releases of Generic Worker may provide the capability of having more than one virtual audio device; currently only one virtual audio device is supported.

▶ [patch] #​6481
Allow git SSH urls in metadata.source.

▶ [patch] #​6476
Generic Worker now checks the Index to see if there is a new version of an Indexed Artifact available. If there isn't, it is fine to use its cached copy, but if there is, it updates its cache.

▶ [patch]
Generic Worker: If a Docker Worker payload is received, the resulting, d2g-translated Generic Worker payload will be logged out to the user.

▶ [patch] #​6438
dependencies are no longer removed from the task definition when you Edit or Retrigger a task.

DEVELOPERS

▶ [minor] #​6269
Generic Worker now provides configuration property maxTaskRunTime as an upper bound for task payload property maxRunTime. Tasks with maxRunTime exceeding this value will be resolved as exception/malformed-payload.

OTHER

▶ Additional changes not described here: #​6482, #​6484.

Automated Package Updates
3 Dependabot/Renovate updates
  • build(deps): bump taskcluster-taskgraph in /taskcluster (172ce2d)
  • build(deps): bump protobufjs from 6.11.3 to 6.11.4 (328acc6)
  • build(deps): bump slugid from 3.2.0 to 4.0.0 in /clients/client (22eb08a)

v54.4.2

Compare Source

GENERAL

▶ [patch]
Upgrades go to 1.21.0 and node to 18.17.1

USERS

▶ [patch] #​6440
Generic Worker now allocates a pseudo tty when running Docker Worker tasks, to
emulate Docker Worker behavior. Previously it did not allocate a tty, which
could result in e.g. output not being colored.

OTHER

▶ Additional changes not described here: #​6400, #​6414, #​6442.

Automated Package Updates
11 Dependabot/Renovate updates
  • build(deps-dev): bump eslint in /clients/client-web (7b132ce)
  • build(deps-dev): bump zen-observable from 0.8.15 to 0.10.0 (b6098fa)
  • build(deps): bump github.com/iancoleman/strcase from 0.2.0 to 0.3.0 (deea495)
  • build(deps-dev): bump @​babel/core in /clients/client-web (c5e7d8a)
  • build(deps-dev): bump karma-coverage in /clients/client-web (8c0c793)
  • build(deps): bump pyyaml from 6.0 to 6.0.1 in /taskcluster (f818ba8)
  • build(deps): bump taskcluster from 54.1.2 to 54.4.1 in /taskcluster (06d02af)
  • build(deps-dev): bump nock from 13.3.1 to 13.3.2 in /clients/client (58f394b)
  • build(deps): bump aws-sdk from 2.1376.0 to 2.1426.0 (bfb7016)
  • build(deps): bump golang.org/x/tools from 0.11.0 to 0.11.1 (7420158)
  • build(deps): bump certifi from 2023.5.7 to 2023.7.22 in /taskcluster (5f36427)

v54.4.1

Compare Source

GENERAL

▶ [patch]
Upgrade Node.js to 18.17.0.

ADMINS

▶ [patch] #​6405
Expire artifacts job no longer logs errors for each missing artifact. Instead it reports the number of missing artifacts at the end of the job.

USERS

▶ [patch]
Adds a task log letting the user know their Docker Worker payload is being converted to a Generic Worker payload using d2g.

Automated Package Updates
1 Dependabot/Renovate updates
  • build(deps): bump aiohttp from 3.8.4 to 3.8.5 in /taskcluster (56a9903)

v54.4.0

Compare Source

USERS

▶ [minor] #​5961
Generic Worker now supports the osGroups feature on macOS, Linux and
FreeBSD. Support was already added to Windows in Generic Worker 6.0.0.

Example Linux/macOS task (requires docker to be installed on worker):

created: <timestamp>
deadline: <timestamp>
workerType: my-worker-type
provisionerId: mv-provisioner-id
scopes:
  - generic-worker:os-group:my-provisioner-id/my-worker-type/docker
payload:
  osGroups:
    - docker
  command:
    - - docker
      - run
      - --rm
      - ubuntu:latest
      - /usr/bin/echo
      - hello
  maxRunTime: 60
metadata:
  name: Ubuntu - docker test
  owner: [email protected]
  source: https://github.com/taskcluster/taskcluster/pull/6397
  description: Test calling docker from a Generic Worker task

v54.3.1

Compare Source

GENERAL

▶ [patch] #​6420
Fixes generic worker issue where artifacts were no longer being uploaded.

v54.3.0

Compare Source

ADMINS

▶ [patch] #​6405
Expire artifacts handles the case where the artifact is not found during deletion. GCS behaves differently to S3 here, as it will throw an error if the artifact is not found, where S3 would always return 204.

USERS

▶ [minor] #​5967
This change integrates the d2g tool into Generic Worker so that it can accept a valid, Docker Worker payload.

▶ [patch] #​6417
Generic Worker: Interactive sessions suffered from a race condition that was introduced in Generic Worker 54.2.0. This has been fixed.

v54.2.0

Compare Source

USERS

▶ [minor] #​6405
Expire artifacts supports both bulk deletion and single deletion. This can be configured for the deployment using AWS_USE_BULK_DELETE environment variable (false by default). This is needed because not all S3 compatible storages support bulk delete, specifically GCS.
EXPIRE_ARTIFACTS_BATCH_SIZE can be used to control how many records to process at once, i.e. how many parallel delete requests would be sent to storage service (100 by default).

DEVELOPERS

▶ [patch] #​6395
Fixed local development environment where artifacts could not be loaded in the UI. This was caused by not using pinned minio/* images.

▶ [patch] #​6395
Local development environment now supports live log.

v54.1.4

Compare Source

GENERAL

▶ [patch]
Upgrades to go1.20.6 which is a security release.

go1.20.6 (released 2023-07-11) includes a security fix to the net/http package, as well as bug fixes to the compiler, cgo, the cover tool, the go command, the runtime, and the crypto/ecdsa, go/build, go/printer, net/mail, and text/template packages. See the Go 1.20.6 milestone on our issue tracker for details.

USERS

▶ [patch]
Hooks page improvements: extra schedule and exchanges displayed as Badge with a proper tooltip.

v54.1.3

Compare Source

GENERAL

▶ [patch]
This change updates d2g to return the resulting generic worker payload with a 125 exit status code in the retry array to fix an intermittent podman issue while pulling the docker image.

USERS

▶ [patch]
Hooks page now displays table instead of tree view. Table view includes extra information that might be helpful to spot issues with hooks. Most recent task with state is displayed if available, or error if last fire was not successful.

▶ [patch]
UI: Refactors how validation schemas are loaded, to ensure they are only fetched and added once to prevent duplicate schema exceptions.

OTHER

▶ Additional change not described here: #​6380.

v54.1.2

Compare Source

USERS

▶ [patch] #​6330
Fixes UI errors on pages that were loading metaschema twice.

DEVELOPERS

▶ [patch]
Upgrades some rust crates and bumps rust version from 1.65.0 to 1.70.0.

v54.1.1

Compare Source

GENERAL

▶ [patch]
Upgrades to go1.20.5 from go1.19.10.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner September 1, 2023 23:46
@renovate renovate bot enabled auto-merge (rebase) September 1, 2023 23:46
@renovate renovate bot merged commit 555de61 into main Sep 1, 2023
@renovate renovate bot deleted the renovate/taskcluster-client-55.x branch September 1, 2023 23:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants