Update dependency nelmio/api-doc-bundle to v4.23.0
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
nelmio/api-doc-bundle | require | minor |
4.22.1 -> 4.23.0
|
Release Notes
nelmio/NelmioApiDocBundle (nelmio/api-doc-bundle)
v4.23.0
- Cache configuration option
nelmio_api_doc.cache.item_id
now automatically gets the area appended.nelmio_api_doc: cache: pool: app.cache item_id: nelmio_api_doc.docs areas: default: ... area1: ...
nelmio_api_doc.docs.default
&nelmio_api_doc.docs.area1
to be used respectively. - Added cache configuration option per area.
nelmio_api_doc: areas: default: # Manual cache configuration cache: pool: app.cache item_id: nelmio_api_doc.docs.default ... area1: cache: pool: app.cache item_id: nelmio_api_doc.docs.area1 ...
nelmio_api_doc.cache
. - Fixed vendor extensions (
x-*
) from configuration not being outputted in the generated specification.nelmio_api_doc: documentation: info: title: 'My API' description: 'My API description' x-foo: 'bar'
{ ... "info": { "title": "API", "version": "1.0", "x-foo": "bar" }, ... }
- Updated nullable enum handling to align with the behaviour of other object types. It now uses wraps nullable enums with
oneOf
instead ofallOf
.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.