Releases: completecoding/serverless-auto-swagger
Releases · completecoding/serverless-auto-swagger
v2.7.0
Features
Bug Fixes
- check for log function before assigning (3ccd039)
v2.5.1
Refactored some code to remove a useless log
v2.5.0
Features
- use builtin params if none are provided (#71) (e1b31fe)
v2.4.2
Features
- Allow plugin to work when node_modules are in a different directory than serverless.yml (#70)
Changes
- Update documentation to correctly specify usage requirements (#70)
v2.4.1
Features
- a
description
can now be added to path params. (#62) (5b552f4)
http:
path: /hello/{name}/{simpleParam}
method: get
parameters:
name:
description: the name to say hello to
required: true
simpleParam: true
Bug Fixes
- backwards compatibility and path parameters (#62) (5b552f4)
v2.4.0
implemented Serverless v3 logging without regard to those using Serverless v2 still. Added support for v2 again.
v2.3.0
broke path parameters. This has been addressed.
v2.3.0
Features
Bug Fixes
Miscellaneous
- Various refactoring and code cleanup under the hood
- Added linting/prettier/git hooks to improve maintainability help encourage good practices
v2.2.0
Features
- add option to exclude specific stages (#46) (#47) (89335dd)
- Example of new option:
excludeStages: ['prod']
(skip deployment of swagger.json and Swagger UI in prod
stage)
v2.1.0
Features
- add option to use REST API for swagger lambdas (#44) (e034ab3)
apiType: 'http' | 'httpApi'
– defaults to httpApi
if not specified
Bug Fixes
- use unique operationId per function path (#43) (d28e6af)