jentic-openapi-validator 1.0.0a17__tar.gz → 1.0.0a19__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/PKG-INFO +4 -4
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/pyproject.toml +4 -4
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/default/__init__.py +3 -2
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/LICENSE +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/NOTICE +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/README.md +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/base.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/default/rules/__init__.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/default/rules/security.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/default/rules/server.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/default/rules/structural.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/openapi_spec.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/backends/py.typed +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/core/__init__.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/core/diagnostics.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/core/openapi_validator.py +0 -0
- {jentic_openapi_validator-1.0.0a17 → jentic_openapi_validator-1.0.0a19}/src/jentic/apitools/openapi/validator/core/py.typed +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jentic-openapi-validator
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0a19
|
|
4
4
|
Summary: Jentic OpenAPI Validator
|
|
5
5
|
Author: Jentic
|
|
6
6
|
Author-email: Jentic <hello@jentic.com>
|
|
7
7
|
License-Expression: Apache-2.0
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
License-File: NOTICE
|
|
10
|
-
Requires-Dist: jentic-openapi-parser~=1.0.
|
|
10
|
+
Requires-Dist: jentic-openapi-parser~=1.0.0a19
|
|
11
11
|
Requires-Dist: openapi-spec-validator~=0.7.2
|
|
12
12
|
Requires-Dist: lsprotocol~=2025.0.0
|
|
13
|
-
Requires-Dist: jentic-openapi-validator-redocly~=1.0.
|
|
14
|
-
Requires-Dist: jentic-openapi-validator-spectral~=1.0.
|
|
13
|
+
Requires-Dist: jentic-openapi-validator-redocly~=1.0.0a19 ; extra == 'redocly'
|
|
14
|
+
Requires-Dist: jentic-openapi-validator-spectral~=1.0.0a19 ; extra == 'spectral'
|
|
15
15
|
Requires-Python: >=3.11
|
|
16
16
|
Project-URL: Homepage, https://github.com/jentic/jentic-openapi-tools
|
|
17
17
|
Provides-Extra: redocly
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "jentic-openapi-validator"
|
|
3
|
-
version = "1.0.0-alpha.
|
|
3
|
+
version = "1.0.0-alpha.19"
|
|
4
4
|
description = "Jentic OpenAPI Validator"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
|
|
@@ -8,14 +8,14 @@ license = "Apache-2.0"
|
|
|
8
8
|
license-files = ["LICENSE", "NOTICE"]
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"jentic-openapi-parser~=1.0.0-alpha.
|
|
11
|
+
"jentic-openapi-parser~=1.0.0-alpha.19",
|
|
12
12
|
"openapi-spec-validator~=0.7.2",
|
|
13
13
|
"lsprotocol~=2025.0.0"
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
[project.optional-dependencies]
|
|
17
|
-
spectral = ["jentic-openapi-validator-spectral~=1.0.0-alpha.
|
|
18
|
-
redocly = ["jentic-openapi-validator-redocly~=1.0.0-alpha.
|
|
17
|
+
spectral = ["jentic-openapi-validator-spectral~=1.0.0-alpha.19"]
|
|
18
|
+
redocly = ["jentic-openapi-validator-redocly~=1.0.0-alpha.19"]
|
|
19
19
|
|
|
20
20
|
[project.urls]
|
|
21
21
|
Homepage = "https://github.com/jentic/jentic-openapi-tools"
|
|
@@ -17,7 +17,7 @@ from ...core.diagnostics import JenticDiagnostic, ValidationResult
|
|
|
17
17
|
from ..base import BaseValidatorBackend
|
|
18
18
|
from .rules import RuleRegistry
|
|
19
19
|
from .rules.security import SecuritySchemeReferenceRule, UnusedSecuritySchemeRule
|
|
20
|
-
from .rules.server import ServerUrlRule
|
|
20
|
+
from .rules.server import ServersArrayRule, ServerUrlRule
|
|
21
21
|
from .rules.structural import InfoObjectRule, PathsRule
|
|
22
22
|
|
|
23
23
|
|
|
@@ -194,7 +194,8 @@ class DefaultOpenAPIValidatorBackend(BaseValidatorBackend):
|
|
|
194
194
|
registry.register(InfoObjectRule())
|
|
195
195
|
registry.register(PathsRule())
|
|
196
196
|
|
|
197
|
-
# Register server rules
|
|
197
|
+
# Register server rules
|
|
198
|
+
registry.register(ServersArrayRule())
|
|
198
199
|
registry.register(ServerUrlRule())
|
|
199
200
|
|
|
200
201
|
# Register security rules
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|