suite-py 1.43.2__py3-none-any.whl → 1.43.4__py3-none-any.whl

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.
suite_py/__version__.py CHANGED
@@ -1,2 +1,2 @@
1
1
  # -*- encoding: utf-8 -*-
2
- __version__ = "1.43.2"
2
+ __version__ = "1.43.4"
suite_py/cli.py CHANGED
@@ -325,7 +325,7 @@ def cli_check(obj):
325
325
  obj.call(Check).run()
326
326
 
327
327
 
328
- @main.command("login", help="manage login against Auth0")
328
+ @main.command("login", help="Manage login against Okta")
329
329
  @click.pass_obj
330
330
  @catch_exceptions
331
331
  def login(obj):
suite_py/lib/logger.py CHANGED
@@ -17,7 +17,7 @@ def setup(verbose):
17
17
  level=level,
18
18
  format=LOG_FORMAT,
19
19
  datefmt="[%X]",
20
- handlers=[RichHandler(rich_tracebacks=True, markup=False)],
20
+ handlers=[RichHandler(rich_tracebacks=True, markup=False, show_path=False)],
21
21
  )
22
22
 
23
23
  logger = logging.getLogger(LOGGER_NAME)
suite_py/lib/oauth.py CHANGED
@@ -99,10 +99,10 @@ def authorization_code_flow(
99
99
  redirect_uri="http://127.0.0.1:5000/callback",
100
100
  listen=("127.0.0.1", 5000),
101
101
  ):
102
- # from https://auth0.com/docs/flows/add-login-using-the-authorization-code-flow-with-pkce
103
- # Step1: Create code verifier: Generate a code_verifier that will be sent to Auth0 to request tokens.
102
+ # From https://developer.okta.com/docs/guides/sign-into-web-app-redirect/python/main/
103
+ # Step1: Create code verifier: Generate a code_verifier that will be sent to Okta to request tokens.
104
104
  verifier = _url_encode_no_padding(secrets.token_bytes(32))
105
- # Step2: Create code challenge: Generate a code_challenge from the code_verifier that will be sent to Auth0 to request an authorization_code.
105
+ # Step2: Create code challenge: Generate a code_challenge from the code_verifier that will be sent to Okta to request an authorization_code.
106
106
  challenge = _generate_challenge(verifier)
107
107
  state = _url_encode_no_padding(secrets.token_bytes(32))
108
108
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: suite-py
3
- Version: 1.43.2
3
+ Version: 1.43.4
4
4
  Summary:
5
5
  Author: larrywax, EugenioLaghi, michelangelomo
6
6
  Author-email: devops@prima.it
@@ -28,7 +28,7 @@ Requires-Dist: pytest (>=7.0.0)
28
28
  Requires-Dist: python-dateutil (>=2.8.2)
29
29
  Requires-Dist: requests (>=2.26.0)
30
30
  Requires-Dist: requests-toolbelt (>=0.9.1)
31
- Requires-Dist: rich (==13.9.4)
31
+ Requires-Dist: rich (==14.0.0)
32
32
  Requires-Dist: semver (>=3.0.4,<4.0.0)
33
33
  Requires-Dist: termcolor (>=1.1.0)
34
34
  Requires-Dist: truststore (>=0.7,<0.11) ; python_version >= "3.10"
@@ -1,6 +1,6 @@
1
1
  suite_py/__init__.py,sha256=REmi3D0X2G1ZWnYpKs8Ffm3NIj-Hw6dMuvz2b9NW344,142
2
- suite_py/__version__.py,sha256=SR24OnP25lyhv9S8uSr8R09yJ7ur2tBrLIa4zoztNdc,49
3
- suite_py/cli.py,sha256=dqLHo7HADRcXj0xD278bYZjCywx4YUfVFxCvQvjNoi4,10271
2
+ suite_py/__version__.py,sha256=w3tVD5lyKBwCl5ZXYrElSDauAfbifeM2SpIKA2BUPQI,49
3
+ suite_py/cli.py,sha256=i548aSSz6zy-2PTieWzql-qv3GQI3Wv86ZlQNCIbM_0,10270
4
4
  suite_py/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  suite_py/commands/ask_review.py,sha256=yN__Ac-fiZBPShjRDhyCCQZGfVlQE16KozoJk4UtiNw,3788
