Skip to content

Commit ad445b1

Browse files
committed
Update package.jsons for 16.13.1 patch relase
1 parent 8b48d52 commit ad445b1

File tree

13 files changed

+27
-26
lines changed

13 files changed

+27
-26
lines changed

packages/create-subscription/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-subscription",
33
"description": "utility for subscribing to external data sources inside React components",
4-
"version": "16.13.0",
4+
"version": "16.13.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/facebook/react.git",

packages/eslint-plugin-react-hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "eslint-plugin-react-hooks",
33
"description": "ESLint rules for React Hooks",
4-
"version": "2.5.0",
4+
"version": "2.5.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/facebook/react.git",

packages/jest-react/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-react",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"description": "Jest matchers and utilities for testing React components.",
55
"main": "index.js",
66
"repository": {
@@ -23,9 +23,6 @@
2323
"react": "^16.0.0",
2424
"react-test-renderer": "^16.0.0"
2525
},
26-
"dependencies": {
27-
"object-assign": "^4.1.1"
28-
},
2926
"files": [
3027
"LICENSE",
3128
"README.md",

packages/react-art/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.13.0",
4+
"version": "16.13.1",
55
"main": "index.js",
66
"repository": {
77
"type": "git",
@@ -26,10 +26,11 @@
2626
"create-react-class": "^15.6.2",
2727
"loose-envify": "^1.1.0",
2828
"object-assign": "^4.1.1",
29-
"scheduler": "^0.19.0"
29+
"prop-types": "^15.6.2",
30+
"scheduler": "^0.19.1"
3031
},
3132
"peerDependencies": {
32-
"react": "^16.13.0"
33+
"react": "^16.13.1"
3334
},
3435
"files": [
3536
"LICENSE",

packages/react-dom/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-dom",
3-
"version": "16.13.0",
3+
"version": "16.13.1",
44
"description": "React package for working with the DOM.",
55
"main": "index.js",
66
"repository": {
@@ -19,10 +19,11 @@
1919
"dependencies": {
2020
"loose-envify": "^1.1.0",
2121
"object-assign": "^4.1.1",
22-
"scheduler": "^0.19.0"
22+
"prop-types": "^15.6.2",
23+
"scheduler": "^0.19.1"
2324
},
2425
"peerDependencies": {
25-
"react": "^16.13.0"
26+
"react": "^16.13.1"
2627
},
2728
"files": [
2829
"LICENSE",

packages/react-is/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-is",
3-
"version": "16.13.0",
3+
"version": "16.13.1",
44
"description": "Brand checking of React Elements.",
55
"main": "index.js",
66
"repository": {

packages/react-reconciler/package.json

Lines changed: 4 additions & 3 deletions
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.25.0",
4+
"version": "0.25.1",
55
"keywords": [
66
"react"
77
],
@@ -26,12 +26,13 @@
2626
"node": ">=0.10.0"
2727
},
2828
"peerDependencies": {
29-
"react": "^16.13.0"
29+
"react": "^16.13.1"
3030
},
3131
"dependencies": {
3232
"loose-envify": "^1.1.0",
3333
"object-assign": "^4.1.1",
34-
"scheduler": "^0.19.0"
34+
"prop-types": "^15.6.2",
35+
"scheduler": "^0.19.1"
3536
},
3637
"browserify": {
3738
"transform": [

packages/react-refresh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": [
55
"react"
66
],
7-
"version": "0.8.0",
7+
"version": "0.8.1",
88
"homepage": "https://reactjs.org/",
99
"bugs": "https://github.com/facebook/react/issues",
1010
"license": "MIT",

packages/react-test-renderer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-test-renderer",
3-
"version": "16.13.0",
3+
"version": "16.13.1",
44
"description": "React package for snapshot testing.",
55
"main": "index.js",
66
"repository": {
@@ -20,12 +20,12 @@
2020
"homepage": "https://reactjs.org/",
2121
"dependencies": {
2222
"object-assign": "^4.1.1",
23+
"prop-types": "^15.6.2",
2324
"react-is": "^16.8.6",
24-
"react-shallow-renderer": "^16.13.1",
25-
"scheduler": "^0.19.0"
25+
"scheduler": "^0.19.1"
2626
},
2727
"peerDependencies": {
28-
"react": "^16.13.0"
28+
"react": "^16.13.1"
2929
},
3030
"files": [
3131
"LICENSE",

packages/react/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": [
55
"react"
66
],
7-
"version": "16.13.0",
7+
"version": "16.13.1",
88
"homepage": "https://reactjs.org/",
99
"bugs": "https://github.com/facebook/react/issues",
1010
"license": "MIT",
@@ -29,7 +29,8 @@
2929
},
3030
"dependencies": {
3131
"loose-envify": "^1.1.0",
32-
"object-assign": "^4.1.1"
32+
"object-assign": "^4.1.1",
33+
"prop-types": "^15.6.2"
3334
},
3435
"browserify": {
3536
"transform": [

0 commit comments

Comments
 (0)