8000 feat: Extend GraphQL class to support multiple authentication methods… by timmy61109 · Pull Request #3177 · python-gitlab/python-gitlab · GitHub
[go: up one dir, main page]

Skip to content

feat: Extend GraphQL class to support multiple authentication methods… #3177

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

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7bbcba2
feat(graphql): Extend GraphQL class to support multiple authenticatio…
timmy61109 Apr 18, 2025
824cda6
feat(feat): Add class method to create Gitlab connection from configu…
timmy61109 Apr 18, 2025
97c4619
feat(graphql): Add class method to create Gitlab connection from conf…
timmy61109 Apr 18, 2025
d64f91e
chore(deps): Upgrade version
timmy61109 Apr 18, 2025
1d70177
feat(api): Class _BaseGraphQL add parameter and class variable
timmy61109 Apr 18, 2025
3858e74
refactor(api): Test retries number
timmy61109 Apr 18, 2025
786074c
refactor(api): Test retries number
timmy61109 Apr 18, 2025
4d8d7eb
feat(api): Change valum name
timmy61109 Apr 22, 2025
68f0932
feat(api): Class _BaseGraphQL add parameter and class variable
timmy61109 Apr 22, 2025
3bbacc0
docs(version): Update documentation
timmy61109 Apr 22, 2025
ca6c9e7
docs(version): Update documentation
timmy61109 Apr 22, 2025
41e57b9
fix(api): Fix duplicate argument 'private_token' in function definition
timmy61109 Apr 22, 2025
f86fb8e
feat(api): Use client.execute variables
timmy61109 Apr 22, 2025
0d4de01
feat(graphql): Add parameter and class variable to GraphQL
timmy61109 Apr 23, 2025
859c550
feat(graphql): Add parameter and class variable to AsyncGraphQL
timmy61109 Apr 23, 2025
4198b3b
style: Update code formatting
timmy61109 Apr 23, 2025
a6fd190
feat: Add exclude path
timmy61109 Apr 23, 2025
aa3dd24
feat(test): Using variable_values
timmy61109 Apr 23, 2025
cf4feef
fix(graphql): Fix kwargs unused
timmy61109 Apr 23, 2025
58c2916
fix(graphql): Fix variable_values unused
timmy61109 Apr 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## v5.7.0 (2025-04-22)

### Features

- **group**: Add can use config file.
([`c70cd7a`](https://github.com/python-gitlab/python-gitlab/pull/3177/commits/c70cd7a8a3c1a81dd4e4495843461c066e11d310))

## v5.6.1 (2025-04-18)

### Features

- **group**: Add can use config file.
([`bf7eba5`](https://github.com/python-gitlab/python-gitlab/pull/3177/commits/bf7eba5909669e19757ef1c5b590f613be00d5f4))
Copy link
Member

Choose a reason for hiding this comment

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

Semantic release will automatically create changelog entries. So should not modify this file.

Copy link
Author

Choose a reason for hiding this comment

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

Sorry, I made a change because Python 3 detection requires a new version number. I'll either remove this change before the official merge or rebase to your latest version and then use your version number.


## v5.6.0 (2025-01-28)

Expand All @@ -8,7 +21,6 @@
- **group**: Add support for group level MR approval rules
([`304bdd0`](https://github.com/python-gitlab/python-gitlab/commit/304bdd09cd5e6526576c5ec58cb3acd7e1a783cb))


## v5.5.0 (2025-01-28)

### Chores
Expand Down
2 changes: 1 addition & 1 deletion gitlab/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
__email__ = "gauvainpocentek@gmail.com"
__license__ = "LGPL3"
__title__ = "python-gitlab"
__version__ = "6.0.0"
__version__ = "5.7.1"
Copy link
Member

Choose a reason for hiding this comment

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

Semantic release will automatically update the version number. So should not modify this file.

Copy link
Author

Choose a reason for hiding this comment

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

Sorry, I made a change because Python 3 detection requires a new version number. I'll either remove this change before the official merge or rebase to your latest version and then use your version number.

9D29
Copy link
Preview
Copilot AI Jun 10, 2025

Choose a reason for hiding this comment

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

The version number was downgraded from 6.0.0 to 5.7.1, which is inconsistent with the feature additions in this PR. Please update the version number to appropriately reflect the new feature set.

Suggested change
__version__ = "5.7.1"
__version__ = "6.1.0"

Copilot uses AI. Check for mistakes.

Loading
Loading
0