Skip to content
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,20 @@ Types of changes

# Latch SDK Changelog

## 2.67.2 - 2025-08-26

### Dependencies

* Latch nextflow version bumped to v3.0.6 (support `spot` argument for processes)

## 2.67.1 - 2025-08-25

### Added

* `latch dockerfile` now has two new options, `--output` and `--config-path` for choosing where to write the output Dockerfile and where to read/write the `.latch/config` used to generate the dockerfile
* `latch nextflow generate-entrypoint` option `--destination` is now named `--output`

### Changes
### Changed

* `latch dockerfile` now generates a `.dockerignore` always without asking for confirmation.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include = ["src/**/*.py", "src/**/py.typed", "src/latch_cli/services/init/*"]

[project]
name = "latch"
version = "2.67.1"
version = "2.67.2"
description = "The Latch SDK"
authors = [{ name = "Kenny Workman", email = "[email protected]" }]
maintainers = [{ name = "Ayush Kamat", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion src/latch_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class LatchConstants:
base_image: str = (
"812206152185.dkr.ecr.us-west-2.amazonaws.com/latch-base:cb01-main"
)
nextflow_latest_version: str = "v3.0.5"
nextflow_latest_version: str = "v3.0.6"

file_max_size: int = 4 * Units.MiB
file_chunk_size: int = 64 * Units.MiB
Expand Down