Skip to content
Open
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [Unreleased]


## [1.14.0] - 2026-03-09

### Added

- Added `--tag` option to `download` command for filtering packages by tags
- Added download command documentation to README with comprehensive usage examples
- Added `--filename` option to `download` command for filtering by package filename, with support for glob patterns (e.g., `--filename '*.snupkg'`)
- Added `--download-all` flag to `download` command to download all matching packages instead of erroring on multiple matches
- Multiple packages table now includes a Filename column for easier disambiguation


## [1.13.0] - 2026-02-16

Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,16 @@ cloudsmith download your-account/your-repo package-name --tag latest
# Combine tag with metadata filters
cloudsmith download your-account/your-repo package-name --tag stable --format deb --arch arm64

# Filter by filename (exact or glob pattern)
cloudsmith download your-account/your-repo package-name --filename '*.nupkg'
cloudsmith download your-account/your-repo package-name --filename 'mypackage-1.0.0.snupkg'

# Download all matching packages (when multiple packages share the same name/version)
cloudsmith download your-account/your-repo package-name --download-all

# Combine --download-all with --filename to download a subset
cloudsmith download your-account/your-repo package-name --download-all --filename '*.snupkg'

# Download all associated files (POM, sources, javadoc, etc.)
cloudsmith download your-account/your-repo package-name --all-files

Expand Down
Loading