Skip to content

Releases: reactjs/react-docgen

5.4.0-alpha.0

21 Oct 14:38
Compare
Choose a tag to compare
5.4.0-alpha.0 Pre-release
Pre-release
  • Allow resolving of imported types/proptypes

5.3.1

21 Oct 14:26
Compare
Choose a tag to compare
  • Update ast-types to latest version

5.3.0

26 Feb 00:46
Compare
Choose a tag to compare

New Features

  • Support static methods on function components (#433)

Bug Fixes

  • Handle docblock on out-of-line forwardRef (#435)
  • Infer displayName given forwardRef node (#436)
  • Avoid circular reference when resolving name from within assignment (#434)
  • Fix crash by only visit paths, not nodes (#432)

5.2.1

13 Feb 00:40
Compare
Choose a tag to compare

Bug Fixes

  • Support forwardRef with out of line argument (#430)
  • Support empty type for flow (#431)

5.2.0

06 Feb 23:02
Compare
Choose a tag to compare

New Features

  • Support new topLevelAwait plugin in babel parser

Bug Fixes

  • Fix to Flow Maximum Callstack exceeded error on recursive generic structs (#428)

Performance

  • Switch from async to neo-async in the cli

5.1.0

05 Jan 20:43
Compare
Choose a tag to compare

New Features

  • skip private methods in Documentation (#409)

Bug Fixes

  • Resolve local spreads in defaultProps (#404)
  • Do not forward typeParameters when using resolved Path, to fix infinite loop (#417)

5.0.0

11 Dec 22:37
Compare
Choose a tag to compare

BREAKING CHANGES

  • The license changed to MIT. When updating ensure that MIT is one of the licenses allowed in your project.
  • The signature of resolvers has changed. It previously received the Program AST node as first param and recast as second param. The new signature receives the File AST node as first argument and the preconfigured parser as second argument.
    resolver(ast: ASTNode, parser: { parse: (string) => AST })
  • Node 8.10.0 or newer is required, older versions are not supported anymore
  • When we detect HOC react-docgen now assumes that the first argument to the HOC is the component. Previously we assumed the last argument is the component, but nearly all implementations of HOC which have multiple arguments have the component as the first argument.
  • React class components now require to extend another class in order to be detected as component. Previously any class having a render method was considered a react component.

New Features

  • Handle computed properties correctly and do not fail generation (#340)
    If you are using computed properties in your react props we will now include them in the output if we can. If the expression in the computed property is a literal (string, number) we will directly use this as the name otherwise if it is an identifier we will use this an prefix it with @computed#.
  • Fully support React.forwardRef (#350)
  • Add support for TypeScript (#348)
    We will now correctly parse TypeScript if the filename supplied to react-docgen has a TypeScript extension (.ts, .tsx). If you have babel already setup for TypeScript in your project then all you need to do is supply the filename via the parse options. In the output there will be a new property called tsType which will include the documentation extracted from TypeScript.
  • Add support for TSMappedType (#362)
  • Add support for Flow interfaces and Flow generic types (#348)
  • The default parse function can now receive a string or a Buffer.
  • Handlers now receive the preconfigured parser as 3rd argument.
    handler(documentation: Documentation, path: NodePath, parser: { parse: (string) => AST })
  • Support destructuring and aliased imports in react builtin call detection (#385)
  • Be more strict about detecting react class components (#397)

Performance

  • Remove recast and use ast-types directly (#349)

Bug Fixes

  • Add missing isReactForwardRefCall export (#351)
  • HOCs resolving intermediate values (#378)
  • Expand index types correctly (#369)
  • Type inference on forwardRef components (#392)
  • Support ts(x) file parsing using CLI (#391)
  • Assume HOC first param is Component not last (#343)
  • Detect components wrapped in HOC with all resolver (#344)
  • Bail when function returns are recursive instead of stack overflowing (#407)
  • Support type as expressions and type assertions (#408)

v5.0.0-beta.1

04 May 04:30
Compare
Choose a tag to compare
v5.0.0-beta.1 Pre-release
Pre-release

The first prerelease of yet another breaking version, but it comes with a lot of nice goodies and three massive changes.

  • We finally have TypeScript support thanks to the hard work of @devongovett 🎉. If you are using React in combination with TypeScript we ask you to try this prerelease and report back if everything works as expected.
  • react-docgen v5 is now licensed under the MIT license 👏. Thanks to @fkling for talking to the right people at Facebook to make this happen.
  • We improved the performance by removing the recast dependency and using babel directly for parsing the code. In our measurements we saw a 20% to 25% performance increase. If you are testing this new prerelease let us now if you see any improvement in your project.

And there are more helpful changes to come till the final. Stay tuned.

This release includes all changes up to v4.1.1.

BREAKING CHANGES

  • The license changed to MIT. When updating ensure that MIT is one of the licenses allowed in your project.
  • The signature of resolvers has changed. It previously received the Program AST node as first param and recast as second param. The new signature receives the File AST node as first argument and the preconfigured parser as second argument.
    resolver(ast: ASTNode, parser: { parse: (string) => AST })

New Features

  • Handle computed properties correctly and do not fail generation (#340)
    If you are using computed properties in your react props we will now include them in the output if we can. If the expression in the computed property is a literal (string, number) we will directly use this as the name otherwise if it is an identifier we will use this an prefix it with @computed#.
  • Fully support React.forwardRef (#350)
  • Add support for TypeScript (#348)
    We will now correctly parse TypeScript if the filename supplied to react-docgen has a TypeScript extension (.ts, .tsx). If you have babel already setup for TypeScript in your project then all you need to do is supply the filename via the parse options. In the output there will be a new property called tsType which will include the documentation extracted from TypeScript.
  • Add support for Flow interfaces and Flow generic types (#348)
  • The default parse function can now receive a string or a Buffer.
  • Handlers now receive the preconfigured parser as 3rd argument.
    handler(documentation: Documentation, path: NodePath, parser: { parse: (string) => AST })

Performance

  • Remove recast and use ast-types directly (#349)

Bug Fixes

  • Add missing isReactForwardRefCall export (#351)

4.1.1

03 May 23:50
Compare
Choose a tag to compare

Bug Fixes

  • Resolve spread properties in object type (#339)
  • Ignore lifecycle methods of latest react updates
  • Ignore private class properties (#347)
  • Fix resolving of more than two Flow Utility types (#345)

4.1.0

05 Mar 19:48
Compare
Choose a tag to compare

New Features

  • Support all the config resolving related babel options (#334)
    This allows the new options envName, babelrc, root, rootMode, configFile and babelrcRoots in the programatic API. To see what this options do head over to the babel documentation

Thanks @jquense.