@modern-js/plugin-testing 1.15.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @modern-js/plugin-testing
2
2
 
3
+ ## 1.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1100dd58c: chore: support react 18
8
+
9
+ chore: 支持 React 18
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [641592f52]
14
+ - Updated dependencies [3904b30a5]
15
+ - Updated dependencies [1100dd58c]
16
+ - Updated dependencies [a480d6ad0]
17
+ - Updated dependencies [e04e6e76a]
18
+ - Updated dependencies [2808ff5a2]
19
+ - Updated dependencies [81c66e4a4]
20
+ - Updated dependencies [2c305b6f5]
21
+ - @modern-js/utils@1.16.0
22
+ - @modern-js/webpack@1.16.0
23
+ - @modern-js/runtime@1.16.0
24
+ - @modern-js/server@1.16.0
25
+ - @modern-js/babel-preset-app@1.16.0
26
+ - @modern-js/babel-compiler@1.16.0
27
+ - @modern-js/plugin@1.16.0
28
+
3
29
  ## 1.15.0
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.15.0",
14
+ "version": "1.16.0",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -99,12 +99,12 @@
99
99
  "@modern-js-reduck/plugin-effects": "^1.0.2",
100
100
  "@modern-js-reduck/plugin-immutable": "^1.0.1",
101
101
  "@modern-js-reduck/store": "^1.0.3",
102
- "@modern-js/babel-compiler": "1.15.0",
103
- "@modern-js/utils": "1.15.0",
104
- "@modern-js/webpack": "1.15.0",
105
- "@modern-js/babel-preset-app": "1.15.0",
106
- "@modern-js/plugin": "1.15.0",
107
- "@modern-js/server": "1.15.0",
102
+ "@modern-js/babel-compiler": "1.16.0",
103
+ "@modern-js/utils": "1.16.0",
104
+ "@modern-js/webpack": "1.16.0",
105
+ "@modern-js/babel-preset-app": "1.16.0",
106
+ "@modern-js/plugin": "1.16.0",
107
+ "@modern-js/server": "1.16.0",
108
108
  "@testing-library/jest-dom": "^5.14.1",
109
109
  "@testing-library/react": "^12.0.0",
110
110
  "@types/testing-library__jest-dom": "^5.14.3",
@@ -119,7 +119,9 @@
119
119
  "yargs": "^17.0.1"
120
120
  },
121
121
  "peerDependencies": {
122
- "@modern-js/runtime": "^1.15.0"
122
+ "react": ">=17",
123
+ "react-dom": ">=17",
124
+ "@modern-js/runtime": "^1.16.0"
123
125
  },
124
126
  "peerDependenciesMeta": {
125
127
  "@modern-js/runtime": {
@@ -127,21 +129,19 @@
127
129
  }
128
130
  },
129
131
  "devDependencies": {
130
- "@modern-js/core": "1.15.0",
131
- "@modern-js/runtime": "1.15.0",
132
- "@modern-js/bff-core": "1.15.0",
132
+ "react": "^17",
133
+ "react-dom": "^17",
134
+ "@modern-js/core": "1.16.0",
135
+ "@modern-js/runtime": "1.16.0",
136
+ "@modern-js/bff-core": "1.16.0",
133
137
  "@scripts/build": "1.15.0",
134
138
  "@scripts/jest-config": "1.15.0",
135
139
  "@types/jest": "^27",
136
140
  "@types/supertest": "^2.0.11",
137
141
  "@types/node": "^14",
138
- "@types/react": "^17",
139
- "@types/react-dom": "^17",
140
142
  "@types/yargs": "^17.0.2",
141
143
  "@jest/types": "^27.0.6",
142
144
  "jest": "^27",
143
- "react": "^17",
144
- "react-dom": "^17",
145
145
  "typescript": "^4"
146
146
  },
147
147
  "sideEffects": false,