Skip to content

Commit 4de81de

Browse files
authored
Fix for auth workflow due to Click 8.3.0 issue (#234)
* Blocking Click 8.3.0 as this is a breaking version. Reverting to 8.2.x for now. * changelog for v1.9.1 * chore: add CODEOWNERS (#231) (#233) * Updating package name for zipapp issue on tag release. * Fix indentations for load_config function.
1 parent 1755cf7 commit 4de81de

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.0
2+
current_version = 1.9.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<revision>\d+)

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
oidc-service-slug: ${{ vars.CLOUDSMITH_SVC_SLUG }}
5454
- name: Push Zipapp to Cloudsmith
5555
id: push_zipapp
56-
run: cloudsmith push raw ${{ vars.CLOUDSMITH_NAMESPACE }}/cli-zipapp ./cloudsmith-${{ env.VERSION }}.pyz
56+
run: cloudsmith push raw ${{ vars.CLOUDSMITH_NAMESPACE }}/cli-zipapp ./cloudsmith-${{ env.VERSION }}.pyz --name cloudsmith-cli --version ${{ env.VERSION }}
5757
- name: Build Docker image
5858
id: build_cli_image
5959
run: |

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.9.1] - 2025-11-05
11+
12+
### Fixed
13+
14+
- Click v8.3.0 was a breaking update which impacted conversion of Sentinel.UNSET values which impacted the auth --token workflow. Locking to 8.2.x versions and restricted 8.3.0 explicitly.
15+
1016
## [1.9.0] - 2025-11-05
1117

1218
### Added

cloudsmith_cli/data/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.0
1+
1.9.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def get_long_description():
4949
platforms=["any"],
5050
python_requires=">=3.9.0",
5151
install_requires=[
52-
"click>=8.2.0",
52+
"click>=8.2.0,!=8.3.0",
5353
"click-configfile>=0.2.3",
5454
"click-didyoumean>=0.0.3",
5555
"click-spinner>=0.1.7",

0 commit comments

Comments
 (0)