Skip to content

Releases: completecoding/serverless-auto-swagger

v2.7.0

23 Jun 18:18
Compare
Choose a tag to compare

v2.6.0...v2.7.0 (2022-06-23)

Features

Bug Fixes

  • check for log function before assigning (3ccd039)

v2.6.0

13 Jun 16:22
Compare
Choose a tag to compare

v2.5.1...v2.6.0 (2022-06-13)

Features

v2.5.1

23 May 15:17
Compare
Choose a tag to compare

v2.5.0...v2.5.1 (2022-05-23)

Refactored some code to remove a useless log

v2.5.0

13 May 14:34
Compare
Choose a tag to compare

v2.4.2...v2.5.0 (2022-05-13)

Features

  • use builtin params if none are provided (#71) (e1b31fe)

v2.4.2

12 May 17:58
Compare
Choose a tag to compare

v2.4.1...v2.4.2 (2022-05-12)

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

17 Mar 19:58
Compare
Choose a tag to compare

v2.4.0...v2.4.1 (2022-03-17)

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.4.0

15 Mar 20:36
Compare
Choose a tag to compare

v2.3.0...v2.4.0 (2022-03-15)

Features

v2.3.0

10 Mar 20:47
Compare
Choose a tag to compare

v2.2.0...v2.3.0 (2022-03-10)

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

23 Feb 16:27
Compare
Choose a tag to compare

v2.1.0...v2.2.0 (2022-02-23)

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

21 Feb 21:55
Compare
Choose a tag to compare

v2.0.0...v2.1.0 (2022-02-21)

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)