Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Latest commit

 

History

History
129 lines (76 loc) · 4.27 KB

CHANGELOG.md

File metadata and controls

129 lines (76 loc) · 4.27 KB

Changelog

[3.7.2] - 2020-03-29

  • Don't mutate options object. Thanks @adammockor: #92

[3.7.1] - 2020-03-09

Fixed

  • Reverted incorrectly published documentation update: #89

[3.6.0] - 2019-11-24

Added

Thanks @patricklafrance: #73

[3.5.0] - 2019-11-20

Added

Thanks @folz: #72

  • Expose the componentNameResolver parser option. This allows override the name resolution for components.

[3.4.0] - 2019-11-15

Added

Thanks @patricklafrance: #69

  • Make the name of the type property attached to generated docs configurable.

[3.3.0] - 2019-09-30

Added

Thanks @evless: #64

  • Default values can be displayed as something other than just string types.

[3.2.1] - 2019-09-17

Changed

[3.2.0] - 2019-09-01

Added

Thanks @nekitk: #59

  • Default values for stateless components can now be generated from props destructuring.
  • Passing new parser option (shouldExtractLiteralValuesFromEnum) which allows to parse TypeScript enums and string unions to docgen enum of their values: If false (like before): type: { name: "\"blue\" | \"green\"" } or type: { name: "ColorEnum" } If true: type: { name: "enum", value: [ { value: "\"blue\"" }, { value: "\"green\""} ] }

[3.1.1] - 2019-08-09

Fix

  • Fixed stories are not updated on reload. Thanks @nekitk. #43

[3.1.0] - 2019-04-02

  • Increased performance by reusing TypeScript program instance. Thanks @denieler (#40)

[3.0.1] - 2019-01-20

  • Republish to resolve potential file permissions issue due to publishing from Windows. Closes #35.

[3.0.0] - 2018-09-20

Changed

  • Bump react-docgen-typescript dependency to v1.9.0
  • Removed the loader options includes and excludes. Closes #15
  • Use the loader-utils Webpack page to process loader options. Closes 22.

[2.2.0] - 2018-08-11

Added

  • Add the ability to filter props using a filtering function. Thanks @rkostrzewski. #21

[2.1.1] - 2018-06-13

Changed

  • Bump react-docgen-typescript dependency to v1.6.0:

    parse can be called with multiple source file paths (thanks to @marionebl PR #91)
    upgraded typescript version and fixed parsing comment problem (thanks to @kbukum PR #97)

[2.1.0] - 2018-05-27

Changed

  • Bump react-docgen-typescript dependency to v1.5.0:

    Remove spread logic.
    Support spread default props.
    Use folder name if file name is index.
    chore(parser): refactor displayName extraction
    chore(Parser): read displayName
    parse tsconfig.json mirroring TSC’s process
    Added support for referenced default props in stateless components
    support referenced defaultProps
    Extracts default props from stateless components

[2.0.3] - 2018-03-26

Fixed

[2.0.2] - 2018-03-03

Fixed

  • Use original source text when generating amended code (resolves #7).