Skip to content

Commit e57ea7d

Browse files
committed
v44.16.3
1 parent 4b6acad commit e57ea7d

File tree

47 files changed

+60
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+60
-56
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<!-- `yarn release` will insert the existing changelog snippets here: -->
44
<!-- NEXT RELEASE HERE -->
55

6+
## v44.16.3
7+
8+
### GENERAL
9+
10+
[patch]
11+
This patch returns up the `quarantineUntil` field in the `workerManager.getWorker` and `workerManager.listWorkers` methods. This issue was first noticed in v44.15.0.
12+
613
## v44.16.2
714

815
### GENERAL

changelog/WFqYtmKPQfuMVMkhEKU9ug.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

clients/client-py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools.command.test import test as TestCommand
55
import sys
66

7-
VERSION = '44.16.2'
7+
VERSION = '44.16.3'
88

99
tests_require = [
1010
'pytest',

clients/client-rust/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/client-rust/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "taskcluster"
3-
version = "44.16.2"
3+
version = "44.16.3"
44
authors = ["Wander Lairson Costa <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"

clients/client-rust/download/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "taskcluster-download"
3-
version = "44.16.2"
3+
version = "44.16.3"
44
authors = ["Dustin J. Mitchell <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
77
description = "Taskcluster Download Support"
88
repository = "https://github.com/taskcluster/taskcluster"
99

1010
[dependencies]
11-
taskcluster = { version = "44.16.2", path = "../client" }
11+
taskcluster = { version = "44.16.3", path = "../client" }
1212
anyhow = "1.0"
1313
async-trait = "0.1"
1414
reqwest = { version = "0.11", features = ["json", "stream", "gzip", "brotli"] }

clients/client-rust/integration_tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "taskcluster-integration-tests"
33
publish = false
4-
version = "44.16.2"
4+
version = "44.16.3"
55
authors = ["Wander Lairson Costa <[email protected]>"]
66
edition = "2018"
77
license = "MPL-2.0"
@@ -12,7 +12,7 @@ description = "API client for Taskcluster"
1212
# has no non-dev dependencies
1313

1414
[dev-dependencies]
15-
taskcluster = { version = "44.16.2", path = "../client" }
15+
taskcluster = { version = "44.16.3", path = "../client" }
1616
taskcluster-upload = { path = "../upload" }
1717
taskcluster-download = { path = "../download" }
1818
httptest = "0.15.3"

clients/client-rust/upload/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "taskcluster-upload"
3-
version = "44.16.2"
3+
version = "44.16.3"
44
authors = ["Dustin J. Mitchell <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
77
description = "Taskcluster Upload Support"
88
repository = "https://github.com/taskcluster/taskcluster"
99

1010
[dependencies]
11-
taskcluster = { version = "44.16.2", path = "../client" }
11+
taskcluster = { version = "44.16.3", path = "../client" }
1212
anyhow = "1.0"
1313
async-trait = "0.1"
1414
reqwest = { version = "0.11", features = ["json", "stream"] }

clients/client-shell/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ platform, run `chmod +x` and run it!
1818

1919
MacOS users run the following command:
2020
```shell
21-
curl -L https://github.com/taskcluster/taskcluster/releases/download/v44.16.2/taskcluster-darwin-amd64 --output taskcluster
21+
curl -L https://github.com/taskcluster/taskcluster/releases/download/v44.16.3/taskcluster-darwin-amd64 --output taskcluster
2222
```
2323
This is to ensure the binary is not quarantined by MacOS.
2424
You will need to `chmod +x` of
2525
course.
2626

27-
* [linux-amd64](https://github.com/taskcluster/taskcluster/releases/download/v44.16.2/taskcluster-linux-amd64)
28-
* [darwin-amd64](https://github.com/taskcluster/taskcluster/releases/download/v44.16.2/taskcluster-darwin-amd64)
27+
* [linux-amd64](https://github.com/taskcluster/taskcluster/releases/download/v44.16.3/taskcluster-linux-amd64)
28+
* [darwin-amd64](https://github.com/taskcluster/taskcluster/releases/download/v44.16.3/taskcluster-darwin-amd64)
2929

3030
## Usage
3131

clients/client-shell/cmds/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var (
4444

4545
// VersionNumber is a formatted string with the version information. This is
4646
// filled in by `yarn release`
47-
VersionNumber = "44.16.2"
47+
VersionNumber = "44.16.3"
4848
)
4949

5050
var log = root.Logger

0 commit comments

Comments
 (0)