Version Packages
This commit is contained in:
@@ -1,5 +1,36 @@
|
||||
# @backstage/repo-tools
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 2bd291e: Adds a lint rule to `repo schema openapi lint` to enforce `allowReserved` for all parameters. To fix this, simply add `allowReserved: true` to your parameters, like so
|
||||
|
||||
```diff
|
||||
/v1/todos:
|
||||
get:
|
||||
operationId: ListTodos
|
||||
# ...
|
||||
parameters:
|
||||
- name: entity
|
||||
in: query
|
||||
+ allowReserved: true
|
||||
schema:
|
||||
type: string
|
||||
```
|
||||
|
||||
- cfdc5e7: Adds two new commands, `repo schema openapi fuzz` and `package schema openapi fuzz` for fuzzing your plugins documented with OpenAPI. This can help find bugs in your application code through the use of auto-generated schema-compliant inputs. For more information on the underlying library this leverages, take a look at [the docs](https://schemathesis.readthedocs.io/en/stable/index.html).
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.21.7
|
||||
- @backstage/config-loader@1.8.0
|
||||
- @backstage/cli-node@0.2.5
|
||||
- @backstage/catalog-model@1.4.5
|
||||
- @backstage/cli-common@0.1.13
|
||||
- @backstage/errors@1.2.4
|
||||
|
||||
## 0.8.0-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/repo-tools",
|
||||
"description": "CLI for Backstage repo tooling ",
|
||||
"version": "0.8.0-next.1",
|
||||
"version": "0.8.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user