From 394173138eba5225bf913ebe8671e6bf059cc55c Mon Sep 17 00:00:00 2001 From: Shaun Trennery Date: Thu, 20 Feb 2014 14:32:57 +0200 Subject: [PATCH] Addition of 'this.context' component breaking change this.context on components is now reserved for internal use by React closes #1141 --- docs/_posts/2014-02-16-react-v0.9-rc1.md | 1 + docs/_posts/2014-02-20-react-v0.9.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/_posts/2014-02-16-react-v0.9-rc1.md b/docs/_posts/2014-02-16-react-v0.9-rc1.md index 960b26c65e..8da7d318b8 100644 --- a/docs/_posts/2014-02-16-react-v0.9-rc1.md +++ b/docs/_posts/2014-02-16-react-v0.9-rc1.md @@ -68,6 +68,7 @@ In cases where you want to preserve the space adjacent to a newline, you can wri - On mouse wheel events, `deltaY` is no longer negated - When prop types validation fails, a warning is logged instead of an error thrown (with the production build of React, the type checks are now skipped for performance) - On `input`, `select`, and `textarea` elements, `.getValue()` is no longer supported; use `.getDOMNode().value` instead +- this.context on components is now reserved for internal use by React #### New Features diff --git a/docs/_posts/2014-02-20-react-v0.9.md b/docs/_posts/2014-02-20-react-v0.9.md index 0a1b6526d0..c9c890add6 100644 --- a/docs/_posts/2014-02-20-react-v0.9.md +++ b/docs/_posts/2014-02-20-react-v0.9.md @@ -76,6 +76,7 @@ In cases where you want to preserve the space adjacent to a newline, you can wri - On mouse wheel events, `deltaY` is no longer negated - When prop types validation fails, a warning is logged instead of an error thrown (with the production build of React, type checks are now skipped for performance) - On `input`, `select`, and `textarea` elements, `.getValue()` is no longer supported; use `.getDOMNode().value` instead +- this.context on components is now reserved for internal use by React #### New Features