Artur Maciag

Results 19 issues of Artur Maciag

Uses SecretStr from pydantic package Relates to #609

Handle https://requests.readthedocs.io/en/latest/user/advanced/#chunk-encoded-requests Fixes #554

Non-standard format (not registered as a format check in validator) raises error on unmarshalling process. It should ignore the format.

kind/bug/confirmed
area/unmarshalling

Given: ```python from openapi_core.unmarshalling.schemas import oas31_schema_unmarshallers_factory spec = Spec.from_dict({}, validator=None) unmarshaller = oas31_schema_unmarshallers_factory.create(spec) ``` then: ```python unmarshaller.validator.format_checker ``` Expected: Has no `binary` and `byte` checkers registered

kind/bug/confirmed
area/schema-validator

Fix for proper workers shutdown. Updated moto to latest working version. This fix with #51 allows all tests to pass. See [my master bramch](https://github.com/p1c2u/PyQS/commits/master) with merged all my fixes. https://travis-ci.org/p1c2u/PyQS/builds/451872435?utm_source=github_status&utm_medium=notification

For example check for characters https://stackoverflow.com/questions/13195143/range-of-valid-character-for-a-base-64-encoding

Only string should be allowed. Type Checker: https://github.com/p1c2u/openapi-schema-validator/blob/master/openapi_schema_validator/_types.py#L13 Test: https://github.com/p1c2u/openapi-schema-validator/blob/master/tests/integration/test_validators.py#L64 **This will be breaking change**