Skip to content

Commit 4b5136f

Browse files
fix block bug due to missing argument for quarantine command
fix quarantine command bug
1 parent dde9843 commit 4b5136f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [1.10.1] - 2025-12-16
11+
12+
### Fixed
13+
14+
- Fixed quarantine block/add command
15+
1016
## [1.10.0] - 2025-12-16
1117

1218
### Fixed

cloudsmith_cli/cli/commands/quarantine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def quarantine(ctx, opts): # pylint: disable=unused-argument
5151
"""
5252

5353

54-
def add_quarantine(ctx, opts, owner_repo_package, page, page_size):
54+
def add_quarantine(ctx, opts, owner_repo_package, page, page_size, page_all):
5555
"""
5656
Add a package to quarantine.
5757
@@ -98,7 +98,7 @@ def add(*args, **kwargs): # pylint: disable=missing-docstring
9898
return add_quarantine(*args, **kwargs)
9999

100100

101-
def remove_quarantine(ctx, opts, owner_repo_package, page, page_size):
101+
def remove_quarantine(ctx, opts, owner_repo_package, page, page_size, page_all):
102102
"""
103103
Remove a package from quarantine.
104104

0 commit comments

Comments
 (0)