Skip to content

Commit 008a2ab

Browse files
author
Brian Vaughn
committed
16.8.0
1 parent d1326f4 commit 008a2ab

File tree

11 files changed

+41
-35
lines changed

11 files changed

+41
-35
lines changed

packages/create-subscription/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "create-subscription",
33
"description": "utility for subscribing to external data sources inside React components",
4-
"version": "16.7.0",
4+
"version": "16.8.0",
55
"repository": {
6-
"type" : "git",
7-
"url" : "https://github.com/facebook/react.git",
6+
"type": "git",
7+
"url": "https://github.com/facebook/react.git",
88
"directory": "packages/create-subscription"
99
},
1010
"files": [

packages/jest-react/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "jest-react",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Jest matchers and utilities for testing React components.",
55
"main": "index.js",
66
"repository": {
7-
"type" : "git",
8-
"url" : "https://github.com/facebook/react.git",
7+
"type": "git",
8+
"url": "https://github.com/facebook/react.git",
99
"directory": "packages/jest-react"
1010
},
1111
"keywords": [

packages/react-art/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "react-art",
33
"description": "React ART is a JavaScript library for drawing vector graphics using React. It provides declarative and reactive bindings to the ART library. Using the same declarative API you can render the output to either Canvas, SVG or VML (IE8).",
4-
"version": "16.7.0",
4+
"version": "16.8.0",
55
"main": "index.js",
66
"repository": {
7-
"type" : "git",
8-
"url" : "https://github.com/facebook/react.git",
7+
"type": "git",
8+
"url": "https://github.com/facebook/react.git",
99
"directory": "packages/react-art"
1010
},
1111
"keywords": [
@@ -27,7 +27,7 @@
2727
"loose-envify": "^1.1.0",
2828
"object-assign": "^4.1.1",
2929
"prop-types": "^15.6.2",
30-
"scheduler": "^0.12.0"
30+
"scheduler": "^0.13.0"
3131
},
3232
"peerDependencies": {
3333
"react": "^16.0.0"

packages/react-dom/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "react-dom",
3-
"version": "16.7.0",
3+
"version": "16.8.0",
44
"description": "React package for working with the DOM.",
55
"main": "index.js",
66
"repository": {
7-
"type" : "git",
8-
"url" : "https://github.com/facebook/react.git",
7+
"type": "git",
8+
"url": "https://github.com/facebook/react.git",
99
"directory": "packages/react-dom"
1010
},
1111
"keywords": [
@@ -20,7 +20,7 @@
2020
"loose-envify": "^1.1.0",
2121
"object-assign": "^4.1.1",
2222
"prop-types": "^15.6.2",
23-
"scheduler": "^0.12.0"
23+
"scheduler": "^0.13.0"
2424
},
2525
"peerDependencies": {
2626
"react": "^16.0.0"

packages/react-is/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "react-is",
3-
"version": "16.7.0",
3+
"version": "16.8.0",
44
"description": "Brand checking of React Elements.",
55
"main": "index.js",
66
"repository": {
7-
"type" : "git",
8-
"url" : "https://github.com/facebook/react.git",
7+
"type": "git",
8+
"url": "https://github.com/facebook/react.git",
99
"directory": "packages/react-is"
1010
},
1111
"keywords": [

packages/react-reconciler/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-reconciler",
33
"description": "React package for creating custom renderers.",
4-
"version": "0.18.0",
4+
"version": "0.19.0",
55
"keywords": [
66
"react"
77
],
@@ -19,8 +19,8 @@
1919
],
2020
"main": "index.js",
2121
"repository": {
22-
"type" : "git",
23-
"url" : "https://github.com/facebook/react.git",
22+
"type": "git",
23+
"url": "https://github.com/facebook/react.git",
2424
"directory": "packages/react-reconciler"
2525
},
2626
"engines": {
@@ -33,7 +33,7 @@
3333
"loose-envify": "^1.1.0",
3434
"object-assign": "^4.1.1",
3535
"prop-types": "^15.6.2",
36-
"scheduler": "^0.12.0"
36+
"scheduler": "^0.13.0"
3737
},
3838
"browserify": {
3939
"transform": [

packages/react-test-renderer/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "react-test-renderer",
3-
"version": "16.7.0",
3+
"version": "16.8.0",
44
"description": "React package for snapshot testing.",
55
"main": "index.js",
66
"repository": {
7-
"type" : "git",
8-
"url" : "https://github.com/facebook/react.git",
7+
"type": "git",
8+
"url": "https://github.com/facebook/react.git",
99
"directory": "packages/react-test-renderer"
1010
},
1111
"keywords": [
@@ -21,8 +21,8 @@
2121
"dependencies": {
2222
"object-assign": "^4.1.1",
2323
"prop-types": "^15.6.2",
24-
"react-is": "^16.7.0",
25-
"scheduler": "^0.12.0"
24+
"react-is": "^16.8.0",
25+
"scheduler": "^0.13.0"
2626
},
2727
"peerDependencies": {
2828
"react": "^16.0.0"

packages/react/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": [
55
"react"
66
],
7-
"version": "16.7.0",
7+
"version": "16.8.0",
88
"homepage": "https://reactjs.org/",
99
"bugs": "https://github.com/facebook/react/issues",
1010
"license": "MIT",
@@ -18,8 +18,8 @@
1818
],
1919
"main": "index.js",
2020
"repository": {
21-
"type" : "git",
22-
"url" : "https://github.com/facebook/react.git",
21+
"type": "git",
22+
"url": "https://github.com/facebook/react.git",
2323
"directory": "packages/react"
2424
},
2525
"engines": {
@@ -29,7 +29,7 @@
2929
"loose-envify": "^1.1.0",
3030
"object-assign": "^4.1.1",
3131
"prop-types": "^15.6.2",
32-
"scheduler": "^0.12.0"
32+
"scheduler": "^0.13.0"
3333
},
3434
"browserify": {
3535
"transform": [

packages/scheduler/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "scheduler",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"description": "Cooperative scheduler for the browser environment.",
55
"main": "index.js",
66
"repository": {
7-
"type" : "git",
8-
"url" : "https://github.com/facebook/react.git",
7+
"type": "git",
8+
"url": "https://github.com/facebook/react.git",
99
"directory": "packages/scheduler"
1010
},
1111
"license": "MIT",

packages/shared/ReactVersion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
'use strict';
99

1010
// TODO: this is special because it gets imported during build.
11-
module.exports = '16.7.0';
11+
module.exports = '16.8.0';

scripts/error-codes/codes.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -305,5 +305,11 @@
305305
"303": "suspense fallback not found, something is broken",
306306
"304": "Maximum number of concurrent React renderers exceeded. This can happen if you are not properly destroying the Readable provided by React. Ensure that you call .destroy() on it if you no longer want to read from it, and did not read to the end. If you use .pipe() this should be automatic.",
307307
"305": "The current renderer does not support hydration. This error is likely caused by a bug in React. Please file an issue.",
308-
"306": "Element type is invalid. Received a promise that resolves to: %s. Lazy element type must resolve to a class or function.%s"
308+
"306": "Element type is invalid. Received a promise that resolves to: %s. Lazy element type must resolve to a class or function.%s",
309+
"307": "Hooks can only be called inside the body of a function component. (https://fb.me/react-invalid-hook-call)",
310+
"308": "Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().",
311+
"309": "Function components cannot have refs. Did you mean to use React.forwardRef()?",
312+
"310": "Rendered more hooks than during the previous render.",
313+
"311": "Should have a queue. This is likely a bug in React. Please file an issue.",
314+
"312": "Rendered more hooks than during the previous render"
309315
}

0 commit comments

Comments
 (0)