Skip to content

Commit 9b79af6

Browse files
author
ChadKluck
committed
updated update.py see changelog
1 parent 7f6f535 commit 9b79af6

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

cli/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ To update your local cli scripts from GitHub repository:
1212
- Refer to [TODO](../TODO.md) for upcoming BETA fixes and features.
1313
- Report any issues not covered in TODO via the [Issues page in the GitHub repository](https://github.com/63Klabs/atlantis-cfn-configuration-repo-for-serverless-deployments/issues)
1414

15-
## v0.0.6 (2025-06-xx)
15+
## v0.0.7 (2025-06-xx)
16+
17+
Upcoming
18+
19+
## v0.0.6 (2025-06-09)
1620

1721
Mostly stable. Still in Beta.
1822

23+
- Fixed issue in update.py where if the AWS session token required a refresh, it would skip the requested pull
24+
1925
## v0.0.5 (2025-06-07)
2026

2127
Mostly stable. Still in Beta.

cli/update.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
VERSION = "v0.1.3/2025-06-05"
3+
VERSION = "v0.1.4/2025-06-09"
44
# Created by Chad Kluck with AI assistance from Amazon Q Developer
55

66
import os
@@ -855,6 +855,10 @@ def main():
855855
success = False
856856
zip_loc = None
857857
git_manager = GitOperationsManager(args.headless)
858+
update_manager = UpdateManager(
859+
args.profile, args.dryrun,
860+
args.no_browser
861+
)
858862

859863
try:
860864
Log.info(f"{sys.argv}")
@@ -881,10 +885,6 @@ def main():
881885

882886
# Perform Update
883887
try:
884-
update_manager = UpdateManager(
885-
args.profile, args.dryrun,
886-
args.no_browser
887-
)
888888

889889
zip_loc = update_manager.download_zip()
890890

0 commit comments

Comments
 (0)