From bfc5afabd89a5c0d69a6c30a200106e588c354cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 31 Jan 2023 23:15:57 +0000 Subject: [PATCH] Publish new versions (beta) --- .changeset/pre.json | 19 ++- packages/react-docgen-cli/CHANGELOG.md | 41 ++++- packages/react-docgen-cli/package.json | 4 +- packages/react-docgen/CHANGELOG.md | 198 ++++++++++++++++++++----- packages/react-docgen/package.json | 2 +- playground/package.json | 2 +- pnpm-lock.yaml | 4 +- 7 files changed, 227 insertions(+), 43 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 23643b8b952..67b4c4cb2dc 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -5,18 +5,25 @@ "react-docgen": "6.0.0-alpha.3", "@react-docgen/cli": "1.0.0-alpha.0", "@react-docgen-internal/website": "0.0.0", - "@react-docgen-internal/playground": "0.0.0" + "@react-docgen-internal/playground": "0.0.0", + "@react-docgen-internal/benchmark": "0.0.0" }, "changesets": [ + "blue-points-exist", "bright-rivers-swim", "clean-cooks-attend", + "famous-needles-wonder", + "five-trainers-report", + "friendly-timers-tap", "giant-apricots-compete", "great-rice-rush", "grumpy-falcons-rhyme", "grumpy-hotels-admire", "honest-boxes-behave", "honest-boxes-copy", + "hungry-crabs-scream", "late-cats-design", + "lazy-lions-dress", "loud-spiders-divide", "many-ligers-kneel", "mean-glasses-chew", @@ -24,15 +31,25 @@ "mighty-shrimps-shout", "nervous-humans-shave", "nine-vans-bow", + "quiet-spiders-grab", "rare-taxis-divide", "rotten-mugs-walk", "selfish-ducks-mate", + "seven-camels-flash", + "shy-papayas-attack", "silent-swans-melt", "silly-ears-search", "smart-eagles-shop", + "smart-files-tell", "smart-waves-refuse", + "spotty-cameras-fetch", "strong-horses-build", "strong-pillows-visit", + "stupid-files-buy", + "ten-camels-jog", + "ten-glasses-compete", + "thin-foxes-talk", + "thin-tables-sneeze", "tricky-shoes-check", "twelve-trainers-tap", "weak-numbers-bow" diff --git a/packages/react-docgen-cli/CHANGELOG.md b/packages/react-docgen-cli/CHANGELOG.md index 66ed755cfc1..a302afec1ed 100644 --- a/packages/react-docgen-cli/CHANGELOG.md +++ b/packages/react-docgen-cli/CHANGELOG.md @@ -1,11 +1,45 @@ # @react-docgen/cli +## 1.0.0-beta.2 + +### Major Changes + +- 80e4c74: Renamed `--handlers` option to `--handler`. This unifies all options + to be singular. + +### Minor Changes + +- 80e4c74: `--resolver` option can now be used multiple times. + + If used multiple times the resolvers will be chained in the defined order and + all components from all resolvers will be used. + +### Patch Changes + +- ebd9130: Display the correct help info when running `react-docgen --help` +- 050313d: Correctly add LICENSE file to published packages +- 5b281f4: update dependency commander to v10 +- Updated dependencies [8fe3dbf] +- Updated dependencies [d7a39af] +- Updated dependencies [80e4c74] +- Updated dependencies [e956802] +- Updated dependencies [80e4c74] +- Updated dependencies [ea25b16] +- Updated dependencies [1aa0249] +- Updated dependencies [050313d] +- Updated dependencies [5215bab] +- Updated dependencies [f6e4fe7] +- Updated dependencies [5215bab] +- Updated dependencies [80e4c74] + - react-docgen@6.0.0-beta.5 + ## 1.0.0-alpha.1 ### Major Changes -- 3b28f6e: Introducing the new CLI package `@react-docgen/cli` which was extracted from `react-docgen` and is a complete rewrite. - Compared to the old CLI these are some of the major differences: +- 3b28f6e: Introducing the new CLI package `@react-docgen/cli` which was + extracted from `react-docgen` and is a complete rewrite. Compared to the old + CLI these are some of the major differences: - Does not support input via stdin anymore - The path argument is now a glob @@ -16,7 +50,8 @@ - `--importer` added - `--failOnWarning` added - Check out https://react-docgen.dev/docs/getting-started/cli for the documentation. + Check out https://react-docgen.dev/docs/getting-started/cli for the + documentation. ### Patch Changes diff --git a/packages/react-docgen-cli/package.json b/packages/react-docgen-cli/package.json index 16424635a1a..1f915692400 100644 --- a/packages/react-docgen-cli/package.json +++ b/packages/react-docgen-cli/package.json @@ -1,6 +1,6 @@ { "name": "@react-docgen/cli", - "version": "1.0.0-alpha.1", + "version": "1.0.0-beta.2", "description": "A CLI to extract information from React components for documentation generation.", "repository": "reactjs/react-docgen", "type": "module", @@ -32,7 +32,7 @@ "commander": "10.0.0", "debug": "4.3.4", "fast-glob": "3.2.12", - "react-docgen": "workspace:6.0.0-alpha.4", + "react-docgen": "workspace:6.0.0-beta.5", "slash": "5.0.0" }, "devDependencies": { diff --git a/packages/react-docgen/CHANGELOG.md b/packages/react-docgen/CHANGELOG.md index ec45549956c..7899382e49e 100644 --- a/packages/react-docgen/CHANGELOG.md +++ b/packages/react-docgen/CHANGELOG.md @@ -1,14 +1,123 @@ # Changelog +## 6.0.0-beta.5 + +### Major Changes + +- d7a39af: Refactored `resolveComponentDefinition` utility. + + - Renamed to `findComponentDefinition` + - Removed named export `isComponentDefinition` + - The utility now does a lot more than previously, check out the commit to see + the changes in detail. + +- e956802: Remove 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 type + safety and catching potential bugs. + +- 5215bab: Removed support for the `@extends React.Component` annotation on + react class components. + + Instead you can use the new `@component` annotation. + +- 80e4c74: Renamed and migrated built-in resolvers to classes. + + - `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver` + and is now a class. + + ```diff + -const resolver = builtinResolvers.findAllComponentDefinitions + +const resolver = new builtinResolvers.FindAllDefinitionsResolver() + ``` + + - `findAllExportedComponentDefinitions` was renamed to + `FindExportedDefinitionsResolver` and is now a class. + + ```diff + -const resolver = builtinResolvers.findAllExportedComponentDefinitions + +const resolver = new builtinResolvers.FindExportedDefinitionsResolver() + ``` + + - `findExportedComponentDefinition` was removed. Use + `FindExportedDefinitionsResolver` with the `limit` option instead. + + > This is still the default resolver. + + ```diff + -const resolver = builtinResolvers.findExportedComponentDefinition + +const resolver = new builtinResolvers.FindExportedDefinitionsResolver({ limit: 1 }) + ``` + +### Minor Changes + +- 80e4c74: Add the new ChainResolver which allows multiple resolvers to be + chained. + + ```ts + import { builtinResolvers } from 'react-docgen'; + + const { ChainResolver } = builtinResolvers; + const resolver = new ChainResolver([resolver1, resolver2], { + chainingLogic: ChainResolver.Logic.ALL, // or ChainResolver.Logic.FIRST_FOUND, + }); + ``` + +- 80e4c74: Allow resolvers to be classes in addition to functions. + + ```ts + import type { ResolverClass, ResolverFunction } from 'react-docgen'; + + // This was the only option until now + const functionResolver: ResolverFunction = (file: FileState) => { + //needs to return array of found components + }; + + // This is the new class resolver + class MyResolver implements ResolverClass { + resolve(file: FileState) { + //needs to return array of found components + } + } + + const classResolver = new MyResolver(); + ``` + +- 5215bab: 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`. + + ```ts + // @component + class MyComponent {} + ``` + +### Patch Changes + +- 8fe3dbf: Fix crash when using TypeScript mapped types +- ea25b16: Handle cyclic references in PropTypes `shape()` and `exact()` + methods. +- 1aa0249: Handle `typeof import('...')` and `typeof MyType.property` correctly + in TypeScript +- 050313d: Correctly add LICENSE file to published packages +- f6e4fe7: Update dependency strip-indent to v4 + ## 6.0.0-alpha.4 ### Major Changes -- 96d6e9e: Rename `flowTypeHandler` to `codeTypeHandler` because it handles Flow and TypeScript -- 96d6e9e: Simplify `resolveObjectValuesToArray` and remove type handling. None of the code that was handling types was actually used. -- caae6bf: The return values of `resolveObjectValuesToArray` are now in the order they are defined in the source code. -- 96d6e9e: Migrate react-docgen to ES modules. Please read [this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) -- 3b28f6e: The CLI was removed from `react-docgen` into its own package `@react-docgen/cli`. +- 96d6e9e: Rename `flowTypeHandler` to `codeTypeHandler` because it handles Flow + and TypeScript +- 96d6e9e: Simplify `resolveObjectValuesToArray` and remove type handling. None + of the code that was handling types was actually used. +- caae6bf: The return values of `resolveObjectValuesToArray` are now in the + order they are defined in the source code. +- 96d6e9e: Migrate react-docgen to ES modules. Please read + [this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) +- 3b28f6e: The CLI was removed from `react-docgen` into its own package + `@react-docgen/cli`. Check out https://react-docgen.dev/cli for the documentation. @@ -23,23 +132,24 @@ - 96d6e9e: Renamed some of the main exports for clarity. - Renamed `handlers` to `builtinHandlers` - Renamed `resolver` to `builtinResolvers` - Renamed `importers` to `builtinImporters` + Renamed `handlers` to `builtinHandlers` Renamed `resolver` to + `builtinResolvers` Renamed `importers` to `builtinImporters` - 96d6e9e: 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. + 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 that react-docgen is now a lot faster. 🚀 In some - tests an improvement of nearly 50% was seen in comparison to version 5. + Another benefit from this change that react-docgen is now a lot faster. 🚀 In + some tests an improvement of nearly 50% was seen in comparison to version 5. - d4c27d4: Improve performance of file system importer. - The file system importer now also caches 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. + The file system importer now also caches 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: Changed the minimum Node.js version to 14.17.0 @@ -55,8 +165,9 @@ - 96d6e9e: Support resolving of destructurings in `resolveToValue` - 96d6e9e: 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 + 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: Add codes to errors to be able to easily detect them @@ -72,7 +183,8 @@ - 96d6e9e: Handle `React.forwardRef` calls without a function - 96d6e9e: Handle some edge cases in resolveToValue -- 96d6e9e: Remove trailing commas and semicolons from raw values in the documentation +- 96d6e9e: Remove trailing commas and semicolons from raw values in the + documentation - 96d6e9e: Parse jsdoc comments for TypeScript structs - 96d6e9e: Correctly handle ObjectProperties in `isReactComponentMethod` - 96d6e9e: Add support for TSAsExpressions when trying to stringify expressions @@ -81,34 +193,54 @@ ### Bug Fixes -- Correctly detect index access types in typescript ([#400](https://github.com/reactjs/react-docgen/issues/400)) ([85ea6a5](https://github.com/reactjs/react-docgen/commit/85ea6a518c837e209043d9dac1505f60e8dd33b6)) -- Correctly handle ObjectTypeSpreadProperty in object type annotations ([#593](https://github.com/reactjs/react-docgen/issues/593)) ([395f338](https://github.com/reactjs/react-docgen/commit/395f338ab8aa3f1d9e1c0f5a81dadd0ce00eb7d5)) -- Fix typescript types for parsing ([34c55ac](https://github.com/reactjs/react-docgen/commit/34c55ac1d663cc604f4f548018d78e02e081a797)) -- Fix wrong detection of forwardRef in combination with memo ([#592](https://github.com/reactjs/react-docgen/issues/592)) ([ea9cbeb](https://github.com/reactjs/react-docgen/commit/ea9cbebef13de11d591f175438e59b48dbb67025)) -- Handle ObjectTypeSpreadProperties which are not resolvable ([4b8b721](https://github.com/reactjs/react-docgen/commit/4b8b721e6332185c0964a35329108ccdb64f8bb8)) -- Ignore methods in `Object.value()` calls ([4fc5b21](https://github.com/reactjs/react-docgen/commit/4fc5b21d899990681287c8d9d70771b7361ec41e)) +- Correctly detect index access types in typescript + ([#400](https://github.com/reactjs/react-docgen/issues/400)) + ([85ea6a5](https://github.com/reactjs/react-docgen/commit/85ea6a518c837e209043d9dac1505f60e8dd33b6)) +- Correctly handle ObjectTypeSpreadProperty in object type annotations + ([#593](https://github.com/reactjs/react-docgen/issues/593)) + ([395f338](https://github.com/reactjs/react-docgen/commit/395f338ab8aa3f1d9e1c0f5a81dadd0ce00eb7d5)) +- Fix typescript types for parsing + ([34c55ac](https://github.com/reactjs/react-docgen/commit/34c55ac1d663cc604f4f548018d78e02e081a797)) +- Fix wrong detection of forwardRef in combination with memo + ([#592](https://github.com/reactjs/react-docgen/issues/592)) + ([ea9cbeb](https://github.com/reactjs/react-docgen/commit/ea9cbebef13de11d591f175438e59b48dbb67025)) +- Handle ObjectTypeSpreadProperties which are not resolvable + ([4b8b721](https://github.com/reactjs/react-docgen/commit/4b8b721e6332185c0964a35329108ccdb64f8bb8)) +- Ignore methods in `Object.value()` calls + ([4fc5b21](https://github.com/reactjs/react-docgen/commit/4fc5b21d899990681287c8d9d70771b7361ec41e)) ## [6.0.0-alpha.2](https://github.com/reactjs/react-docgen/compare/v6.0.0-alpha.1...v6.0.0-alpha.2) (2022-04-04) ### Bug Fixes -- Change folder name inside the npm package back to `dist`. ([5f3da8c](https://github.com/reactjs/react-docgen/commit/5f3da8c892fd052db470d0a44d13c704eef4d011)) - There was no real reason to change this and happened during the TypeScript migration. +- Change folder name inside the npm package back to `dist`. + ([5f3da8c](https://github.com/reactjs/react-docgen/commit/5f3da8c892fd052db470d0a44d13c704eef4d011)) + There was no real reason to change this and happened during the TypeScript + migration. ## 6.0.0-alpha.1 (2022-04-04) ### Bug Fixes -- Fix for expressionTo with Spread and Methods ([5f3da8c](https://github.com/reactjs/react-docgen/commit/5f3da8c892fd052db470d0a44d13c704eef4d011)) -- Remove obsolete id check ([66961d8](https://github.com/reactjs/react-docgen/commit/66961d868fb09cbf2a96ea5a4edec602602851b3)) -- Remove usage of ast-type builders ([17c8a9c](https://github.com/reactjs/react-docgen/commit/17c8a9c123e0b699e96137e8714cd57fe6200e0c)) +- Fix for expressionTo with Spread and Methods + ([5f3da8c](https://github.com/reactjs/react-docgen/commit/5f3da8c892fd052db470d0a44d13c704eef4d011)) +- Remove obsolete id check + ([66961d8](https://github.com/reactjs/react-docgen/commit/66961d868fb09cbf2a96ea5a4edec602602851b3)) +- Remove usage of ast-type builders + ([17c8a9c](https://github.com/reactjs/react-docgen/commit/17c8a9c123e0b699e96137e8714cd57fe6200e0c)) ### Features -- Migrate to TypeScript ([7b35e6f](https://github.com/reactjs/react-docgen/commit/7b35e6f1336c6c606b194b2d0e70376e9c1c0a9d)) -- Remove building out of scope AST Nodes from resolveToValue ([5bcf56c](https://github.com/reactjs/react-docgen/commit/5bcf56c6f7d2d8118adc1ed80573f2e3555455cb)) +- Migrate to TypeScript + ([7b35e6f](https://github.com/reactjs/react-docgen/commit/7b35e6f1336c6c606b194b2d0e70376e9c1c0a9d)) +- Remove building out of scope AST Nodes from resolveToValue + ([5bcf56c](https://github.com/reactjs/react-docgen/commit/5bcf56c6f7d2d8118adc1ed80573f2e3555455cb)) ### BREAKING CHANGES -- `resolveToValue` will not create a `MemberExpression` for targets ending in destructuring. It will now simply resolve to the `Identifier` inside the destructuring. Use new helper `isDestructuringAssignment` to further check this identifier. -- The helpers `resolveObjectValuesToArray` and `resolveObjectKeysToArray` return now `string[]` instead of a `NodePath` +- `resolveToValue` will not create a `MemberExpression` for targets ending in + destructuring. It will now simply resolve to the `Identifier` inside the + destructuring. Use new helper `isDestructuringAssignment` to further check + this identifier. +- The helpers `resolveObjectValuesToArray` and `resolveObjectKeysToArray` return + now `string[]` instead of a `NodePath` diff --git a/packages/react-docgen/package.json b/packages/react-docgen/package.json index 37acf83b45d..f72ca48b431 100644 --- a/packages/react-docgen/package.json +++ b/packages/react-docgen/package.json @@ -1,6 +1,6 @@ { "name": "react-docgen", - "version": "6.0.0-alpha.4", + "version": "6.0.0-beta.5", "description": "A library to extract information from React components for documentation generation.", "repository": "reactjs/react-docgen", "type": "module", diff --git a/playground/package.json b/playground/package.json index 2f6ea323e63..48a14b26918 100644 --- a/playground/package.json +++ b/playground/package.json @@ -18,7 +18,7 @@ "os-browserify": "0.3.0", "path-browserify": "1.0.1", "process": "0.11.10", - "react-docgen": "workspace:6.0.0-alpha.4" + "react-docgen": "workspace:6.0.0-beta.5" }, "devDependencies": { "@babel/core": "7.20.12", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 69b5a066f45..214a9c1b6e2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -89,7 +89,7 @@ importers: commander: 10.0.0 debug: 4.3.4 fast-glob: 3.2.12 - react-docgen: workspace:6.0.0-alpha.4 + react-docgen: workspace:6.0.0-beta.5 slash: 5.0.0 dependencies: chalk: 5.2.0 @@ -140,7 +140,7 @@ importers: path-browserify: 1.0.1 process: 0.11.10 react: 18.2.0 - react-docgen: workspace:6.0.0-alpha.4 + react-docgen: workspace:6.0.0-beta.5 react-dom: 18.2.0 webpack: 5.75.0 webpack-cli: 5.0.1