@wordpress/element 6.1.0 → 6.2.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 +12 -10
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 6.2.0 (2024-06-26)
6
+
5
7
  ## 6.1.0 (2024-06-15)
6
8
 
7
9
  ## 6.0.0 (2024-05-31)
@@ -44,7 +46,7 @@
44
46
 
45
47
  ## 5.20.0 (2023-10-05)
46
48
 
47
- ## Breaking Changes
49
+ ### Breaking Changes
48
50
 
49
51
  - Remove the WPElement, WPComponent, and WPSyntheticEvent types.
50
52
 
@@ -114,7 +116,7 @@
114
116
 
115
117
  ## 4.14.0 (2022-08-24)
116
118
 
117
- ### Bug Fix
119
+ ### Bug Fixes
118
120
 
119
121
  - Packages: Replace `is-plain-obj` with `is-plain-object` ([#43511](https://github.com/WordPress/gutenberg/pull/43511)).
120
122
 
@@ -142,25 +144,25 @@
142
144
 
143
145
  ## 4.2.0 (2022-03-11)
144
146
 
145
- ### Bug Fix
147
+ ### Bug Fixes
146
148
 
147
149
  - Serialize will now keep correct casing for SVG attributes ([#38936](https://github.com/WordPress/gutenberg/pull/38936)).
148
150
 
149
151
  ## 4.1.0 (2022-01-27)
150
152
 
151
- ### Bug Fix
153
+ ### Bug Fixes
152
154
 
153
155
  - Ensure that the package uses the latest version of React types ([#37365](https://github.com/WordPress/gutenberg/pull/37365)).
154
156
 
155
157
  ## 4.0.3 (2021-10-22)
156
158
 
157
- ### Bug Fix
159
+ ### Bug Fixes
158
160
 
159
161
  - Update `rawHtml` to correctly concatenate multiple strings passed as children (see [35532](https://github.com/WordPress/gutenberg/pull/35532))
160
162
 
161
163
  ## 4.0.0 (2021-07-29)
162
164
 
163
- ### Breaking Change
165
+ ### Breaking Changes
164
166
 
165
167
  - Upgraded React components to work with v17.0 ([#29118](https://github.com/WordPress/gutenberg/pull/29118)). There are no new features in React v17.0 as explained in the [blog post](https://reactjs.org/blog/2020/10/20/react-v17.html).
166
168
 
@@ -179,20 +181,20 @@
179
181
 
180
182
  ## 2.17.1 (2020-09-17)
181
183
 
182
- ### Bug fix
184
+ ### Bug Fixes
183
185
 
184
186
  - Declare @types/react and @types/react-dom dependencies which could cause type errors when using
185
187
  this package with TypeScript ([#25086](https://github.com/WordPress/gutenberg/pull/25086))
186
188
 
187
189
  ## 2.14.0 (2020-05-14)
188
190
 
189
- ### New Feature
191
+ ### New Features
190
192
 
191
193
  - Include TypeScript type declarations ([#21781](https://github.com/WordPress/gutenberg/pull/21781))
192
194
 
193
195
  ## 2.13.1 (2020-04-15)
194
196
 
195
- ### Bug Fix
197
+ ### Bug Fixes
196
198
 
197
199
  - Hide TypeScript type declarations ([#21613](https://github.com/WordPress/gutenberg/pull/21613))
198
200
  after they were found to conflict with DefinitelyTyped provided declarations.
@@ -257,6 +259,6 @@
257
259
 
258
260
  ## 2.0.0 (2018-09-05)
259
261
 
260
- ### Breaking Change
262
+ ### Breaking Changes
261
263
 
262
264
  - Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/element",
3
- "version": "6.1.0",
3
+ "version": "6.2.0",
4
4
  "description": "Element React module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -32,7 +32,7 @@
32
32
  "@babel/runtime": "^7.16.0",
33
33
  "@types/react": "^18.2.79",
34
34
  "@types/react-dom": "^18.2.25",
35
- "@wordpress/escape-html": "^3.1.0",
35
+ "@wordpress/escape-html": "^3.2.0",
36
36
  "change-case": "^4.1.2",
37
37
  "is-plain-object": "^5.0.0",
38
38
  "react": "^18.3.0",
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
44
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
45
45
  }