Skip to content

Packages ready to publish (rc) #768

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

Merged
merged 1 commit into from
Apr 30, 2023
Merged
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
9 changes: 8 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"changesets": [
"blue-points-exist",
"bright-rivers-swim",
"brown-tools-explain",
"clean-cooks-attend",
"famous-needles-wonder",
"five-trainers-report",
Expand All @@ -19,6 +20,8 @@
"great-rice-rush",
"grumpy-falcons-rhyme",
"grumpy-hotels-admire",
"healthy-moles-explain",
"heavy-plums-repair",
"honest-boxes-behave",
"honest-boxes-copy",
"hungry-crabs-scream",
Expand All @@ -29,6 +32,7 @@
"mean-glasses-chew",
"mighty-kids-report",
"mighty-shrimps-shout",
"nasty-onions-fly",
"nervous-humans-shave",
"nine-vans-bow",
"plenty-cooks-grow",
Expand All @@ -44,17 +48,20 @@
"six-cows-trade",
"smart-eagles-shop",
"smart-files-tell",
"smart-trainers-film",
"smart-waves-refuse",
"spotty-cameras-fetch",
"strong-horses-build",
"strong-pillows-visit",
"stupid-files-buy",
"tasty-dogs-scream",
"ten-camels-jog",
"ten-glasses-compete",
"thin-foxes-talk",
"thin-tables-sneeze",
"tricky-shoes-check",
"twelve-trainers-tap",
"weak-numbers-bow"
"weak-numbers-bow",
"witty-ligers-press"
]
}
22 changes: 22 additions & 0 deletions packages/react-docgen-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Release Notes

## 1.0.0-rc.4

### Patch Changes

