Skip to content

Commit 2918ea9

Browse files
Packages ready to publish (#975)
Publish new versions Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 06c2fae commit 2918ea9

File tree

12 files changed

+110
-32
lines changed

12 files changed

+110
-32
lines changed

.changeset/late-numbers-raise.md

-5
This file was deleted.

.changeset/olive-wolves-occur.md

-5
This file was deleted.

.changeset/popular-gorillas-sip.md

-11
This file was deleted.

.changeset/rotten-suns-reply.md

-5
This file was deleted.

packages/react-docgen-cli/CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Release Notes
22

3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- [#942](https://github.com/reactjs/react-docgen/pull/942)
8+
[`c3dfead`](https://github.com/reactjs/react-docgen/commit/c3dfead6b1cfdd57e34d1689c2b1d1334e9ef328)
9+
Thanks [@danez](https://github.com/danez)! - Drop support for Node.js 16, 17,
10+
18, 19 and 21.
11+
12+
With this `react-docgen` version Node.js support is:
13+
14+
- Node.js 20.9.0 or newer 20.x versions
15+
- Node.js 22.0.0 or any newer version
16+
17+
### Patch Changes
18+
19+
- [#961](https://github.com/reactjs/react-docgen/pull/961)
20+
[`5e2a332`](https://github.com/reactjs/react-docgen/commit/5e2a33202e101e55fc6b0640c1ff6686f8f92189)
21+
Thanks [@renovate](https://github.com/apps/renovate)! - update dependency
22+
commander to v13
23+
24+
- [#979](https://github.com/reactjs/react-docgen/pull/979)
25+
[`3486af5`](https://github.com/reactjs/react-docgen/commit/3486af5db316864824fa5f0d86d3a92335b0912f)
26+
Thanks [@renovate](https://github.com/apps/renovate)! - Fix bug with loading
27+
CommonJS files
28+
29+
- Updated dependencies
30+
[[`06c2fae`](https://github.com/reactjs/react-docgen/commit/06c2fae6f0d7f1aea3f23c2bf0dbfdc7b801ccb8),
31+
[`c3dfead`](https://github.com/reactjs/react-docgen/commit/c3dfead6b1cfdd57e34d1689c2b1d1334e9ef328)]:
32+
33+
334
## 2.0.6
435

536
### Patch Changes

packages/react-docgen-cli/package.json

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

packages/react-docgen/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Release Notes
22

3+
## 8.0.0
4+
5+
### Major Changes
6+
7+
- [#942](https://github.com/reactjs/react-docgen/pull/942)
8+
[`c3dfead`](https://github.com/reactjs/react-docgen/commit/c3dfead6b1cfdd57e34d1689c2b1d1334e9ef328)
9+
Thanks [@danez](https://github.com/danez)! - Drop support for Node.js 16, 17,
10+
18, 19 and 21.
11+
12+
With this `react-docgen` version Node.js support is:
13+
14+
- Node.js 20.9.0 or newer 20.x versions
15+
- Node.js 22.0.0 or any newer version
16+
17+
### Patch Changes
18+
19+
- [#993](https://github.com/reactjs/react-docgen/pull/993)
20+
[`06c2fae`](https://github.com/reactjs/react-docgen/commit/06c2fae6f0d7f1aea3f23c2bf0dbfdc7b801ccb8)
21+
Thanks [@danez](https://github.com/danez)! - Fixed crash when classes with
22+
private fields are used
23+
324
## 7.1.1
425

526
### Patch Changes

packages/react-docgen/package.json

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

packages/website/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"postcss": "8.5.3",
2727
"postcss-lightningcss": "1.0.1",
2828
"react": "19.1.0",
29-
"react-docgen": "workspace:7.1.1",
29+
"react-docgen": "workspace:8.0.0",
3030
"react-dom": "19.1.0",
3131
"tailwindcss": "3.4.17"
3232
},

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

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Release Notes
22

3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- [#942](https://github.com/reactjs/react-docgen/pull/942)
8+
[`c3dfead`](https://github.com/reactjs/react-docgen/commit/c3dfead6b1cfdd57e34d1689c2b1d1334e9ef328)
9+
Thanks [@danez](https://github.com/danez)! - Drop support for Node.js 16, 17,
10+
18, 19 and 21.
11+
12+
With this `react-docgen` version Node.js support is:
13+
14+
- Node.js 20.9.0 or newer 20.x versions
15+
- Node.js 22.0.0 or any newer version
16+
17+
### Patch Changes
18+
19+
- [#961](https://github.com/reactjs/react-docgen/pull/961)
20+
[`5e2a332`](https://github.com/reactjs/react-docgen/commit/5e2a33202e101e55fc6b0640c1ff6686f8f92189)
21+
Thanks [@renovate](https://github.com/apps/renovate)! - update dependency
22+
commander to v13
23+
24+
- [#979](https://github.com/reactjs/react-docgen/pull/979)
25+
[`3486af5`](https://github.com/reactjs/react-docgen/commit/3486af5db316864824fa5f0d86d3a92335b0912f)
26+
Thanks [@renovate](https://github.com/apps/renovate)! - Fix bug with loading
27+
CommonJS files
28+
29+
- Updated dependencies
30+
[[`06c2fae`](https://github.com/reactjs/react-docgen/commit/06c2fae6f0d7f1aea3f23c2bf0dbfdc7b801ccb8),
31+
[`c3dfead`](https://github.com/reactjs/react-docgen/commit/c3dfead6b1cfdd57e34d1689c2b1d1334e9ef328)]:
32+
33+
334
## 2.0.6
435

536
### Patch Changes

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

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Release Notes
22

3+
## 8.0.0
4+
5+
### Major Changes
6+
7+
- [#942](https://github.com/reactjs/react-docgen/pull/942)
8+
[`c3dfead`](https://github.com/reactjs/react-docgen/commit/c3dfead6b1cfdd57e34d1689c2b1d1334e9ef328)
9+
Thanks [@danez](https://github.com/danez)! - Drop support for Node.js 16, 17,
10+
18, 19 and 21.
11+
12+
With this `react-docgen` version Node.js support is:
13+
14+
- Node.js 20.9.0 or newer 20.x versions
15+
- Node.js 22.0.0 or any newer version
16+
17+
### Patch Changes
18+
19+
- [#993](https://github.com/reactjs/react-docgen/pull/993)
20+
[`06c2fae`](https://github.com/reactjs/react-docgen/commit/06c2fae6f0d7f1aea3f23c2bf0dbfdc7b801ccb8)
21+
Thanks [@danez](https://github.com/danez)! - Fixed crash when classes with
22+
private fields are used
23+
324
## 7.1.1
425

526
### Patch Changes

pnpm-lock.yaml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)