Skip to content

Commit b32aff1

Browse files
Publish new versions
1 parent c236b1a commit b32aff1

File tree

9 files changed

+40
-27
lines changed

9 files changed

+40
-27
lines changed

.changeset/brave-cases-obey.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/react-docgen-cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes
22

3+
## 3.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
[[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)]:
9+
10+
311
## 3.0.1
412

513
### Patch Changes

packages/react-docgen-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-docgen/cli",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "A CLI to extract information from React components for documentation generation.",
55
"repository": {
66
"type": "git",
@@ -35,7 +35,7 @@
3535
"commander": "14.0.0",
3636
"debug": "4.4.1",
3737
"fast-glob": "3.3.3",
38-
"react-docgen": "workspace:8.0.0",
38+
"react-docgen": "workspace:8.0.1",
3939
"slash": "5.1.0"
4040
},
4141
"devDependencies": {

packages/react-docgen/CHANGELOG.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release Notes
22

3+
## 8.0.1
4+
5+
### Patch Changes
6+
7+
- [#1009](https://github.com/reactjs/react-docgen/pull/1009)
8+
[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)
9+
Thanks [@danez](https://github.com/danez)! - Do not fail on new VoidPattern
10+
type
11+
312
## 8.0.0
413

514
### Major Changes
@@ -10,7 +19,6 @@
1019
18, 19 and 21.
1120

1221
With this `react-docgen` version Node.js support is:
13-
1422
- Node.js 20.9.0 or newer 20.x versions
1523
- Node.js 22.0.0 or any newer version
1624

@@ -221,7 +229,6 @@
221229
[`d7a39af`](https://github.com/reactjs/react-docgen/commit/d7a39af7162c312daba2be428613cb378cce0727)
222230
Thanks [@danez](https://github.com/danez)! - Refactored
223231
`resolveComponentDefinition` utility.
224-
225232
- Renamed to `findComponentDefinition`
226233
- Removed named export `isComponentDefinition`
227234
- The utility now does a lot more than previously, check out the commit to see
@@ -266,7 +273,6 @@
266273
- [`96d6e9e`](https://github.com/reactjs/react-docgen/commit/96d6e9e6003b92604781553f6910812c74c18dad)
267274
Thanks [@danez](https://github.com/danez)! - The main `parse` API had some
268275
breaking changes.
269-
270276
- The arguments were changed from previously 5 to just 2. The following diff
271277
illustrates how to migrate:
272278

@@ -304,7 +310,6 @@
304310
[`80e4c74`](https://github.com/reactjs/react-docgen/commit/80e4c747c19d80081c162118f9c7110916fc27a0)
305311
Thanks [@danez](https://github.com/danez)! - Renamed and migrated built-in
306312
resolvers to classes.
307-
308313
- `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver`
309314
and is now a class.
310315

@@ -454,7 +459,6 @@
454459

455460
There is a new export `ERROR_CODES` that contains all possible error codes.
456461
The two errors that have codes right now are:
457-
458462
- `MISSING_DEFINITION`: No component found in a file
459463
- `MULTIPLE_DEFINITIONS`: Multiple components found in one file
460464

@@ -627,7 +631,6 @@
627631
### Major Changes
628632

629633
- d7a39af: Refactored `resolveComponentDefinition` utility.
630-
631634
- Renamed to `findComponentDefinition`
632635
- Removed named export `isComponentDefinition`
633636
- The utility now does a lot more than previously, check out the commit to see
@@ -645,7 +648,6 @@
645648
Instead you can use the new `@component` annotation.
646649

647650
- 80e4c74: Renamed and migrated built-in resolvers to classes.
648-
649651
- `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver`
650652
and is now a class.
651653

@@ -796,7 +798,6 @@
796798

797799
There is a new export `ERROR_CODES` that contains all possible error codes.
798800
The two errors that have codes right now are:
799-
800801
- `MISSING_DEFINITION`: No component found in file
801802
- `MULTIPLE_DEFINITIONS`: Multiple components found in one files
802803

packages/react-docgen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-docgen",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "A library to extract information from React components for documentation generation.",
55
"repository": {
66
"type": "git",

packages/website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"postcss": "8.5.6",
2727
"postcss-lightningcss": "1.0.1",
2828
"react": "19.1.1",
29-
"react-docgen": "workspace:8.0.0",
29+
"react-docgen": "workspace:8.0.1",
3030
"react-dom": "19.1.1",
3131
"tailwindcss": "3.4.17"
3232
},

packages/website/src/pages/docs/release-notes/cli.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes
22

3+
## 3.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
[[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)]:
9+
10+
311
## 3.0.1
412

513
### Patch Changes

packages/website/src/pages/docs/release-notes/react-docgen.mdx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release Notes
22

3+
## 8.0.1
4+
5+
### Patch Changes
6+
7+
- [#1009](https://github.com/reactjs/react-docgen/pull/1009)
8+
[`4c7dd9d`](https://github.com/reactjs/react-docgen/commit/4c7dd9d12ffdb3ac1d6f9663124cc43ec7fabb08)
9+
Thanks [@danez](https://github.com/danez)! - Do not fail on new VoidPattern
10+
type
11+
312
## 8.0.0
413

514
### Major Changes
@@ -10,7 +19,6 @@
1019
18, 19 and 21.
1120

1221
With this `react-docgen` version Node.js support is:
13-
1422
- Node.js 20.9.0 or newer 20.x versions
1523
- Node.js 22.0.0 or any newer version
1624

@@ -221,7 +229,6 @@
221229
[`d7a39af`](https://github.com/reactjs/react-docgen/commit/d7a39af7162c312daba2be428613cb378cce0727)
222230
Thanks [@danez](https://github.com/danez)! - Refactored
223231
`resolveComponentDefinition` utility.
224-
225232
- Renamed to `findComponentDefinition`
226233
- Removed named export `isComponentDefinition`
227234
- The utility now does a lot more than previously, check out the commit to see
@@ -266,7 +273,6 @@
266273
- [`96d6e9e`](https://github.com/reactjs/react-docgen/commit/96d6e9e6003b92604781553f6910812c74c18dad)
267274
Thanks [@danez](https://github.com/danez)! - The main `parse` API had some
268275
breaking changes.
269-
270276
- The arguments were changed from previously 5 to just 2. The following diff
271277
illustrates how to migrate:
272278

@@ -304,7 +310,6 @@
304310
[`80e4c74`](https://github.com/reactjs/react-docgen/commit/80e4c747c19d80081c162118f9c7110916fc27a0)
305311
Thanks [@danez](https://github.com/danez)! - Renamed and migrated built-in
306312
resolvers to classes.
307-
308313
- `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver`
309314
and is now a class.
310315

@@ -454,7 +459,6 @@
454459

455460
There is a new export `ERROR_CODES` that contains all possible error codes.
456461
The two errors that have codes right now are:
457-
458462
- `MISSING_DEFINITION`: No component found in a file
459463
- `MULTIPLE_DEFINITIONS`: Multiple components found in one file
460464

@@ -627,7 +631,6 @@
627631
### Major Changes
628632

629633
- d7a39af: Refactored `resolveComponentDefinition` utility.
630-
631634
- Renamed to `findComponentDefinition`
632635
- Removed named export `isComponentDefinition`
633636
- The utility now does a lot more than previously, check out the commit to see
@@ -645,7 +648,6 @@
645648
Instead you can use the new `@component` annotation.
646649

647650
- 80e4c74: Renamed and migrated built-in resolvers to classes.
648-
649651
- `findAllComponentDefinitions` was renamed to `FindAllDefinitionsResolver`
650652
and is now a class.
651653

@@ -796,7 +798,6 @@
796798

797799
There is a new export `ERROR_CODES` that contains all possible error codes.
798800
The two errors that have codes right now are:
799-
800801
- `MISSING_DEFINITION`: No component found in file
801802
- `MULTIPLE_DEFINITIONS`: Multiple components found in one files
802803

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)