8000 Merge branch 'main' into iteration_id_as_boards_create_attribute · python-gitlab/python-gitlab@c336ece · GitHub
[go: up one dir, main page]

Skip to content

Commit c336ece

Browse files
Merge branch 'main' into iteration_id_as_boards_create_attribute
2 parents 92d7cf8 + 203bd92 commit c336ece

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Python Semantic Release
2323
id: release
24-
uses: python-semantic-release/python-semantic-release@v9.21.0
24+
uses: python-semantic-release/python-semantic-release@v9.21.1
2525
with:
2626
github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
2727

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
hooks:
88
- id: black
99
- repo: https://github.com/commitizen-tools/commitizen
10-
rev: v4.6.1
10+
rev: v4.7.0
1111
hooks:
1212
- id: commitizen
1313
stages: [commit-msg]

docs/gl_objects/job_token_scope.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ Get a project's CI/CD job token inbound groups allowlist::
8282

8383
allowlist = scope.groups_allowlist.list(get_all=True)
8484

85-
Add a project to the project's inbound groups allowlist::
85+
Add a group to the project's inbound groups allowlist::
8686

87-
allowed_project = scope.groups_allowlist.create({"target_project_id": 42})
87+
allowed_group = scope.groups_allowlist.create({"target_group_id": 42})
8888

89-
Remove a project from the project's inbound agroups llowlist::
89+
Remove a group from the project's inbound groups allowlist::
9090

91-
allowed_project.delete()
91+
allowed_group.delete()
9292
# or directly using a Group ID
9393
scope.groups_allowlist.delete(42)
9494

@@ -97,4 +97,3 @@ Remove a project from the project's inbound agroups llowlist::
9797
Similar to above, the ID attributes you receive from the create and list
9898
APIs are not consistent. To safely retrieve the ID of the allowlisted group
9999
regardless of how the object was created, always use its ``.get_id()`` method.
100-

gitlab/v4/objects/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class ApplicationSettingsManager(
2525
"id",
2626
"default_projects_limit",
2727
"signup_enabled",
28+
"silent_mode_enabled",
2829
"password_authentication_enabled_for_web",
2930
"gravatar_enabled",
3031
"sign_in_text",

requirements-lint.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r requirements.txt
22
argcomplete==2.0.0
33
black==25.1.0
4-
commitizen==4.6.1
4+
commitizen==4.7.0
55
flake8==7.2.0
66
isort==6.0.1
77
mypy==1.15.0
@@ -11,4 +11,4 @@ responses==0.25.7
1111
respx==0.22.0
1212
types-PyYAML==6.0.12.20250402
1313
types-requests==2.32.0.20250328
14-
types-setuptools==80.3.0.20250505
14+
types-setuptools==80.4.0.20250511

0 commit comments

Comments
 (0)
0