Title: [288965] trunk/Tools
Revision
288965
Author
[email protected]
Date
2022-02-02 10:45:56 -0800 (Wed, 02 Feb 2022)

Log Message

[git-webkit] Improve user prompts (Part 1)
https://bugs.webkit.org/show_bug.cgi?id=235655
<rdar://problem/88082697>

Reviewed by Aakash Jain and Dewei Zhu.

* Tools/Scripts/libraries/webkitbugspy/setup.py: Bump version.
* Tools/Scripts/libraries/webkitbugspy/webkitbugspy/__init__.py: Ditto.
* Tools/Scripts/libraries/webkitbugspy/webkitbugspy/github.py: Use token form url.
* Tools/Scripts/libraries/webkitscmpy/setup.py: Bump version.
* Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Ditto.
* Tools/Scripts/libraries/webkitscmpy/webkitscmpy/remote/git_hub.py: Use token form url.

Canonical link: https://commits.webkit.org/246694@main

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (288964 => 288965)


--- trunk/Tools/ChangeLog	2022-02-02 18:44:21 UTC (rev 288964)
+++ trunk/Tools/ChangeLog	2022-02-02 18:45:56 UTC (rev 288965)
@@ -1,3 +1,18 @@
+2022-01-26  Jonathan Bedard  <[email protected]>
+
+        [git-webkit] Improve user prompts (Part 1)
+        https://bugs.webkit.org/show_bug.cgi?id=235655
+        <rdar://problem/88082697>
+
+        Reviewed by Aakash Jain and Dewei Zhu.
+
+        * Scripts/libraries/webkitbugspy/setup.py: Bump version.
+        * Scripts/libraries/webkitbugspy/webkitbugspy/__init__.py: Ditto.
+        * Scripts/libraries/webkitbugspy/webkitbugspy/github.py: Use token form url.
+        * Scripts/libraries/webkitscmpy/setup.py: Bump version.
+        * Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Ditto.
+        * Scripts/libraries/webkitscmpy/webkitscmpy/remote/git_hub.py: Use token form url.
+
 2022-02-02  Sam Sneddon  <[email protected]>
 
         REGRESSION (r288869): webkitpy.w3c.test_converter_unittest.W3CTestConverterTest.test_convert_prefixed_properties is failing

Modified: trunk/Tools/Scripts/libraries/webkitbugspy/webkitbugspy/github.py (288964 => 288965)


--- trunk/Tools/Scripts/libraries/webkitbugspy/webkitbugspy/github.py	2022-02-02 18:44:21 UTC (rev 288964)
+++ trunk/Tools/Scripts/libraries/webkitbugspy/webkitbugspy/github.py	2022-02-02 18:45:56 UTC (rev 288965)
@@ -89,7 +89,7 @@
             required=required,
             name=self.url.split('/')[2].replace('.', '_').upper(),
             prompt='''GitHub's API
-Please go to https://{host}/settings/tokens and generate a new 'Personal access token' via 'Developer settings'
+Please go to https://{host}/settings/tokens/new and generate a new 'Personal access token' via 'Developer settings'
 with 'repo' and 'workflow' access and appropriate 'Expiration' for your {host} user'''.format(host=hostname),
             key_name='token',
         )

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/setup.py (288964 => 288965)


--- trunk/Tools/Scripts/libraries/webkitscmpy/setup.py	2022-02-02 18:44:21 UTC (rev 288964)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/setup.py	2022-02-02 18:45:56 UTC (rev 288965)
@@ -29,7 +29,7 @@
 
 setup(
     name='webkitscmpy',
-    version='3.1.4',
+    version='3.1.5',
     description='Library designed to interact with git and svn repositories.',
     long_description=readme(),
     classifiers=[

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py (288964 => 288965)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py	2022-02-02 18:44:21 UTC (rev 288964)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py	2022-02-02 18:45:56 UTC (rev 288965)
@@ -46,7 +46,7 @@
         "Please install webkitcorepy with `pip install webkitcorepy --extra-index-url <package index URL>`"
     )
 
-version = Version(3, 1, 4)
+version = Version(3, 1, 5)
 
 AutoInstall.register(Package('fasteners', Version(0, 15, 0)))
 AutoInstall.register(Package('jinja2', Version(2, 11, 3)))

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/remote/git_hub.py (288964 => 288965)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/remote/git_hub.py	2022-02-02 18:44:21 UTC (rev 288964)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/remote/git_hub.py	2022-02-02 18:45:56 UTC (rev 288965)
@@ -309,8 +309,8 @@
             required=required,
             name=self.url.split('/')[2].replace('.', '_').upper(),
             prompt='''GitHub's API
-        Please go to https://{host}/settings/tokens and generate a new 'Personal access token' via 'Developer settings'
-        with 'repo' and 'workflow' access and appropriate 'Expiration' for your {host} user'''.format(host=hostname),
+Please go to https://{host}/settings/tokens/new and generate a new 'Personal access token' via 'Developer settings'
+with 'repo' and 'workflow' access and appropriate 'Expiration' for your {host} user'''.format(host=hostname),
             key_name='token',
         )
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to