Skip to content

Commit fae2125

Browse files
authored
Merge branch 'master' into master
2 parents 6654478 + f69c2c9 commit fae2125

32 files changed

+311
-928
lines changed

content/blog/2019-10-22-react-release-channels.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Because the source of truth for React is our [public GitHub repository](https://
1313

1414
We would like to make it even easier for developers to test prerelease builds of React, so we're formalizing our process with three separate release channels.
1515

16-
## Release Channels
16+
## Release Channels {#release-channels}
1717

1818
> The information in this post is also available on our [Release Channels](/docs/release-channels.html) page. We will update that document whenever there are changes to our release process.
1919
@@ -29,15 +29,15 @@ All releases are published to npm, but only Latest uses [semantic versioning](/d
2929

3030
By publishing prereleases to the same registry that we use for stable releases, we are able to take advantage of the many tools that support the npm workflow, like [unpkg](https://unpkg.com) and [CodeSandbox](https://codesandbox.io).
3131

32-
### Latest Channel
32+
### Latest Channel {#latest-channel}
3333

3434
Latest is the channel used for stable React releases. It corresponds to the `latest` tag on npm. It is the recommended channel for all React apps that are shipped to real users.
3535

3636
**If you're not sure which channel you should use, it's Latest.** If you're a React developer, this is what you're already using.
3737

3838
You can expect updates to Latest to be extremely stable. Versions follow the semantic versioning scheme. Learn more about our commitment to stability and incremental migration in our [versioning policy](/docs/faq-versioning.html).
3939

40-
### Next Channel
40+
### Next Channel {#next-channel}
4141

4242
The Next channel is a prerelease channel that tracks the master branch of the React repository. We use prereleases in the Next channel as release candidates for the Latest channel. You can think of Next as a superset of Latest that is updated more frequently.
4343

@@ -47,7 +47,7 @@ The degree of change between the most recent Next release and the most recent La
4747

4848
Releases in Next are published with the `next` tag on npm. Versions are generated from a hash of the build's contents, e.g. `0.0.0-1022ee0ec`.
4949

50-
#### Using the Next Channel for Integration Testing
50+
#### Using the Next Channel for Integration Testing {#using-the-next-channel-for-integration-testing}
5151

5252
The Next channel is designed to support integration testing between React and other projects.
5353

@@ -73,7 +73,7 @@ If you're the author of a third party React framework, library, developer tool,
7373

7474
A project that uses this workflow is Next.js. (No pun intended! Seriously!) You can refer to their [CircleCI configuration](https://github.com/zeit/next.js/blob/c0a1c0f93966fe33edd93fb53e5fafb0dcd80a9e/.circleci/config.yml) as an example.
7575

76-
### Experimental Channel
76+
### Experimental Channel {#experimental-channel}
7777

7878
Like Next, the Experimental channel is a prerelease channel that tracks the master branch of the React repository. Unlike Next, Experimental releases include additional features and APIs that are not ready for wider release.
7979

@@ -83,15 +83,15 @@ Experimental releases may be significantly different than releases to Next and L
8383

8484
Releases in Experimental are published with the `experimental` tag on npm. Versions are generated from a hash of the build's contents, e.g. `0.0.0-experimental-1022ee0ec`.
8585

86-
#### What Goes Into an Experimental Release?
86+
#### What Goes Into an Experimental Release? {#what-goes-into-an-experimental-release}
8787

8888
Experimental features are ones that are not ready to be released to the wider public, and may change drastically before they are finalized. Some experiments may never be finalized -- the reason we have experiments is to test the viability of proposed changes.
8989

9090
For example, if the Experimental channel had existed when we announced Hooks, we would have released Hooks to the Experimental channel weeks before they were available in Latest.
9191

9292
You may find it valuable to run integration tests against Experimental. This is up to you. However, be advised that Experimental is even less stable than Next. **We do not guarantee any stability between Experimental releases.**
9393

94-
#### How Can I Learn More About Experimental Features?
94+
#### How Can I Learn More About Experimental Features? {#how-can-i-learn-more-about-experimental-features}
9595

9696
Experimental features may or may not be documented. Usually, experiments aren't documented until they are close to shipping in Next or Stable.
9797

content/blog/2019-11-06-building-great-user-experiences-with-concurrent-mode-and-suspense.md

+229
Large diffs are not rendered by default.

content/community/complementary-tools.it-IT.md

-5
This file was deleted.

content/community/complementary-tools.ko-KR.md

-5
This file was deleted.

content/community/complementary-tools.zh-CN.md

-5
This file was deleted.

content/community/conferences.it-IT.md

-19
This file was deleted.

content/community/conferences.ko-KR.md

-19
This file was deleted.

content/community/conferences.zh-CN.md

-29
This file was deleted.

content/community/examples.it-IT.md

-5
This file was deleted.

content/community/examples.ko-KR.md

-5
This file was deleted.

content/community/examples.zh-CN.md

-5
This file was deleted.

content/community/external-resources.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ There are many wonderful curated resources the React community has put together.
1717
- [Awesome React Components](https://github.com/brillout/awesome-react-components) - A curated list of React components.
1818

1919
- [Awesome React Talks](https://github.com/tiaanduplessis/awesome-react-talks) - A curated list of React talks.
20+
21+
- [Hero35 React Hub](https://hero35.com/stack/react) - A website with _all_ React conferences and talks, categorized & curated.

content/community/nav.yml

-20
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,3 @@
1818
title: Videos
1919
- id: external-resources
2020
title: External Resources
21-
- title: Tools
22-
items:
23-
- id: debugging-tools
24-
title: Debugging
25-
- id: component-workbenches
26-
title: Component Workbenches
27-
- id: jsx-integrations
28-
title: JSX Integrations
29-
- id: starter-kits
30-
title: Starter Kits
31-
- id: routing
32-
title: Routing
33-
- id: model-management
34-
title: Model Management
35-
- id: data-fetching
36-
title: Data Fetching
37-
- id: ui-components
38-
title: UI Components
39-
- id: misc
40-
title: Miscellaneous

content/community/tools-comp-workbenches.md

-15
This file was deleted.

content/community/tools-data-fetching.md

-12
This file was deleted.

content/community/tools-debugging.md

-8
This file was deleted.

content/community/tools-jsx.md

-53
This file was deleted.

content/community/tools-misc.md

-19
This file was deleted.

0 commit comments

Comments
 (0)