Skip to content

Packages ready to publish #1010

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/brave-cases-obey.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/react-docgen-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 3.0.2

### Patch Changes

- Updated dependencies
[[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)]:
- [email protected]

## 3.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-docgen-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-docgen/cli",
"version": "3.0.1",
"version": "3.0.2",
"description": "A CLI to extract information from React components for documentation generation.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -35,7 +35,7 @@
"commander": "14.0.0",
"debug": "4.4.1",
"fast-glob": "3.3.3",
"react-docgen": "workspace:8.0.0",
"react-docgen": "workspace:8.0.1",
"slash": "5.1.0"
},
"devDependencies": {
Expand Down
17 changes: 9 additions & 8 deletions packages/react-docgen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes

## 8.0.1

### Patch Changes

- [#1009](https://github.com/reactjs/react-docgen/pull/1009)
[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)
Thanks [@danez](https://github.com/danez)! - Do not fail on new VoidPattern
type

## 8.0.0

### Major Changes
Expand All @@ -10,7 +19,6 @@
18, 19 and 21.

With this `react-docgen` version Node.js support is:

- Node.js 20.9.0 or newer 20.x versions
- Node.js 22.0.0 or any newer version

Expand Down Expand Up @@ -221,7 +229,6 @@
[`d7a39af`](https://github.com/reactjs/react-docgen/commit/d7a39af7162c312daba2be428613cb378cce0727)
Thanks [@danez](https://github.com/danez)! - 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
Expand Down Expand Up @@ -266,7 +273,6 @@
- [`96d6e9e`](https://github.com/reactjs/react-docgen/commit/96d6e9e6003b92604781553f6910812c74c18dad)
Thanks [@danez](https://github.com/danez)! - The main `parse` API had some
breaking changes.

- The arguments were changed from previously 5 to just 2. The following diff
illustrates how to migrate:

Expand Down Expand Up @@ -304,7 +310,6 @@
[`80e4c74`](https://github.com/reactjs/react-docgen/commit/80e4c747c19d80081c162118f9c7110916fc27a0)
Thanks [@danez](https://github.com/danez)! - Renamed and migrated built-in
resolvers to classes.

- `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver`
and is now a class.

Expand Down Expand Up @@ -454,7 +459,6 @@

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 file
- `MULTIPLE_DEFINITIONS`: Multiple components found in one file

Expand Down Expand Up @@ -627,7 +631,6 @@
### 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
Expand All @@ -645,7 +648,6 @@
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.

Expand Down Expand Up @@ -796,7 +798,6 @@

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 file
- `MULTIPLE_DEFINITIONS`: Multiple components found in one files

Expand Down
2 changes: 1 addition & 1 deletion packages/react-docgen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-docgen",
"version": "8.0.0",
"version": "8.0.1",
"description": "A library to extract information from React components for documentation generation.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"postcss": "8.5.6",
"postcss-lightningcss": "1.0.1",
"react": "19.1.1",
"react-docgen": "workspace:8.0.0",
"react-docgen": "workspace:8.0.1",
"react-dom": "19.1.1",
"tailwindcss": "3.4.17"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/website/src/pages/docs/release-notes/cli.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 3.0.2

### Patch Changes

- Updated dependencies
[[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)]:
- [email protected]

## 3.0.1

### Patch Changes
Expand Down
17 changes: 9 additions & 8 deletions packages/website/src/pages/docs/release-notes/react-docgen.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes

## 8.0.1

### Patch Changes

- [#1009](https://github.com/reactjs/react-docgen/pull/1009)
[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)
Thanks [@danez](https://github.com/danez)! - Do not fail on new VoidPattern
type

## 8.0.0

### Major Changes
Expand All @@ -10,7 +19,6 @@
18, 19 and 21.

With this `react-docgen` version Node.js support is:

- Node.js 20.9.0 or newer 20.x versions
- Node.js 22.0.0 or any newer version

Expand Down Expand Up @@ -221,7 +229,6 @@
[`d7a39af`](https://github.com/reactjs/react-docgen/commit/d7a39af7162c312daba2be428613cb378cce0727)
Thanks [@danez](https://github.com/danez)! - 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
Expand Down Expand Up @@ -266,7 +273,6 @@
- [`96d6e9e`](https://github.com/reactjs/react-docgen/commit/96d6e9e6003b92604781553f6910812c74c18dad)
Thanks [@danez](https://github.com/danez)! - The main `parse` API had some
breaking changes.

- The arguments were changed from previously 5 to just 2. The following diff
illustrates how to migrate:

Expand Down Expand Up @@ -304,7 +310,6 @@
[`80e4c74`](https://github.com/reactjs/react-docgen/commit/80e4c747c19d80081c162118f9c7110916fc27a0)
Thanks [@danez](https://github.com/danez)! - Renamed and migrated built-in
resolvers to classes.

- `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver`
and is now a class.

Expand Down Expand Up @@ -454,7 +459,6 @@

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 file
- `MULTIPLE_DEFINITIONS`: Multiple components found in one file

Expand Down Expand Up @@ -627,7 +631,6 @@
### 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
Expand All @@ -645,7 +648,6 @@
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.

Expand Down Expand Up @@ -796,7 +798,6 @@

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 file
- `MULTIPLE_DEFINITIONS`: Multiple components found in one files

Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading