devstack-cli 10.0.170__tar.gz → 10.0.172__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: devstack-cli
3
- Version: 10.0.170
3
+ Version: 10.0.172
4
4
  Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
5
5
  Author-email: Stefan Mückstein <stefan@cloudomation.com>
6
6
  Project-URL: Homepage, https://cloudomation.com/
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "devstack-cli"
3
- version = "10.0.170"
3
+ version = "10.0.172"
4
4
  authors = [
5
5
  { name="Stefan Mückstein", email="stefan@cloudomation.com" },
6
6
  ]
@@ -485,6 +485,7 @@ class Cli:
485
485
  self.password = os.environ.get('DEVSTACK_CLI_PASSWORD')
486
486
  if not self.password:
487
487
  self.password = self._console_input(f'Enter your password to authenticate "{user_name}" to {workspace_url}: ', password=True)
488
+ self.twofa_code = self._console_input('Enter a current two-factor authentication code (if enabled): ', password=True)
488
489
 
489
490
  maximum_uptime_hours = self.args.maximum_uptime_hours or self.config['global'].get('maximum_uptime_hours')
490
491
  if not maximum_uptime_hours:
@@ -541,6 +542,8 @@ class Cli:
541
542
  json={
542
543
  'user_name': self.config['global']['user_name'],
543
544
  'password': self.password,
545
+ 'twofa_code': self.twofa_code,
546
+ 'authentication_method': 'cloudomation',
544
547
  },
545
548
  )
546
549
  if response.status != 200:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: devstack-cli
3
- Version: 10.0.170
3
+ Version: 10.0.172
4
4
  Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
5
5
  Author-email: Stefan Mückstein <stefan@cloudomation.com>
6
6
  Project-URL: Homepage, https://cloudomation.com/
@@ -0,0 +1,9 @@
1
+ """
2
+ constants, set by build
3
+ """
4
+
5
+ MAJOR = '10'
6
+ BRANCH_NAME = 'release-10'
7
+ BUILD_DATE = '2025-01-15-040527'
8
+ SHORT_SHA = '5300825'
9
+ VERSION = '10+release-10.2025-01-15-040527.5300825'
@@ -1,9 +0,0 @@
1
- """
2
- constants, set by build
3
- """
4
-
5
- MAJOR = '10'
6
- BRANCH_NAME = 'release-10'
7
- BUILD_DATE = '2025-01-14-040333'
8
- SHORT_SHA = 'd9f8a2a'
9
- VERSION = '10+release-10.2025-01-14-040333.d9f8a2a'
File without changes