File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ### Breaking Changes
6
+
7
+ - Use React's automatic runtime to transform JSX ([ #61692 ] ( https://github.com/WordPress/gutenberg/pull/61692 ) ).
8
+
5
9
## 7.42.0 (2024-05-16)
6
10
7
11
## 7.41.0 (2024-05-02)
Original file line number Diff line number Diff line change 9
9
- Replaced ` classnames ` package with the faster and smaller ` clsx ` package ([ #61138 ] ( https://github.com/WordPress/gutenberg/pull/61138 ) ).
10
10
- Upgrade ` @use-gesture/react ` package to ` ^10.3.1 ` ([ #61503 ] ( https://github.com/WordPress/gutenberg/pull/61503 ) ).
11
11
- Upgrade ` framer-motion ` package to version ` ^11.1.9 ` ([ #61572 ] ( https://github.com/WordPress/gutenberg/pull/61572 ) ).
12
+ - Remove usage of deprecated spreading of ` key ` prop in JSX ([ #61692 ] ( https://github.com/WordPress/gutenberg/pull/61692 ) ).
12
13
13
14
### Enhancements
14
15
Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ### Breaking Changes
6
+
7
+ - Use React's automatic runtime to transform JSX ([ #61692 ] ( https://github.com/WordPress/gutenberg/pull/61692 ) ).
8
+
5
9
## 27.9.0 (2024-05-16)
6
10
7
11
### New Features
Original file line number Diff line number Diff line change @@ -48,6 +48,10 @@ module.exports = [
48
48
} ,
49
49
{
50
50
...sharedConfig ,
51
+ mode :
52
+ process . env . NODE_ENV === 'production'
53
+ ? 'production'
54
+ : 'development' ,
51
55
name : 'react-jsx-runtime' ,
52
56
entry : {
53
57
'react-jsx-runtime' : {
You can’t perform that action at this time.
0 commit comments