- [#782](https://github.com/reactjs/react-docgen/pull/782)
[`72ac984`](https://github.com/reactjs/react-docgen/commit/72ac9841f02f1f6b925247621bc5aa56d3ba4267)
Thanks [@renovate](https://github.com/apps/renovate)! - Update dependency
commander to v10.0.1

- [#783](https://github.com/reactjs/react-docgen/pull/783)
[`fc8a97c`](https://github.com/reactjs/react-docgen/commit/fc8a97c5fb552f5e4d2cbffced6c66f8729d23b6)
Thanks [@renovate](https://github.com/apps/renovate)! - update dependency
slash to v5.0.1

- Updated dependencies
[[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca),
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca),
[`a684d82`](https://github.com/reactjs/react-docgen/commit/a684d8281044b3f8c8baecc9148cd4ef2b8fd409),
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca),
[`e08e08d`](https://github.com/reactjs/react-docgen/commit/e08e08d6cd56c833fd123019639dca9d819cd7ab)]:
- react-docgen@6.0.0-rc.7

## 1.0.0-beta.3

### Minor 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": "1.0.0-beta.3",
"version": "1.0.0-rc.4",
"description": "A CLI to extract information from React components for documentation generation.",
"repository": "reactjs/react-docgen",
"type": "module",
Expand Down Expand Up @@ -31,7 +31,7 @@
"commander": "10.0.1",
"debug": "4.3.4",
"fast-glob": "3.2.12",
"react-docgen": "workspace:6.0.0-beta.6",
"react-docgen": "workspace:6.0.0-rc.7",
"slash": "5.0.1"
},
"devDependencies": {
Expand Down
39 changes: 39 additions & 0 deletions packages/react-docgen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Release Notes

## 6.0.0-rc.7

### Major Changes

- [#786](https://github.com/reactjs/react-docgen/pull/786)
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca)
Thanks [@danez](https://github.com/danez)! - Renamed the method `toObject` to
`build` in the DocumentationBuilder.

This method might be used by integrations.

### Minor Changes

- [#786](https://github.com/reactjs/react-docgen/pull/786)
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca)
Thanks [@danez](https://github.com/danez)! - Export the type for the
DocumentationBuilder.

- [#786](https://github.com/reactjs/react-docgen/pull/786)
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca)
Thanks [@danez](https://github.com/danez)! - The types `NodePath` and
`babelTypes` are now exported.

These types are useful when building integrations in TypeScript.

`babelTypes` includes all types from `@babel/types`.

### Patch Changes

- [#767](https://github.com/reactjs/react-docgen/pull/767)
[`a684d82`](https://github.com/reactjs/react-docgen/commit/a684d8281044b3f8c8baecc9148cd4ef2b8fd409)
Thanks [@danez](https://github.com/danez)! - Fix handling of `PropTypes.oneOf`
to handle unresolved imported values correctly

- [#769](https://github.com/reactjs/react-docgen/pull/769)
[`e08e08d`](https://github.com/reactjs/react-docgen/commit/e08e08d6cd56c833fd123019639dca9d819cd7ab)
Thanks [@danez](https://github.com/danez)! - Correctly resolve the values in
an `Object.values()` call

## 6.0.0-beta.6

### Major Changes
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": "6.0.0-beta.6",
"version": "6.0.0-rc.7",
"description": "A library to extract information from React components for documentation generation.",
"repository": "reactjs/react-docgen",
"type": "module",
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.4.23",
"postcss-lightningcss": "0.7.0",
"react": "18.2.0",
"react-docgen": "workspace:6.0.0-beta.6",
"react-docgen": "workspace:6.0.0-rc.7",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2"
},
Expand Down
22 changes: 22 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,27 @@
# Release Notes

## 1.0.0-rc.4

### Patch Changes

- [#782](https://github.com/reactjs/react-docgen/pull/782)
[`72ac984`](https://github.com/reactjs/react-docgen/commit/72ac9841f02f1f6b925247621bc5aa56d3ba4267)
Thanks [@renovate](https://github.com/apps/renovate)! - Update dependency
commander to v10.0.1

- [#783](https://github.com/reactjs/react-docgen/pull/783)
[`fc8a97c`](https://github.com/reactjs/react-docgen/commit/fc8a97c5fb552f5e4d2cbffced6c66f8729d23b6)
Thanks [@renovate](https://github.com/apps/renovate)! - update dependency
slash to v5.0.1

- Updated dependencies
[[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca),
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca),
[`a684d82`](https://github.com/reactjs/react-docgen/commit/a684d8281044b3f8c8baecc9148cd4ef2b8fd409),
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca),
[`e08e08d`](https://github.com/reactjs/react-docgen/commit/e08e08d6cd56c833fd123019639dca9d819cd7ab)]:
- react-docgen@6.0.0-rc.7

## 1.0.0-beta.3

### Minor Changes
Expand Down
39 changes: 39 additions & 0 deletions packages/website/src/pages/docs/release-notes/react-docgen.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Release Notes

## 6.0.0-rc.7

### Major Changes

- [#786](https://github.com/reactjs/react-docgen/pull/786)
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca)
Thanks [@danez](https://github.com/danez)! - Renamed the method `toObject` to
`build` in the DocumentationBuilder.

This method might be used by integrations.

### Minor Changes

- [#786](https://github.com/reactjs/react-docgen/pull/786)
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca)
Thanks [@danez](https://github.com/danez)! - Export the type for the
DocumentationBuilder.

- [#786](https://github.com/reactjs/react-docgen/pull/786)
[`0a2481d`](https://github.com/reactjs/react-docgen/commit/0a2481df6328bdbe46a01fb25ee9a0966ec023ca)
Thanks [@danez](https://github.com/danez)! - The types `NodePath` and
`babelTypes` are now exported.

These types are useful when building integrations in TypeScript.

`babelTypes` includes all types from `@babel/types`.

### Patch Changes

- [#767](https://github.com/reactjs/react-docgen/pull/767)
[`a684d82`](https://github.com/reactjs/react-docgen/commit/a684d8281044b3f8c8baecc9148cd4ef2b8fd409)
Thanks [@danez](https://github.com/danez)! - Fix handling of `PropTypes.oneOf`
to handle unresolved imported values correctly

- [#769](https://github.com/reactjs/react-docgen/pull/769)
[`e08e08d`](https://github.com/reactjs/react-docgen/commit/e08e08d6cd56c833fd123019639dca9d819cd7ab)
Thanks [@danez](https://github.com/danez)! - Correctly resolve the values in
an `Object.values()` call

## 6.0.0-beta.6

### Major Changes
Expand Down
44 changes: 12 additions & 32 deletions pnpm-lock.yaml

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