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: bump to 12.2.0 #628

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## [12.2.0] - 2025-01-15

### Added

- fetch-content: support for downloading a single file and putting it in an archive

### Fixed

- use base repo for project name in github .taskcluster.yml template (#610)
- added False as option in from-deps set-name config (#621)
- fetch-content: use urlopen's context parameter instead of cafile (#618)
- run-task: update our copy of robustcheckout hg extension (#617)
- avoid computing expensive default values when the value is overridden anyways

### Changed

- hash the uncompressed contents of docker context tar (#626)

## [12.1.0] - 2024-11-21

### Added
Expand Down Expand Up @@ -40,7 +58,7 @@
### Fixed

- A couple more regressions with the Decision image
- Cleaned up temporary `uv` lockfile owend by root
- Cleaned up temporary `uv` lockfile owned by root
- Added another `--no-cache` flag to a `uv` command
- `run-task` now installs packages to user site dir when installing requirements with `uv`
- Fetch tasks using `static-url` will now properly rename non-archive files
Expand Down
2 changes: 1 addition & 1 deletion src/taskgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

__version__ = "12.1.0"
__version__ = "12.2.0"

# Maximum number of dependencies a single task can have
# https://docs.taskcluster.net/docs/reference/platform/queue/api#createTask
Expand Down
Loading