| {: , : , : {: , : , : {: {: , : , : }, : {: , : , : }, : , : {: , : }, : , : 0, : {: false, : , : null, : null, : null}}, : , : , : , : {: , : 53624638, : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : false}, : {: , : 53624638, : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : false}, : [{: , : , : }], : {: 106, : 53, : 53}, : [{: , : , : , : 2, : 2, : 4, : , : , : , : pyyaml == 6.0.*\pydantic ~= 1.10\pydantic >= 1.10.17\src\pydantic.mypy\pydantic.v1.mypy\}, {: , : , : , : 1, : 1, : 2, : , : , : , : }, {: , : , : , : 1, : 1, : 2, : , : , : , : }, {: , : , : , : 4, : 4, : 8, : , : , : , : }, {: , : , : , : 1, : 1, : 2, : , : , : , : }, {: , : , : , : 2, : 2, : 4, : , : , : , : }, {: , : , : , : 19, : 19, : 38, : , : , : , : \Given a ModelField and the value that we're given for that field, determine\n the actual ModelField for the value in the event that the ModelField may be for\n a discriminated union.\"\"\"\n@@ -509,7 +509,7 @@ def _collect_variable_definitions( # noqa: C901 (suppress: too complex)\n symbol_name = f\"{symbol_prefix}{symbol}\"\n _add_symbol(symbols[\"__self__\"], current_scope, symbol_name)\n \n- # Note: cls.__fields__: dict[str, pydantic.fields.ModelField]\n+ # Note: cls.__fields__: dict[str, pydantic.v1.fields.ModelField]\n for field_name, field_model in cls.__fields__.items():\n field_value = values.get(field_name, None)\n if field_value is None:\n@@ -519,11 +519,11 @@ def _collect_variable_definitions( # noqa: C901 (suppress: too complex)\n # Literals cannot define variables, so skip this field.\n continue\n \n- if field_model.shape == pydantic.fields.SHAPE_SINGLETON:\n+ if field_model.shape == pydantic.v1.fields.SHAPE_SINGLETON:\n result = _collect_singleton(field_model, field_value, current_scope, symbol_prefix)\n if result:\n symbols[field_name] = result\n- elif field_model.shape == pydantic.fields.SHAPE_LIST:\n+ elif field_model.shape == pydantic.v1.fields.SHAPE_LIST:\n # If the shape expects a list, but the value isn't one then we have a validation error.\n # The error will get flagged by subsequent passes of the model validation.\n if not isinstance(field_value, list):\n@@ -535,7 +535,7 @@ def _collect_variable_definitions( # noqa: C901 (suppress: too complex)\n result = _collect_singleton(item_model, item, current_scope, symbol_prefix)\n if result:\n symbols[field_name].update_self(result)\n- elif field_model.shape == pydantic.fields.SHAPE_DICT:\n+ elif field_model.shape == pydantic.v1.fields.SHAPE_DICT:\n # dict[] fields can't define symbols.\n continue\n else:\n@@ -566,7 +566,7 @@ def _add_symbol(into: ScopedSymtabs, scope: ResolutionScope, symbol_name: str) -\n \n \n def _collect_singleton(\n- model: pydantic.fields.ModelField,\n+ model: pydantic.v1.fields.ModelField,\n value: Any,\n current_scope: ResolutionScope,\n symbol_prefix: str,"}, {"sha": "c8e651f5acd2fc586372884ac0c8d93f25d09a9e", "filename": "src/openjd/model/_parse.py", "status": "modified", "additions": 3, "deletions": 3, "changes": 6, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/src%2Fopenjd%2Fmodel%2F_parse.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/src%2Fopenjd%2Fmodel%2F_parse.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/src%2Fopenjd%2Fmodel%2F_parse.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -7,9 +7,9 @@\n from typing import Any, ClassVar, Optional, Type, TypeVar, Union, cast\n \n import yaml\n-from pydantic import BaseModel\n-from pydantic import ValidationError as PydanticValidationError\n-from pydantic.error_wrappers import ErrorWrapper\n+from pydantic.v1 import BaseModel\n+from pydantic.v1 import ValidationError as PydanticValidationError\n+from pydantic.v1.error_wrappers import ErrorWrapper\n \n from ._errors import DecodeValidationError\n from ._types import EnvironmentTemplate, JobTemplate, OpenJDModel, TemplateSpecificationVersion"}, {"sha": "b47dbc6ccc74f4aed11ba1e233b72cefb564ba90", "filename": "src/openjd/model/_types.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/src%2Fopenjd%2Fmodel%2F_types.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/src%2Fopenjd%2Fmodel%2F_types.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/src%2Fopenjd%2Fmodel%2F_types.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -8,7 +8,7 @@\n from enum import Enum\n from typing import TYPE_CHECKING, Any, Callable, ClassVar, Optional, Type, Union\n \n-from pydantic import BaseModel, Extra\n+from pydantic.v1 import BaseModel, Extra\n \n from ._symbol_table import SymbolTable\n "}, {"sha": "97f6cb5831a9a9d942336404ca9b705f5216705c", "filename": "src/openjd/model/v2023_09/_model.py", "status": "modified", "additions": 2, "deletions": 2, "changes": 4, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/src%2Fopenjd%2Fmodel%2Fv2023_09%2F_model.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/src%2Fopenjd%2Fmodel%2Fv2023_09%2F_model.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/src%2Fopenjd%2Fmodel%2Fv2023_09%2F_model.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -9,7 +9,7 @@\n from typing import TYPE_CHECKING, Any, ClassVar, Literal, Optional, Type, Union, cast\n from typing_extensions import Annotated\n \n-from pydantic import (\n+from pydantic.v1 import (\n Field,\n PositiveInt,\n PositiveFloat,\n@@ -22,7 +22,7 @@\n root_validator,\n validator,\n )\n-from pydantic.error_wrappers import ErrorWrapper\n+from pydantic.v1.error_wrappers import ErrorWrapper\n \n from .._format_strings import FormatString\n from .._errors import ExpressionError, TokenError"}, {"sha": "0ad75ee028e2768118cf4c72edaaa4032d5aeef6", "filename": "test/openjd/model/_internal/test_create_job.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2F_internal%2Ftest_create_job.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2F_internal%2Ftest_create_job.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2F_internal%2Ftest_create_job.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -5,7 +5,7 @@\n from typing import Optional, Union, cast\n \n import pytest\n-from pydantic import PositiveInt, ValidationError\n+from pydantic.v1 import PositiveInt, ValidationError\n \n from openjd.model import SymbolTable\n from openjd.model._format_strings import FormatString"}, {"sha": "e6c06a921393bb5ab06d523dbc76f81b8a9e936d", "filename": "test/openjd/model/_internal/test_variable_reference_validation.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2F_internal%2Ftest_variable_reference_validation.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2F_internal%2Ftest_variable_reference_validation.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2F_internal%2Ftest_variable_reference_validation.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any, Literal, Union\n from enum import Enum\n from typing_extensions import Annotated\n-from pydantic import Field\n+from pydantic.v1 import Field\n \n import pytest\n "}, {"sha": "d6b955a7069ef38f297a38213fd9b200fc37bb03", "filename": "test/openjd/model/format_strings/test_dyn_constrained_str.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fformat_strings%2Ftest_dyn_constrained_str.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fformat_strings%2Ftest_dyn_constrained_str.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fformat_strings%2Ftest_dyn_constrained_str.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n import re\n \n import pytest\n-from pydantic import BaseModel, ValidationError\n+from pydantic.v1 import BaseModel, ValidationError\n \n from openjd.model._format_strings._dyn_constrained_str import DynamicConstrainedStr\n "}, {"sha": "24789e3093a7d239117bb7ad90bc0e41ad67f463", "filename": "test/openjd/model/test_convert_pydantic_error.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Ftest_convert_pydantic_error.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Ftest_convert_pydantic_error.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Ftest_convert_pydantic_error.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -1,6 +1,6 @@\n # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n \n-from pydantic import BaseModel, root_validator, Field\n+from pydantic.v1 import BaseModel, root_validator, Field\n from typing import Literal, Union\n \n from openjd.model._convert_pydantic_error import ("}, {"sha": "c1955a3bd7312ed98347a74020818d4c709cf0ec", "filename": "test/openjd/model/v2023_09/test_action.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_action.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_action.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_action.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import Action, EnvironmentActions, StepActions"}, {"sha": "873e5c5c86d0eb30a16678dc6a806703aafc7b50", "filename": "test/openjd/model/v2023_09/test_definitions.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_definitions.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_definitions.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_definitions.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -1,7 +1,7 @@\n # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n \n import pytest\n-from pydantic import BaseModel\n+from pydantic.v1 import BaseModel\n from typing import Type\n import openjd.model.v2023_09 as mod\n from inspect import getmembers, getmodule, isclass"}, {"sha": "65b9be475bf778ba62e42cd9ca1cd19683d76c0c", "filename": "test/openjd/model/v2023_09/test_embedded.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_embedded.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_embedded.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_embedded.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import EmbeddedFileText"}, {"sha": "2bd9910601c5053758c3b867036419ea113c364b", "filename": "test/openjd/model/v2023_09/test_environment_template.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_environment_template.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_environment_template.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_environment_template.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import EnvironmentTemplate"}, {"sha": "a498b48d371365bafd7271802201edd54d9c6573", "filename": "test/openjd/model/v2023_09/test_environments.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_environments.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_environments.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_environments.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import Environment"}, {"sha": "459c22e498a18270cba1f31632ae42c861df31d3", "filename": "test/openjd/model/v2023_09/test_job_parameters.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_job_parameters.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_job_parameters.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_job_parameters.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -4,7 +4,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import ("}, {"sha": "a4ed7f21b44f42c73a323ad724534d9b11ddf60c", "filename": "test/openjd/model/v2023_09/test_job_template.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_job_template.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_job_template.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_job_template.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import JobTemplate"}, {"sha": "b9d5d0b25563bcc9c0feb781592010ff0625c0bd", "filename": "test/openjd/model/v2023_09/test_parameter_space.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_parameter_space.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_parameter_space.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_parameter_space.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import ("}, {"sha": "7acd2a16b7421667e75bd6b14068ba018a9bec24", "filename": "test/openjd/model/v2023_09/test_scripts.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_scripts.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_scripts.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_scripts.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import EnvironmentScript, StepScript"}, {"sha": "241afcb50f28fd7074c9154c478ca3538648b052", "filename": "test/openjd/model/v2023_09/test_step_host_requirements.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_step_host_requirements.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_step_host_requirements.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_step_host_requirements.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -4,7 +4,7 @@\n import string\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import ("}, {"sha": "dc0770e3411d27801ae0d71fce85b54111fde103", "filename": "test/openjd/model/v2023_09/test_step_template.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_step_template.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_step_template.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_step_template.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import StepTemplate"}, {"sha": "91369dfb83f16253960549b63e960d98f65b9f0a", "filename": "test/openjd/model/v2023_09/test_strings.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_strings.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_strings.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_strings.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -4,7 +4,7 @@\n import string\n \n import pytest\n-from pydantic import BaseModel, ValidationError\n+from pydantic.v1 import BaseModel, ValidationError\n \n from openjd.model.v2023_09 import (\n AmountCapabilityName,"}, {"sha": "4714ea0185e84b9cbccabf058bce1bc3339158a7", "filename": "test/openjd/model/v2023_09/test_template_variables.py", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_template_variables.py", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/1bc447052194e759f9b0606f4588c4a2be7c6fb5/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_template_variables.py", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/test%2Fopenjd%2Fmodel%2Fv2023_09%2Ftest_template_variables.py?ref=1bc447052194e759f9b0606f4588c4a2be7c6fb5", "patch": "@@ -3,7 +3,7 @@\n from typing import Any\n \n import pytest\n-from pydantic import ValidationError\n+from pydantic.v1 import ValidationError\n \n from openjd.model._parse import _parse_model\n from openjd.model.v2023_09 import JobTemplate"}]}} |
| time2024-10-28T18:31:52+00:00typeprpayloadurlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/148idnode_idPR_kwDOKNhT9c6AJCm1html_urlhttps://github.com/OpenJobDescription/openjd-model-for-python/pull/148diff_urlhttps://github.com/OpenJobDescription/openjd-model-for-python/pull/148.diffpatch_urlhttps://github.com/OpenJobDescription/openjd-model-for-python/pull/148.patchissue_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/148numberstateclosedlockedtitlefeat!: compatibility with pydantic v2userloginddneilsonidnode_idMDQ6VXNlcjUzNjI0NjM4avatar_urlhttps://avatars.githubusercontent.com/u/53624638?v=4gravatar_idurlhttps://api.github.com/users/ddneilsonhtml_urlhttps://github.com/ddneilsonfollowers_urlhttps://api.github.com/users/ddneilson/followersfollowing_urlhttps://api.github.com/users/ddneilson/following{/other_user}gists_urlhttps://api.github.com/users/ddneilson/gists{/gist_id}starred_urlhttps://api.github.com/users/ddneilson/starred{/owner}{/repo}subscriptions_urlhttps://api.github.com/users/ddneilson/subscriptionsorganizations_urlhttps://api.github.com/users/ddneilson/orgsrepos_urlhttps://api.github.com/users/ddneilson/reposevents_urlhttps://api.github.com/users/ddneilson/events{/privacy}received_events_urlhttps://api.github.com/users/ddneilson/received_eventstypeUseruser_view_typepublicsite_adminbodyFixes: https://github.com/OpenJobDescription/openjd-model-for-python/issues/107\r\n\r\n### What was the problem/requirement? (What/Why)\r\n\r\nPydantic v1 is EOL, but some users of this library still use it. Those users would like to update to pydantic v2, but this library needs to be compatible with it for that to happen.\r\n\r\n### What was the solution? (How)\r\n\r\nPydantic v2 contains the pydantic v1 in the pydantic.v1 namespace, and pydantic v1.10.17+ also contains this same namespace. So, step one to migrating to Pydantic v2 is to use the pydantic.v1 namespace throughout. Then, in future, the models can be updated to true Pydantic v2 when all consumers are ready for it.\r\n\r\n### What is the impact of this change?\r\n\r\nConsumers of this library can now update to a newer Pydantic without this library blocking them.\r\n\r\n### How was this change tested?\r\n\r\nThe unit tests pass. I've run the tests both with pydantic 1.10.18 and pydantic 2.9.2.\r\n\r\n### Was this change documented?\r\n\r\n- Are relevant docstrings in the code base updated?\r\n\r\n### Is this a breaking change?\r\n\r\nI'm marking this as a breaking change since the pydantic library update is not backwards compatible.\r\n\r\n### Does this change impact security?\r\n\r\nNo\r\n\r\n----\r\n\r\n*By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.*created_at2024-10-28T18:31:52Zupdated_at2024-10-28T19:14:14Zclosed_at2024-10-28T19:14:10Zmerged_at2024-10-28T19:14:10Zmerge_commit_shac359496b6485da9cf2793eb9105fe5012e0292cbassigneesrequested_reviewersrequested_teamslabelsmilestonedraftcommits_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/148/commitsreview_comments_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/148/commentsreview_comment_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/comments{/number}comments_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/148/commentsstatuses_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/1bc447052194e759f9b0606f4588c4a2be7c6fb5headlabelddneilson:pydantic_v2_compatrefpydantic_v2_compatsha1bc447052194e759f9b0606f4588c4a2be7c6fb5userloginddneilsonidnode_idMDQ6VXNlcjUzNjI0NjM4avatar_urlhttps://avatars.githubusercontent.com/u/53624638?v=4gravatar_idurlhttps://api.github.com/users/ddneilsonhtml_urlhttps://github.com/ddneilsonfollowers_urlhttps://api.github.com/users/ddneilson/followersfollowing_urlhttps://api.github.com/users/ddneilson/following{/other_user}gists_urlhttps://api.github.com/users/ddneilson/gists{/gist_id}starred_urlhttps://api.github.com/users/ddneilson/starred{/owner}{/repo}subscriptions_urlhttps://api.github.com/users/ddneilson/subscriptionsorganizations_urlhttps://api.github.com/users/ddneilson/orgsrepos_urlhttps://api.github.com/users/ddneilson/reposevents_urlhttps://api.github.com/users/ddneilson/events{/privacy}received_events_urlhttps://api.github.com/users/ddneilson/received_eventstypeUseruser_view_typepublicsite_adminrepoidnode_idR_kgDOLSLm4Qnameopenjd-model-for-pythonfull_nameddneilson/openjd-model-for-pythonprivateownerloginddneilsonidnode_idMDQ6VXNlcjUzNjI0NjM4avatar_urlhttps://avatars.githubusercontent.com/u/53624638?v=4gravatar_idurlhttps://api.github.com/users/ddneilsonhtml_urlhttps://github.com/ddneilsonfollowers_urlhttps://api.github.com/users/ddneilson/followersfollowing_urlhttps://api.github.com/users/ddneilson/following{/other_user}gists_urlhttps://api.github.com/users/ddneilson/gists{/gist_id}starred_urlhttps://api.github.com/users/ddneilson/starred{/owner}{/repo}subscriptions_urlhttps://api.github.com/users/ddneilson/subscriptionsorganizations_urlhttps://api.github.com/users/ddneilson/orgsrepos_urlhttps://api.github.com/users/ddneilson/reposevents_urlhttps://api.github.com/users/ddneilson/events{/privacy}received_events_urlhttps://api.github.com/users/ddneilson/received_eventstypeUseruser_view_typepublicsite_adminhtml_urlhttps://github.com/ddneilson/openjd-model-for-pythondescriptionProvides a Python implementation of the data model for Open Job Description's template schemas.", "fork": true, "url": "https://api.github.com/repos/ddneilson/openjd-model-for-python", "forks_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/forks", "keys_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/teams", "hooks_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/hooks", "issue_events_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/issues/events{/number}", "events_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/events", "assignees_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/assignees{/user}", "branches_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/branches{/branch}", "tags_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/tags", "blobs_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/git/refs{/sha}", "trees_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/statuses/{sha}", "languages_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/languages", "stargazers_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/stargazers", "contributors_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/contributors", "subscribers_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/subscribers", "subscription_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/subscription", "commits_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/commits{/sha}", "git_commits_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/git/commits{/sha}", "comments_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/comments{/number}", "issue_comment_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/issues/comments{/number}", "contents_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/contents/{+path}", "compare_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/merges", "archive_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/downloads", "issues_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/issues{/number}", "pulls_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/pulls{/number}", "milestones_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/milestones{/number}", "notifications_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/labels{/name}", "releases_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/releases{/id}", "deployments_url": "https://api.github.com/repos/ddneilson/openjd-model-for-python/deployments", "created_at": "2024-02-14T05:58:02Z", "updated_at": "2024-10-28T19:14:38Z", "pushed_at": "2024-10-28T19:29:10Z", "git_url": "git://github.com/ddneilson/openjd-model-for-python.git", "ssh_url": "git@github.com:ddneilson/openjd-model-for-python.git", "clone_url": "https://github.com/ddneilson/openjd-model-for-python.git", "svn_url": "https://github.com/ddneilson/openjd-model-for-python", "homepage": "https://github.com/OpenJobDescription/openjd-specifications/wiki", "size": 370, "stargazers_count": 0, "watchers_count": 0, "language": "Python", "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": false, "has_pages": false, "has_discussions": false, "forks_count": 0, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": {"key": "apache-2.0", "name": "Apache License 2.0", "spdx_id": "Apache-2.0", "url": "https://api.github.com/licenses/apache-2.0", "node_id": "MDc6TGljZW5zZTI="}, "allow_forking": true, "is_template": false, "web_commit_signoff_required": false, "has_pull_requests": true, "pull_request_creation_policy": "all", "topics": [], "visibility": "public", "forks": 0, "open_issues": 0, "watchers": 0, "default_branch": "mainline"}}, "base": {"label": "OpenJobDescription:mainline", "ref": "mainline", "sha": "7d49e04949b0843277cb79060fc33d1140675239", "user": {"login": "OpenJobDescription", "id": 142452466, "node_id": "O_kgDOCH2m8g", "avatar_url": "https://avatars.githubusercontent.com/u/142452466?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OpenJobDescription", "html_url": "https://github.com/OpenJobDescription", "followers_url": "https://api.github.com/users/OpenJobDescription/followers", "following_url": "https://api.github.com/users/OpenJobDescription/following{/other_user}", "gists_url": "https://api.github.com/users/OpenJobDescription/gists{/gist_id}", "starred_url": "https://api.github.com/users/OpenJobDescription/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OpenJobDescription/subscriptions", "organizations_url": "https://api.github.com/users/OpenJobDescription/orgs", "repos_url": "https://api.github.com/users/OpenJobDescription/repos", "events_url": "https://api.github.com/users/OpenJobDescription/events{/privacy}", "received_events_url": "https://api.github.com/users/OpenJobDescription/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "repo": {"id": 685265909, "node_id": "R_kgDOKNhT9Q", "name": "openjd-model-for-python", "full_name": "OpenJobDescription/openjd-model-for-python", "private": false, "owner": {"login": "OpenJobDescription", "id": 142452466, "node_id": "O_kgDOCH2m8g", "avatar_url": "https://avatars.githubusercontent.com/u/142452466?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OpenJobDescription", "html_url": "https://github.com/OpenJobDescription", "followers_url": "https://api.github.com/users/OpenJobDescription/followers", "following_url": "https://api.github.com/users/OpenJobDescription/following{/other_user}", "gists_url": "https://api.github.com/users/OpenJobDescription/gists{/gist_id}", "starred_url": "https://api.github.com/users/OpenJobDescription/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OpenJobDescription/subscriptions", "organizations_url": "https://api.github.com/users/OpenJobDescription/orgs", "repos_url": "https://api.github.com/users/OpenJobDescription/repos", "events_url": "https://api.github.com/users/OpenJobDescription/events{/privacy}", "received_events_url": "https://api.github.com/users/OpenJobDescription/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python", "description": "Provides a Python implementation of the data model for Open Job Description's template schemas.forkurlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-pythonforks_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/forkskeys_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/keys{/key_id}collaborators_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/collaborators{/collaborator}teams_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/teamshooks_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/hooksissue_events_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events{/number}events_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/eventsassignees_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/assignees{/user}branches_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/branches{/branch}tags_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/tagsblobs_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/blobs{/sha}git_tags_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/tags{/sha}git_refs_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/refs{/sha}trees_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/trees{/sha}statuses_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/{sha}languages_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/languagesstargazers_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/stargazerscontributors_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contributorssubscribers_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/subscriberssubscription_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/subscriptioncommits_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits{/sha}git_commits_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/commits{/sha}comments_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/comments{/number}issue_comment_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments{/number}contents_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/{+path}compare_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/compare/{base}...{head}merges_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/mergesarchive_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/{archive_format}{/ref}downloads_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/downloadsissues_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues{/number}pulls_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls{/number}milestones_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/milestones{/number}notifications_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/notifications{?since,all,participating}labels_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/labels{/name}releases_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/releases{/id}deployments_urlhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/deploymentscreated_at2023-08-30T21:28:48Zupdated_at2026-05-19T19:09:34Zpushed_at2026-05-19T19:09:34Zgit_urlgit://github.com/OpenJobDescription/openjd-model-for-python.gitssh_urlgit@github.com:OpenJobDescription/openjd-model-for-python.gitclone_urlhttps://github.com/OpenJobDescription/openjd-model-for-python.gitsvn_urlhttps://github.com/OpenJobDescription/openjd-model-for-pythonhomepagehttps://github.com/OpenJobDescription/openjd-specifications/wikisizestargazers_countwatchers_countlanguagePythonhas_issueshas_projectshas_downloadshas_wikihas_pageshas_discussionsforks_countmirror_urlarchiveddisabledopen_issues_countlicensekeyapache-2.0nameApache License 2.0spdx_idApache-2.0urlhttps://api.github.com/licenses/apache-2.0node_idMDc6TGljZW5zZTI=allow_forkingis_templateweb_commit_signoff_requiredhas_pull_requestspull_request_creation_policyalltopicsvisibilitypublicforksopen_issueswatchersdefault_branchmainline_linksselfhrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/148htmlhrefhttps://github.com/OpenJobDescription/openjd-model-for-python/pull/148issuehrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/148commentshrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/148/commentsreview_commentshrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/148/commentsreview_commenthrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/comments{/number}commitshrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/148/commitsstatuseshrefhttps://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/1bc447052194e759f9b0606f4588c4a2be7c6fb5author_associationCONTRIBUTORauto_mergeassigneeactive_lock_reasonmergedmergeablerebaseablemergeable_stateunknownmerged_byloginddneilsonidnode_idMDQ6VXNlcjUzNjI0NjM4avatar_urlhttps://avatars.githubusercontent.com/u/53624638?v=4gravatar_idurlhttps://api.github.com/users/ddneilsonhtml_urlhttps://github.com/ddneilsonfollowers_urlhttps://api.github.com/users/ddneilson/followersfollowing_urlhttps://api.github.com/users/ddneilson/following{/other_user}gists_urlhttps://api.github.com/users/ddneilson/gists{/gist_id}starred_urlhttps://api.github.com/users/ddneilson/starred{/owner}{/repo}subscriptions_urlhttps://api.github.com/users/ddneilson/subscriptionsorganizations_urlhttps://api.github.com/users/ddneilson/orgsrepos_urlhttps://api.github.com/users/ddneilson/reposevents_urlhttps://api.github.com/users/ddneilson/events{/privacy}received_events_urlhttps://api.github.com/users/ddneilson/received_eventstypeUseruser_view_typepublicsite_admincommentsreview_commentsmaintainer_can_modifycommitsadditionsdeletionschanged_files |
| {"time": "2024-10-28T18:39:28+00:00", "type": "timeline:commented", "payload": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments/2442351166", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/148#issuecomment-2442351166", "issue_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/148", "id": 2442351166, "node_id": "IC_kwDOKNhT9c6Rk1I-", "user": {"login": "sonarqubecloud[bot]", "id": 39514782, "node_id": "MDM6Qm90Mzk1MTQ3ODI=", "avatar_url": "https://avatars.githubusercontent.com/in/12526?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D", "html_url": "https://github.com/apps/sonarqubecloud", "followers_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/followers", "following_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/repos", "events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "created_at": "2024-10-28T18:39:28Z", "updated_at": "2024-10-28T18:39:28Z", "body": "## [](https://sonarcloud.io/dashboard?id=OpenJobDescription_openjd-model-for-python&pullRequest=148) **Quality Gate passed** \nIssues \n [0 New issues](https://sonarcloud.io/project/issues?id=OpenJobDescription_openjd-model-for-python&pullRequest=148&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true) \n [0 Accepted issues](https://sonarcloud.io/project/issues?id=OpenJobDescription_openjd-model-for-python&pullRequest=148&issueStatuses=ACCEPTED)\n\nMeasures \n [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=OpenJobDescription_openjd-model-for-python&pullRequest=148&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true) \n [0.0% Coverage on New Code](https://sonarcloud.io/component_measures?id=OpenJobDescription_openjd-model-for-python&pullRequest=148&metric=new_coverage&view=list) \n [0.0% Duplication on New Code](https://sonarcloud.io/component_measures?id=OpenJobDescription_openjd-model-for-python&pullRequest=148&metric=new_duplicated_lines_density&view=list) \n \n[See analysis details on SonarCloud](https://sonarcloud.io/dashboard?id=OpenJobDescription_openjd-model-for-python&pullRequest=148)\n\n", "author_association": "NONE", "reactions": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments/2442351166/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "performed_via_github_app": {"id": 12526, "client_id": "Iv1.dc610988574d1724", "slug": "sonarqubecloud", "node_id": "MDM6QXBwMTI1MjY=", "owner": {"login": "SonarSource", "id": 545988, "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0NTk4OA==", "avatar_url": "https://avatars.githubusercontent.com/u/545988?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SonarSource", "html_url": "https://github.com/SonarSource", "followers_url": "https://api.github.com/users/SonarSource/followers", "following_url": "https://api.github.com/users/SonarSource/following{/other_user}", "gists_url": "https://api.github.com/users/SonarSource/gists{/gist_id}", "starred_url": "https://api.github.com/users/SonarSource/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SonarSource/subscriptions", "organizations_url": "https://api.github.com/users/SonarSource/orgs", "repos_url": "https://api.github.com/users/SonarSource/repos", "events_url": "https://api.github.com/users/SonarSource/events{/privacy}", "received_events_url": "https://api.github.com/users/SonarSource/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "name": "SonarQubeCloud", "description": "\r\nSonarQube Cloud (formerly SonarCloud) is a SaaS code analysis tool designed to detect coding issues in 30+ languages, frameworks, and IaC platforms. Your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues, on each merge/pull request.\r\n\r\nFor those requiring US-based hosting, [SonarQube Cloud US](https://sonarqube.us/) offers the perfect alternative. If you need data residency outside the US or within the EU, [SonarQube Cloud](https://sonarcloud.io/) with this GitHub app is the ideal solution.\r\n\r\nSonarQube Cloud integrates seamlessly into your GitHub workflow and provides clear guidance for resolving any code quality and security issues detected. The majority of popular languages can be analyzed automatically; no configuration is required!\r\n\r\nWith [SonarQube Cloud](https://sonarcloud.io/github), you get:\r\n\r\n- Fast, precise static analysis and feedback on your code\r\n \r\n- Support for popular languages, frameworks, and IaC tools\r\n \r\n- Free analysis for open-source projects and private projects up to max 50k LoC\r\n \r\n- Automatic analysis of pull requests and branches with results reported inline\r\n \r\n- IDE Support with [SonarQube for IDE](https://www.sonarsource.com/products/sonarlint/) integration\r\n \r\n- Quality Gate (added as a GitHub check) acting at two different levels - first, preventing you from merging pull requests that contain issues - and later, helping you to release only clean, safe code\r\n \r\n- Sign up for SonarQube free tier and begin scanning your private and public repositories\r\n \r\n\r\nA [GitHub Action](https://github.com/marketplace/actions/sonarcloud-scan) is available in the marketplace to make it easy for you (for projects where automatic analysis isn't available). SonarQube Cloud also integrates smoothly with Jenkins, CircleCI, TravisCI, CirrusCI, and many other tools.\r\n\r\nA free tier is available that allows you to explore the benefits of SonarQube Cloud using your public and private repositories. We also provide a no-commitment, [14-day trial](https://www.sonarsource.com/products/sonarcloud/signup/) of SonarQube Cloud Team for unlimited team members, up to 1.9M LoC, AI CodeFix recommendations, and more. No need to speak with a sales rep or request a license key - get automatic code analysis results on your private projects in minutes! Want to see more examples of SonarCloud in action? You can [explore current Open Source projects in SonarCloud](https://sonarcloud.io/explore/projects?sort=-analysis_date) that are using the [Clean as You Code](https://www.sonarsource.com/solutions/our-unique-approach/) methodology.\r\n\r\nWhat are you waiting for? SonarQube Cloud helps you consistently deliver cleaner, secure software that future developers will appreciate and your users will love. Start writing Clean Code. [Now](https://www.sonarsource.com/products/sonarcloud/signup/)!external_urlhttps://sonarcloud.iohtml_urlhttps://github.com/apps/sonarqubecloudcreated_at2018-05-22T07:36:37Zupdated_at2026-03-03T08:54:32Zpermissionscheckswritecontentsreademailsreadmembersreadmetadatareadorganization_copilot_seat_managementreadpull_requestswritesecurity_eventswritestatuseswriteeventscode_scanning_alertorganizationpull_requestpushrepositoryeventcommentedactorloginsonarqubecloud[bot]idnode_idMDM6Qm90Mzk1MTQ3ODI=avatar_urlhttps://avatars.githubusercontent.com/in/12526?v=4gravatar_idurlhttps://api.github.com/users/sonarqubecloud%5Bbot%5Dhtml_urlhttps://github.com/apps/sonarqubecloudfollowers_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/followersfollowing_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/following{/other_user}gists_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/gists{/gist_id}starred_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/starred{/owner}{/repo}subscriptions_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/subscriptionsorganizations_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/orgsrepos_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/reposevents_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/events{/privacy}received_events_urlhttps://api.github.com/users/sonarqubecloud%5Bbot%5D/received_eventstypeBotuser_view_typepublicsite_admin |