Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
[email protected]
Major Changes
96d6e9e
Thanks @danez! - Rename
flowTypeHandler
tocodeTypeHandler
because it handles Flow and TypeScript#719
d7a39af
Thanks @danez! - Refactored
resolveComponentDefinition
utility.findComponentDefinition
isComponentDefinition
the changes in detail.
#761
dfc2f85
Thanks @danez! - Renamed
propDocBlockHandler
topropDocblockHandler
for consistency96d6e9e
Thanks @danez! - Simplify
resolveObjectValuesToArray
and remove type handling. None of the code thatwas handling types was used.
caae6bf
Thanks @danez! - The return values of
resolveObjectValuesToArray
are now in the order they are defined in thesource code.
#744
e956802
Thanks @danez! - Removed match utility.
The utility can be replaced by babel helpers and is not needed anymore. Also
using explicit checks like
path.isMemberExpression()
is better for typesafety and catching potential bugs.
96d6e9e
Thanks @danez! - Migrate react-docgen to ES
modules. Please read
this
#693
3b28f6e
Thanks @danez! - The CLI was removed from
react-docgen
into its own package@react-docgen/cli
.Check out https://react-docgen.dev/docs/getting-started/cli for the
documentation.
96d6e9e
Thanks @danez! - The main
parse
API had somebreaking changes.
The arguments were changed from previously 5 to just 2. The following diff
illustrates how to migrate:
The return type is now always an array, independent of the resolver, even if
only one component was found in the file.
#786
0a2481d
Thanks @danez! - Renamed the method
toObject
tobuild
in the DocumentationBuilder.This method might be used by integrations.
96d6e9e
Thanks @danez! - Renamed some of the main exports
for clarity.
Renamed
handlers
tobuiltinHandlers
Renamedresolver
tobuiltinResolvers
Renamedimporters
tobuiltinImporters
#743
5215bab
Thanks @danez! - Removed support for the
@extends React.Component
annotation on react class components.Instead, you can use the new
@component
annotation or define your ownannotation by creating a custom
FindAnnotatedDefinitionsResolver
instance#714
80e4c74
Thanks @danez! - Renamed and migrated built-in
resolvers to classes.
findAllComponentDefinitions
was renamed toFindAllDefinitionsResolver
and is now a class.
findAllExportedComponentDefinitions
was renamed toFindExportedDefinitionsResolver
and is now a class.findExportedComponentDefinition
was removed. UseFindExportedDefinitionsResolver
with thelimit
option instead.96d6e9e
Thanks @danez! - Migrated to babel toolchain
This is one of the big changes in this new version of react-docgen. It made
the code a lot more robust because there are now finally working TypeScript
types for the ASTs.
Another benefit from this change is that react-docgen is now a lot faster. 🚀
In some tests an improvement of nearly 50% was seen in comparison to
version 5.
#707
d4c27d4
Thanks @danez! - Improve performance of file
system importer.
The file system importer now also caches the resolving of files in addition to
parsing files. If the importer is used in an environment where files do change
at runtime (like a watch command) then the caches will need to be cleared on
every file change.
96d6e9e
Thanks @danez! - Changed the minimum Node.js
version to 14.18.0
Minor Changes
96d6e9e
Thanks @danez! - Add support for
.cts
and.mts
extension when using typescript
96d6e9e
Thanks @danez! - Treat functions returning
React.Children.map
as components96d6e9e
Thanks @danez! - Improve performance by creating
all visitors only once
96d6e9e
Thanks @danez! - Support all possible kinds of
functions in the
displayNameHandler
#786
0a2481d
Thanks @danez! - Export the type for the
DocumentationBuilder.
#786
0a2481d
Thanks @danez! - The types
NodePath
andbabelTypes
are now exported.These types are useful when building integrations in TypeScript.
babelTypes
includes all types from@babel/types
.#714
80e4c74
Thanks @danez! - Add the new ChainResolver which
allows multiple resolvers to be chained.
96d6e9e
Thanks @danez! - Support all literal types in
typescript
96d6e9e
Thanks @danez! - Support flow qualified type names
96d6e9e
Thanks @danez! - Support class and function
declarations without identifier
96d6e9e
Thanks @danez! - Support resolving of
destructuring in
resolveToValue
#714
80e4c74
Thanks @danez! - Allow resolvers to be classes in
addition to functions.
96d6e9e
Thanks @danez! - Improve performance drastically
by making changes to AST traversal
Visitors are now pre-exploded and are cached in the module scope instead of
creating them on every call. This change brought the benchmark from 170ops/s
to 225ops/sec
96d6e9e
Thanks @danez! - Add codes to errors to be able to
easily detect them
There is a new export
ERROR_CODES
that contains all possible error codes.The two errors that have codes right now are:
MISSING_DEFINITION
: No component found in a fileMULTIPLE_DEFINITIONS
: Multiple components found in one file96d6e9e
Thanks @danez! - Support handling
useImperativeHandle
correctly#743
5215bab
Thanks @danez! - Added a new resolver that finds
annotated components. This resolver is also enabled by default.
To use this feature simply annotated a component with
@component
.Patch Changes
#745
8fe3dbf
Thanks @danez! - Fix crash when using TypeScript
mapped types
#789
7c99f15
Thanks @danez! - Fix TypeScript types when strict
null checks are disabled
96d6e9e
Thanks @danez! - Handle
React.forwardRef
callswithout a function
96d6e9e
Thanks @danez! - Fixed the handling of some edge
cases in resolveToValue
96d6e9e
Thanks @danez! - Remove trailing commas and
semicolons from raw values in the documentation
#767
a684d82
Thanks @danez! - Fix handling of
PropTypes.oneOf
to handle unresolved imported values correctly
#761
cc94da2
Thanks @danez! - Fix using react-docgen in
browsers
#761
98a1138
Thanks @danez! - Add
displayName
anddescription
to Documentation type96d6e9e
Thanks @danez! - Parse jsdoc comments for
TypeScript structs
#748
ea25b16
Thanks @danez! - Handle cyclic references in
PropTypes
shape()
andexact()
methods.#787
5a226ac
Thanks @danez! - Fix @babel/traverse import to
work in non ESM environments
96d6e9e
Thanks @danez! - Correctly handle ObjectProperties
in
isReactComponentMethod
#747
1aa0249
Thanks @danez! - Handle
typeof import('...')
andtypeof MyType.property
correctly in TypeScript050313d
Thanks @danez! - Correctly add LICENSE file to
published packages
96d6e9e
Thanks @danez! - Add support for TSAsExpressions
when trying to stringify expressions
#720
f6e4fe7
Thanks @renovate! - Update dependency
strip-indent to v4
#769
e08e08d
Thanks @danez! - Correctly resolve the values in
an
Object.values()
call@react-docgen/[email protected]
Major Changes
#693
3b28f6e
Thanks @danez! - Introducing the new CLI package
@react-docgen/cli
which was extracted fromreact-docgen
and is a completerewrite. Compared to the old CLI these are some of the major differences:
-x, --extension
was removed in favor of globs-e, --exclude
was removed-i, --ignore
now accepts a glob--handler
added--importer
added--failOnWarning
addedCheck out https://react-docgen.dev/docs/getting-started/cli for the
documentation.
#714
80e4c74
Thanks @danez! - Renamed
--handlers
option to--handler
. This unifies all options to be singular.Minor Changes
#714
80e4c74
Thanks @danez! -
--resolver
option can now beused multiple times.
If used multiple times the resolvers will be chained in the defined order and
all components from all resolvers will be used.
#753
217a005
Thanks @danez! - Add support for the
FindAnnotatedDefinitionsResolver
.Can be used with
Patch Changes
ebd9130
Thanks @danez! - Display the correct help info
when running
react-docgen --help
#782
72ac984
Thanks @renovate! - Update dependency
commander to v10.0.1
050313d
Thanks @danez! - Correctly add LICENSE file to
published packages
#792
e0999e1
Thanks @renovate! - update dependency
slash to v5.1.0
#783
fc8a97c
Thanks @renovate! - update dependency
slash to v5.0.1
#729
5b281f4
Thanks @renovate! - update dependency
commander to v10
Updated dependencies
[
96d6e9e
,96d6e9e
,8fe3dbf
,d7a39af
,7c99f15
,dfc2f85
,96d6e9e
,96d6e9e
,96d6e9e
,96d6e9e
,0a2481d
,0a2481d
,96d6e9e
,caae6bf
,80e4c74
,96d6e9e
,e956802
,96d6e9e
,96d6e9e
,96d6e9e
,96d6e9e
,a684d82
,96d6e9e
,96d6e9e
,cc94da2
,98a1138
,80e4c74
,3b28f6e
,96d6e9e
,96d6e9e
,ea25b16
,5a226ac
,96d6e9e
,96d6e9e
,96d6e9e
,1aa0249
,0a2481d
,96d6e9e
,050313d
,96d6e9e
,96d6e9e
,5215bab
,f6e4fe7
,5215bab
,80e4c74
,96d6e9e
,d4c27d4
,96d6e9e
,e08e08d
]: