Skip to content

Commit 0a7a19e

Browse files
committed
v65.0.2
1 parent f5f9e12 commit 0a7a19e

File tree

50 files changed

+76
-67
lines changed

Some content is hidden

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

50 files changed

+76
-67
lines changed

.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
IMAGE=taskcluster/taskcluster:v65.0.1
2-
IMAGE_DEV=taskcluster/taskcluster:v65.0.1-devel
3-
IMAGE_GENERIC_WORKER=taskcluster/generic-worker:v65.0.1
1+
IMAGE=taskcluster/taskcluster:v65.0.2
2+
IMAGE_DEV=taskcluster/taskcluster:v65.0.2-devel
3+
IMAGE_GENERIC_WORKER=taskcluster/generic-worker:v65.0.2

CHANGELOG.md

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

6+
## v65.0.2
7+
8+
### USERS
9+
10+
▶ [patch] [#7025](https://github.com/taskcluster/taskcluster/issues/7025)
11+
Fixes JavaScript error in "Create Worker Pool" page that was introduced in the last release.
12+
Adds link to "Errors" in workers navigation bar.
13+
14+
### Automated Package Updates
15+
16+
<details>
17+
<summary>2 Dependabot updates</summary>
18+
19+
* --- updated-dependencies: - dependency-name: requests dependency-type: indirect ... (42569ccb7)
20+
* build(deps-dev): bump eslint from 8.57.0 to 9.3.0 in /clients/client-web (2bccd8b63)
21+
22+
</details>
23+
624
## v65.0.1
725

826
### GENERAL

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ARG DOCKER_FLOW_VERSION
4343
RUN if [ -n "${DOCKER_FLOW_VERSION}" ]; then \
4444
echo "${DOCKER_FLOW_VERSION}" > version.json; \
4545
else \
46-
echo \{\"version\": \"65.0.1\", \"commit\": \"local\", \"source\": \"https://github.com/taskcluster/taskcluster\", \"build\": \"NONE\"\} > version.json; \
46+
echo \{\"version\": \"65.0.2\", \"commit\": \"local\", \"source\": \"https://github.com/taskcluster/taskcluster\", \"build\": \"NONE\"\} > version.json; \
4747
fi
4848

4949
# Build the UI and discard everything else in that directory

changelog/O9vA5V01RcKpfVE04-jc8w.md

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

changelog/issue-7025.md

Lines changed: 0 additions & 7 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 = '65.0.1'
7+
VERSION = '65.0.2'
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 = "65.0.1"
3+
version = "65.0.2"
44
authors = ["Wander Lairson Costa <wander.lairson@gmail.com>"]
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 = "65.0.1"
3+
version = "65.0.2"
44
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
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 = "65.0.1", path = "../client" }
11+
taskcluster = { version = "65.0.2", 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 = "65.0.1"
4+
version = "65.0.2"
55
authors = ["Wander Lairson Costa <wander.lairson@gmail.com>"]
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 = "65.0.1", path = "../client" }
15+
taskcluster = { version = "65.0.2", path = "../client" }
1616
taskcluster-upload = { path = "../upload" }
1717
taskcluster-download = { path = "../download" }
1818
httptest = "0.15.3"

0 commit comments

Comments
 (0)