Skip to content

Sync with reactjs.org @ e0a0ec3d #284

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 32 commits into from
Dec 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
44fbda5
Add v16.11 to versions (#2512)
jamesmckenzie Oct 28, 2019
c2d0cf2
Update for 16.11.0
lex111 Oct 28, 2019
cee0064
Add Detroit React User Group to list of meetups (#2521)
eruby94 Oct 30, 2019
1c7ca3b
Add indonesia react meetup (#2525)
bangun-jds Nov 4, 2019
9fdcbc2
Fix small typo in concurrent-mode-suspense.md (#2529)
ElRatonDeFuego Nov 4, 2019
61b0f0e
Added React Day Bangalore (#2527)
akiran Nov 4, 2019
3846b50
Add more Brazil react meetups (#2518)
lucianomlima Nov 4, 2019
66cc1b0
Align the meta title (#2514)
tanhauhau Nov 4, 2019
c16aec5
Remove the Tools doc section (#2535)
gaearon Nov 5, 2019
ee8a5ec
Blog post (#2538)
josephsavona Nov 6, 2019
5fcd85e
Minor syntax fix in example code in tutorial.md (#2542)
lokesh-coder Nov 7, 2019
c7c5fb8
Add Hero35 in Community > External Resources page (#2546)
mavropalias Nov 8, 2019
7d257ea
Fix sample code variable name on "Building Great User Experiences wit…
swimyoung Nov 8, 2019
3c5e2bd
Suspense: Start Fetching Early (#2551)
gaearon Nov 9, 2019
5a691e9
Link to blog post
gaearon Nov 9, 2019
4f57bfd
Wrong link to Profiling components article (#2552)
nhevia Nov 9, 2019
0be8b72
Add Haitian Creole and Tagalog
tesseralis Nov 10, 2019
bbea522
fix code style in concurrent-mode-reference.md (#2553)
matsakyan Nov 11, 2019
0fb4b10
Update for 16.12 (#2568)
lunaruan Nov 15, 2019
72775e9
Make the experimental notice scarier
gaearon Nov 17, 2019
3794c8a
Update accessibility.md (#2579)
Ivaylo-Kirov Nov 20, 2019
05206d7
Remove dynamic import proposal text (#2564)
jkjustjoshing Nov 25, 2019
4dfde3e
fix typo in concurrent mode/suspense blog post (#2565)
Nov 25, 2019
dd60535
Add React Loop 2020 (#2574)
joemaddalone Nov 25, 2019
598de22
Add Developer Productivity Tips article (#2569)
silviyaboteva Nov 25, 2019
9d878b4
Link to docs from the Concurrent Mode feature comparison table (#2550)
keyz Nov 25, 2019
99b7901
Update examples.md (#2581)
bertday Nov 25, 2019
32a5db0
docs: Unify identifiers in "useImperativeHandle" example (#2590)
pixelass Nov 26, 2019
a46ed60
Add React Cologne to meetups (#2595)
timomeh Nov 28, 2019
e0a0ec3
Add React Barcamp Cologne 2020 to Conferences (#2594)
timomeh Nov 28, 2019
4354c6e
merging all conflicts
reactjs-translation-bot Dec 2, 2019
0f55aad
Resolve conflicts
smikitky Dec 3, 2019
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
14 changes: 7 additions & 7 deletions content/blog/2019-10-22-react-release-channels.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Because the source of truth for React is our [public GitHub repository](https://

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.

## Release Channels
## Release Channels {#release-channels}

> 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.

Expand All @@ -29,15 +29,15 @@ All releases are published to npm, but only Latest uses [semantic versioning](/d

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).

### Latest Channel
### Latest Channel {#latest-channel}

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.

**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.

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).

### Next Channel
### Next Channel {#next-channel}

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.

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

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`.

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

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

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

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.

### Experimental Channel
### Experimental Channel {#experimental-channel}

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.

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

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`.

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

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.

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.

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.**

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

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

Expand Down

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions content/community/articles.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ permalink: community/articles.html
- [How to Use the React Profiler Component to Measure Render Performance](https://medium.com/@adamhenson/how-to-use-the-react-profiler-component-to-measure-performance-improvements-from-hooks-d43b7092d7a8) - Adam Henson's article exemplifying a use case for `<React.Profiler />`.
- [Thinking in React Hooks](https://wattenberger.com/blog/react-hooks) - Amelia Wattenberger's provides visualizations and highlighting the mindset change needed switching from classes to functional components + hooks.
- [React/Redux Links](https://github.com/markerikson/react-redux-links) - Curated tutorial and resource links by Mark Erikson collected on React, Redux, ES6, and more. Very helpful for all kind of developers because of it's categorised content.
- [Developer Productivity Tips from the React Experts](https://www.telerik.com/kendo-react-ui/react-best-practices-and-productivity-tips/) - The KendoReact team curated the top productivity tips of 20+ React experts. Includes tips from Emma Wedekind, Kent C. Dodds, vjeux and many more.
5 changes: 0 additions & 5 deletions content/community/complementary-tools.it-IT.md

This file was deleted.

5 changes: 0 additions & 5 deletions content/community/complementary-tools.ko-KR.md

This file was deleted.

5 changes: 0 additions & 5 deletions content/community/complementary-tools.zh-CN.md

This file was deleted.

19 changes: 0 additions & 19 deletions content/community/conferences.it-IT.md

This file was deleted.

19 changes: 0 additions & 19 deletions content/community/conferences.ko-KR.md

This file was deleted.

15 changes: 15 additions & 0 deletions content/community/conferences.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ December 6, 2019 in Berlin, Germany

[Website](https://reactday.berlin) - [Twitter](https://twitter.com/reactdayberlin) - [Facebook](https://www.facebook.com/reactdayberlin/) - [Videos](https://www.youtube.com/reactdayberlin)

### React Barcamp Cologne 2020 {#react-barcamp-cologne-2020}
February 1-2, 2020 in Cologne, Germany

[Website](https://react-barcamp.de/) - [Twitter](https://twitter.com/ReactBarcamp) - [Facebook](https://www.facebook.com/reactbarcamp)

### ReactConf AU 2020 {#reactconfau}
February 27 & 28, 2020 in Sydney, Australia

Expand All @@ -37,6 +42,11 @@ April 23 - 24, 2020 in Kraków, Poland

[Website](http://appjs.co/react) - [Twitter](https://twitter.com/appjsconf)

### React Day Bangalore 2020 {#react-day-bangalore-2020}
April 25, 2020 in Bangalore, India

[Website](https://reactday.in) - [Twitter](https://twitter.com/ReactDayIn)

### render(ATL) 2020 {#render-atlanta-2020}
May 4-6, 2020. Atlanta, GA, USA.

Expand All @@ -57,6 +67,11 @@ June 15, 2020. Tel Aviv, Israel.

[Website](https://react-next.com/) - [Twitter](https://twitter.com/reactnext) - [Facebook](https://www.facebook.com/ReactNext2016/)

### React Loop 2020 {#react-loop-2020}
June 19, 2020. Chicago, Illinois, USA.

[Website](https://reactloop.com) - [Twitter](https://twitter.com/ReactLoop)

### React Week NY 2020 {#react-week-ny-2020}
July 17, 2020. New York City, USA.

Expand Down
29 changes: 0 additions & 29 deletions content/community/conferences.zh-CN.md

This file was deleted.

5 changes: 0 additions & 5 deletions content/community/examples.it-IT.md

This file was deleted.

5 changes: 0 additions & 5 deletions content/community/examples.ko-KR.md

This file was deleted.

12 changes: 6 additions & 6 deletions content/community/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ There are many example projects created by the React community. Feel free to add

* **[Calculator](https://github.com/ahfarmer/calculator)** Implementation of the iOS calculator built in React
* **[Emoji Search](https://github.com/ahfarmer/emoji-search)** Simple React app for searching emoji
* **[Github Battle App](https://tm.dev/react-course-project/)** Battle two Github users and see the most popular Github projects for any language.
* **[React Powered Hacker News Client](https://github.com/insin/react-hn)** A React & react-router-powered implementation of Hacker News using its Firebase API.
* **[GitHub Battle App](https://tm.dev/react-course-project/)** Battle two GitHub users and see the most popular Github projects for any language.
* **[React Powered Hacker News Client](https://github.com/insin/react-hn)** A React & `react-router`-powered implementation of Hacker News using its Firebase API
* **[Pokedex](https://github.com/alik0211/pokedex)** The list of Pokémon with live search
* **[Shopping Cart](https://github.com/jeffersonRibeiro/react-shopping-cart)** Simple ecommerce cart application built using React
* **[Shopping Cart](https://github.com/jeffersonRibeiro/react-shopping-cart)** Simple e-commerce cart application built using React
* **[Progressive Web Tetris](https://github.com/skidding/flatris)** Besides a beautiful, mobile-friendly implementation of Tetris, this project is a playground for integrating and experimenting with web technologies.
* **[Product Comparison Page](https://github.com/Rhymond/product-compare-react)** Simple Product Compare page built in React
* **[Hacker News Clone React/GraphQL](https://github.com/clintonwoo/hackernews-react-graphql)** Hacker News clone rewritten with universal JavaScript, using React and GraphQL.
* **[Bitcoin Price Index](https://github.com/mrkjlchvz/bitcoin-price-index)** Simple bitcoin price index data from CoinDesk API.
* **[Builder Book](https://github.com/builderbook/builderbook)** Open source web app to write and host documentation or sell books. Built with React, Material-UI, Next, Express, Mongoose, MongoDB.
* **[Hacker News Clone React/GraphQL](https://github.com/clintonwoo/hackernews-react-graphql)** Hacker News clone rewritten with universal JavaScript, using React and GraphQL
* **[Bitcoin Price Index](https://github.com/mrkjlchvz/bitcoin-price-index)** Simple Bitcoin price index data from CoinDesk API
* **[Builder Book](https://github.com/builderbook/builderbook)** Open-source web app to write and host documentation or sell books. Built with React, Material-UI, Next, Express, Mongoose, MongoDB.
* **[GFonts Space](https://github.com/pankajladhar/GFontsSpace)** A space which allows user to play with Google fonts. Built with React, Redux and React-Router.
* **[Course Learn Page](https://github.com/ulearnpro/ulearn)** Open Source LMS script in Laravel 5.8 and ReactJS 16.9
* **[Speedy math](https://github.com/pankajladhar/speedy-math)** An application which allows kids to practice basic Mathematics i.e Addition, Subtraction, Multiply, Comparison. It is a PWA (Progressive web app) with offline support and install as App features.
Expand Down
5 changes: 0 additions & 5 deletions content/community/examples.zh-CN.md

This file was deleted.

2 changes: 2 additions & 0 deletions content/community/external-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ React community には選定された多くの素晴らしいリソースがあ
- [Awesome React Components](https://github.com/brillout/awesome-react-components) - React components についての選定されたリストです。

- [Awesome React Talks](https://github.com/tiaanduplessis/awesome-react-talks) - React talks についての選定されたリストです。

- [Hero35 React Hub](https://hero35.com/stack/react) - React の*すべて*のカンファや講演がカテゴリ別に選定されて収録されているウェブサイトです。
11 changes: 11 additions & 0 deletions content/community/meetups.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,14 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
## Brazil {#brazil}
* [Belo Horizonte](https://www.meetup.com/reactbh/)
* [Curitiba](https://www.meetup.com/pt-br/ReactJS-CWB/)
* [Florianópolis](https://www.meetup.com/pt-br/ReactJS-Floripa/)
* [Goiânia](https://www.meetup.com/pt-br/React-Goiania/)
* [Joinville](https://www.meetup.com/pt-BR/React-Joinville/)
* [Juiz de Fora](https://www.meetup.com/pt-br/React-Juiz-de-Fora/)
* [Maringá](https://www.meetup.com/pt-BR/React-Maringa/)
* [Porto Alegre](https://www.meetup.com/pt-BR/React-Porto-Alegre/)
* [Rio de Janeiro](https://www.meetup.com/pt-BR/React-Rio-de-Janeiro/)
* [Salvador](https://www.meetup.com/pt-BR/ReactSSA)
* [São Paulo](https://www.meetup.com/pt-BR/ReactJS-SP/)
* [Vila Velha](https://www.meetup.com/pt-BR/React-ES/)

Expand Down Expand Up @@ -55,6 +61,7 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
* [Paris](https://www.meetup.com/ReactJS-Paris/)

## Germany {#germany}
* [Cologne](https://www.meetup.com/React-Cologne/)
* [Düsseldorf](https://www.meetup.com/de-DE/ReactJS-Meetup-Dusseldorf/)
* [Hamburg](https://www.meetup.com/Hamburg-React-js-Meetup/)
* [Karlsruhe](https://www.meetup.com/react_ka/)
Expand All @@ -75,6 +82,9 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
* [Delhi NCR](https://www.meetup.com/React-Delhi-NCR/)
* [Jaipur](https://www.meetup.com/JaipurJS-Developer-Meetup/)

## Indonesia {#indonesia}
* [Indonesia](https://www.meetup.com/reactindonesia/)

## Ireland {#ireland}
* [Dublin](https://www.meetup.com/ReactJS-Dublin/)

Expand Down Expand Up @@ -137,6 +147,7 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
* [Chicago, IL - ReactJS](https://www.meetup.com/React-Chicago/)
* [Columbus, OH - ReactJS](https://www.meetup.com/ReactJS-Columbus-meetup/)
* [Dallas, TX - ReactJS](https://www.meetup.com/ReactDallas/)
* [Detroit, MI - Detroit React User Group](https://www.meetup.com/Detroit-React-User-Group/)
* [Irvine, CA - ReactJS](https://www.meetup.com/ReactJS-OC/)
* [Kansas City, MO - ReactJS](https://www.meetup.com/Kansas-City-React-Meetup/)
* [Las Vegas, NV - ReactJS](https://www.meetup.com/ReactVegas/)
Expand Down
20 changes: 0 additions & 20 deletions content/community/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,3 @@
title: Videos
- id: external-resources
title: External Resources
- title: Tools
items:
- id: debugging-tools
title: Debugging
- id: component-workbenches
title: Component Workbenches
- id: jsx-integrations
title: JSX Integrations
- id: starter-kits
title: Starter Kits
- id: routing
title: Routing
- id: model-management
title: Model Management
- id: data-fetching
title: Data Fetching
- id: ui-components
title: UI Components
- id: misc
title: Miscellaneous
15 changes: 0 additions & 15 deletions content/community/tools-comp-workbenches.md

This file was deleted.

12 changes: 0 additions & 12 deletions content/community/tools-data-fetching.md

This file was deleted.

8 changes: 0 additions & 8 deletions content/community/tools-debugging.md

This file was deleted.

Loading