Albina Blazhko
Albina Blazhko
## What/Why/How? - Added new command `scorecard-classic`. - Implemented functionality to fetch scorecard and plugins from project url. - Implemented functionality to pass project url in arguments. - Implemented functionality...
**Describe the bug** When you run a command, which fails it reports a exit code 1, instead of 2. **To Reproduce** **Expected behavior** Should report exit code 2. **Logs** **OpenAPI...
## What/Why/How? - Added using new setter method to set on demand default unevaluated properties. - Refactored `no-invalid-media-type-examples`, `no-invalid-parameter-examples`, `no-invalid-schema-examples` rules. - Set to validateExamples function default property of defaultUnevaluatedProperties...
fix: error `can't resolve $ref` when `components.parameters` has a ref to the `components.schemas`
## What/Why/How? The issue happens when `parameter` has a reference to `schemas` and `remove-unused-components` decorator provided in `redocly.yaml`. This PR contains the global fix, nothing changes inside `remove-unused-components` decorator, because...
## What/Why/How? New linting rules to handle illogical use of composition keys: `oneOf`, `anyOf`, `allOf`. ## Reference Resolves #2326 ## Testing ## Screenshots (optional) ## Check yourself - [ ]...
**Is your feature request related to a problem? Please describe.** In the current implementation we didn't handle illogical use of these schema composition keywords (`oneOf`, `anyOf`,`allOf`). **Describe the solution you'd...
## What/Why/How? The ajv validator, which we are using to validate JSON Schemas didn't supports `exclusiveMininimum` and `exclusiveMaximum` properties as boolean type. That's why i need to use old `draft-04`...
## What/Why/How? We faced the issue when updating the version of openapi-core in other products. The problem was that we forgot to add new types in `@redocly/config`. I created a...