6
6
  suite_py/commands/bump.py,sha256=oFZU1hPfD11ujFC5G7wFyQOf2alY3xp2SO1h1ldjf3s,5406
@@ -30,16 +30,16 @@ suite_py/lib/handler/pre_commit_handler.py,sha256=nwqVgC-KnUjn7NVIHZ0VmDdUfp6Q1i
30
30
  suite_py/lib/handler/prompt_utils.py,sha256=vgk1O7h-iYEAZv1sXtMh8xIgH1djI398rzxRIgZWZcg,2474
31
31
  suite_py/lib/handler/version_handler.py,sha256=DXTx4yCAbFVC6CdMqPJ-LiN5YM-dT2zklG8POyKTP5A,6774
32
32
  suite_py/lib/handler/youtrack_handler.py,sha256=eTGBBXjlN_ay1cawtnZ2IG6l78dDyKdMN1x6PxcvtA0,7499
33
- suite_py/lib/logger.py,sha256=d162j5BWDDkss424-aTviJNR4uFulP8_P__wn42MvtU,1012
33
+ suite_py/lib/logger.py,sha256=aL870R69enNL9K8mQrMFgSAVUPXXgkvaVp6xTprCBWA,1029
34
34
  suite_py/lib/metrics.py,sha256=urTBVzIc1Ys6OHPOO32fLPPRcQU45tzM3XMJ7mUl5dc,1629
35
- suite_py/lib/oauth.py,sha256=DhXimUu7MDscQsMyt3L04_kw0ZmuqmhYG6KZTPlKqNQ,5083
35
+ suite_py/lib/oauth.py,sha256=tE3MgCnYhW6ZIbkyeUohFTOUvnBsrJXfHN8XsAVQNXk,5077
36
36
  suite_py/lib/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  suite_py/lib/requests/auth.py,sha256=wN_WtGFmDUWRFilWzOmUaRBvP2n3EPpPMqex9Zjddko,228
38
38
  suite_py/lib/requests/session.py,sha256=P32H3cWnCWunu91WIj2iDM5U3HzaBglg60VN_C9JBL4,267
39
39
  suite_py/lib/symbol.py,sha256=z3QYBuNIwD3qQ3zF-cLOomIr_-C3bO_u5UIDAHMiyTo,60
40
40
  suite_py/lib/tokens.py,sha256=4DbsHDFLIxs40t3mRw_ZyhmejZQ0Bht7iAL8dTCTQd4,5458
41
41
  suite_py/templates/login.html,sha256=fJLls2SB84oZTSrxTdA5q1PqfvIHcCD4fhVWfyco7Ig,861
42
- suite_py-1.43.2.dist-info/METADATA,sha256=r4xQWkD6GVipj2lUmc941wyj7pjxjUIc-KdgPBFA3A4,1250
43
- suite_py-1.43.2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
44
- suite_py-1.43.2.dist-info/entry_points.txt,sha256=dVKLC-9Infy-dHJT_MkK6LcDjOgBCJ8lfPkURJhBjxE,46
45
- suite_py-1.43.2.dist-info/RECORD,,
42
+ suite_py-1.43.4.dist-info/METADATA,sha256=YMvfM9IDcAbA6QO5C_WkEKhPUYvPBVBq3hj5sRRQxjM,1250
43
+ suite_py-1.43.4.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
44
+ suite_py-1.43.4.dist-info/entry_points.txt,sha256=dVKLC-9Infy-dHJT_MkK6LcDjOgBCJ8lfPkURJhBjxE,46
45
+ suite_py-1.43.4.dist-info/RECORD,,