Skip to content
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

chore(bump): Update py-gitguardian #1042

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion ggshield/core/config/auth_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Any, Dict, List, Optional, cast

import marshmallow_dataclass
from pygitguardian.models import FromDictMixin, ToDictMixin
from pygitguardian.models_utils import FromDictMixin, ToDictMixin

from ggshield.core.config.utils import (
get_auth_config_filepath,
Expand Down
2 changes: 1 addition & 1 deletion ggshield/core/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import marshmallow_dataclass
from marshmallow.decorators import pre_load
from pygitguardian.models import FromDictMixin, ToDictMixin
from pygitguardian.models_utils import FromDictMixin, ToDictMixin

from ggshield.core import ui

Expand Down
2 changes: 1 addition & 1 deletion ggshield/verticals/iac/output/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
IaCScanResultSchema,
IaCVulnerabilitySchema,
)
from pygitguardian.models import BaseSchema
from pygitguardian.models_utils import BaseSchema


class IaCJSONVulnerabilitySchema(IaCVulnerabilitySchema):
Expand Down
3 changes: 2 additions & 1 deletion ggshield/verticals/secret/output/schemas.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from marshmallow import fields
from pygitguardian.models import BaseSchema, SecretIncidentSchema
from pygitguardian.models import SecretIncidentSchema
from pygitguardian.models_utils import BaseSchema

from ggshield.verticals.secret.extended_match import ExtendedMatchSchema

Expand Down
8 changes: 4 additions & 4 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies = [
"marshmallow~=3.18.0",
"marshmallow-dataclass~=8.5.8",
"oauthlib~=3.2.1",
"pygitguardian~=1.18.0",
"pygitguardian~=1.19.0",
"pyjwt~=2.6.0",
"python-dotenv~=0.21.0",
"pyyaml~=6.0.1",
Expand Down