Skip to content

feat(api): default to gitlab.com if no URL given #1278

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 8, 2021

Conversation

nejch
Copy link
Member

@nejch nejch commented Jan 31, 2021

The github CLI (gh) defaults to github.com if no arguments are given. Something similar would make sense here IMO, just for convenience :)

Copy link
Member

@bufferoverflow bufferoverflow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great idea!

@codecov-io
Copy link

Codecov Report

Merging #1278 (2edd69c) into master (643454c) will increase coverage by 0.00%.
The diff coverage is 100.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #1278   +/-   ##
=======================================
  Coverage   78.19%   78.19%           
=======================================
  Files          12       12           
  Lines        2884     2885    +1     
=======================================
+ Hits         2255     2256    +1     
  Misses        629      629           
Flag Coverage Δ
unit 78.19% <100.00%> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
gitlab/const.py 100.00% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 643454c...2edd69c. Read the comment docs.

@nejch nejch marked this pull request as ready for review February 4, 2021 22:04
@JohnVillalovos
Copy link
Member

JohnVillalovos commented Feb 23, 2021

If you do decide to make a breaking change I wonder if requiring kwargs would be a good idea?

def __init__(
    self,
    *,
    url,
    private_token=None,
    oauth_token=None,
    job_token=None,
    ssl_verify=True,
    http_username=None,
    http_password=None,
    timeout=None,
    api_version="4",
    session=None,
    per_page=None,
    pagination=None,
    order_by=None,
    user_agent=gitlab.const.USER_AGENT,
):

And okay if people think it is a terrible idea 🙂 Just thought I would mention it.

@max-wittig
Copy link
Member

@JohnVillalovos Not sure what you mean by requiring kwargs would be a good idea. Could you elaborate?

@JohnVillalovos
Copy link
Member

JohnVillalovos commented Feb 26, 2021

@JohnVillalovos Not sure what you mean by requiring kwargs would be a good idea. Could you elaborate?

Sure. So by using the * in the argument list it will require people to use keyword arguments.

Allowed:

gl = gitlab.Gitlab(url="gitlab.com")

Not allowed:

gl = gitlab.Gitlab("gitlab.com")

TypeError: __init__() takes 1 positional argument but 2 were given

It is a breaking change for sure to do that.

@max-wittig
Copy link
Member

@JohnVillalovos I'm not so sure. I'm not really a fan of this change. This would really break everything.

@JohnVillalovos
Copy link
Member

JohnVillalovos commented Feb 26, 2021

@JohnVillalovos I'm not so sure. I'm not really a fan of this change. This would really break everything.

No worries. As a note you can put the * where ever you like in the arguments list. So if you wanted to require keyword arguments for everything but url you could put the * after the url argument.

def __init__(
    self,
    url,
    *,
    private_token=None,
    oauth_token=None,
    job_token=None,
    ssl_verify=True,
    http_username=None,
    http_password=None,
    timeout=None,
    api_version="4",
    session=None,
    per_page=None,
    pagination=None,
    order_by=None,
    user_agent=gitlab.const.USER_AGENT,
):

@nejch nejch added this to the v3.0.0 milestone Apr 27, 2021
@nejch nejch mentioned this pull request Jun 14, 2021
15 tasks
@nejch nejch force-pushed the feat/default-url branch 2 times, most recently from 7bc388c to edfb416 Compare September 8, 2021 20:22
BREAKING CHANGE: python-gitlab will now default to gitlab.com
if no URL is given
@nejch
Copy link
Member Author

nejch commented Sep 8, 2021

@JohnVillalovos I'm not so sure. I'm not really a fan of this change. This would really break everything.

No worries. As a note you can put the * where ever you like in the arguments list. So if you wanted to require keyword arguments for everything but url you could put the * after the url argument.

def __init__(
    self,
    url,
    *,
    private_token=None,
    oauth_token=None,
    job_token=None,
    ssl_verify=True,
    http_username=None,
    http_password=None,
    timeout=None,
    api_version="4",
    session=None,
    per_page=None,
    pagination=None,
    order_by=None,
    user_agent=gitlab.const.USER_AGENT,
):

I agree with Max I've seen a lot of use of this in tiny scripts, and there people probably want to use quick one-liners without kwargs just to instantiate Gitlab with a private token, so I'd keep this as is for now.

@nejch
Copy link
Member Author

nejch commented Sep 8, 2021

@JohnVillalovos while resolving conflicts I consolidated the URL redirect warnings as I saw they were in 3 places, in case you'd like to have 1 final look, but this should also be ready now.

@nejch nejch assigned JohnVillalovos and unassigned nejch Sep 8, 2021
@JohnVillalovos JohnVillalovos merged commit 8236281 into master Sep 8, 2021
@JohnVillalovos JohnVillalovos deleted the feat/default-url branch September 8, 2021 20:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants