Releases: reactjs/react-docgen
Releases · reactjs/react-docgen
v5.0.0-beta.1
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 usingbabel
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 andrecast
as second param. The new signature receives theFile
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 havebabel
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 calledtsType
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 astring
or aBuffer
. - 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
4.1.0
New Features
- Support all the config resolving related babel options (#334)
This allows the new optionsenvName
,babelrc
,root
,rootMode
,configFile
andbabelrcRoots
in the programatic API. To see what this options do head over to the babel documentation
Thanks @jquense.
4.0.1
4.0.0
In this version we focused on allowing our internals to be more flexible when it comes to allowing different configurations for @babel/parser
. This will make it easier to introduce support for different javascript flavors (like TypeScript 🎉) in the future.
Thanks to @jquense for working on this changes.
BREAKING CHANGES
- Removed cli arguments
--legacy-decorators
and--decorators-before-export
. (#327)
As a replacement react-docgen will read your babel config and pickup the correct configuration from there. - Removed API options
legacyDecorators
anddecoratorsBeforeExport
. (#327)
This probably will only affect libraries or tools that integrate react-docgen and use the programmatic API. In most cases the automatic pickup of babel configuration files will already be enough to not make this a breaking change. With the newparserOptions
option you could still set this configuration, for example:
react-docgen.parse(code, null, null, {
- decoratorsBeforeExport: true
+ parserOptions: {
+ plugins: [
+ ["decorators", { decoratorsBeforeExport: true }],
+ ],
+ },
});
New Features
- Use local babel config if it exists (#320)
We now automatically check if a babel configuration already exists in your project and use it as configuration for the@babel/parser
we use. This was a necessary step as a lot of recent proposals in babel have configuration options, so we cannot simply activate everything. This change is not breaking unless your babel configuration is broken and does not enable all necessary features (which should throw already in your project).
If you are using react-docgen in the browser, ensure thatfs
,net
andmodule
are correctly mocked, as babel uses them. (see our website configuration) - New configuration option
fileName
(#320)
This is a new option which gets forwarded to babel in order to pick the correct configuration file. Library and tool authors are strongly recommended to set this option whenever possible. Not setting it might result in no or the wrong babel configuration being picked up. - New configuration option
cwd
(#320)
This is a new option which gets forwarded to babel in order to pick the correct configuration file. This option is usually autodetected by babel itself usingprocess.cwd()
. - Support forwardRef for all resolvers (#324)
- Support custom parser options in programmatic API (#327)
This allows you to supply your own@babel/parser
options through thereact-docgen
API with the newly added optionparserOptions
. See our README for more information.
3.0.0
Changes from rc.2
- Add
forwardRef
as a valid component definition (#311) - Resolve flow
$Keys
to union when typeParameter is anObjectTypeAnnotation
(#290) - Attempt to support system-components (#292)
- Add support for
PropTypes.exact
- resolve
Object.values()
inPropType.oneOf()
(#318)
Big Changes from 2.x
- Drop support for node 4. Only node 6 and newer are supported
- Switched the internal parser from
babylon@5
to@babel/parser@7
. This should not break anything, but will support a lot more newer javascript syntax features as well as newer flow syntaxes. - react-docgen now parses only the new decorators proposal syntax and not the old one anymore by default. You can switch back to the legacy decorators proposal with the cli flag
--legacy-decorators
or the programmatic options{ legacyDecorators: true }
passed as 4th parameter to ReactDocgen.parse(). - The types of method params and return (parsed from JSdoc) are now the same as the flow types.
3.0.0-rc.2
New Features
- Support flow NullLiteralTypeAnnotation node type (#299)
- Support JSXFragment (#304)
- Add option to switch between the two decorator modes for babel
- Allow descriptions for oneOfType values (#301)
Performance
- Ensure visited types memory is empty after flow type detection is done
Bug Fixes
- Ignore assignment to non-identifier/literals (#305)
- Ensure null is never put into visited types memory
Internal
- Update to babel 7
- Update to latest recast version
3.0.0-rc.1
3.0.0-rc.0
Breaking Change
- react-docgen now parses only the new decorators proposal syntax and not the old one anymore by default. You can switch back to the legacy decorators proposal with the cli flag
--legacy-decorators
or the programmatic options{ legacyDecorators: true }
passed as 4th parameter toReactDocgen.parse()
. - Drop support for node <6
New Features
- Parse information about the (old) react context API (#130, #260)
- Adding
@extends React.Component
support to mark classes which do not extend fromReact.Component
as valid react components (#269) - Support type cast expression when detecting components (#279)
Bug Fixes
- Fix typo in one error message (Propery -> Property) (#257)
- Fix handling of exported classes without id (#273)
- Remove renamed SpreadProperty checks
- Extract display name correctly even if components are wrapped (#277)
- Resolve value to a proper node instead of an array, which fixes some recast exceptions (#278)
- Correctly unwrap utility types when resolving type spreads (#280)
- Correctly read descriptions of inner types in arrayOf/objectOf (#281)
- Correctly read descriptions of local spread objects (#282)