@wordpress/format-library 5.0.3 → 5.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.
- package/CHANGELOG.md +8 -4
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 5.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 5.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -124,7 +128,7 @@
|
|
|
124
128
|
|
|
125
129
|
## 3.1.1 (2022-02-10)
|
|
126
130
|
|
|
127
|
-
### Bug
|
|
131
|
+
### Bug Fixes
|
|
128
132
|
|
|
129
133
|
- Removed unused `@wordpress/dom` and `@wordpress/keycodes` dependencies ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
|
|
130
134
|
|
|
@@ -132,7 +136,7 @@
|
|
|
132
136
|
|
|
133
137
|
## 3.0.0 (2021-07-29)
|
|
134
138
|
|
|
135
|
-
### Breaking
|
|
139
|
+
### Breaking Changes
|
|
136
140
|
|
|
137
141
|
- 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).
|
|
138
142
|
|
|
@@ -171,7 +175,7 @@
|
|
|
171
175
|
|
|
172
176
|
## 1.2.3 (2018-11-20)
|
|
173
177
|
|
|
174
|
-
### Bug
|
|
178
|
+
### Bug Fixes
|
|
175
179
|
|
|
176
180
|
- Link URL validation now works correctly when a URL includes a fragment. Previously any URL containing a fragment failed validation.
|
|
177
181
|
- Link URL validation catches an incorrect number of forward slashes following a url using the http protocol.
|
|
@@ -182,7 +186,7 @@
|
|
|
182
186
|
|
|
183
187
|
## 1.2.0 (2018-11-12)
|
|
184
188
|
|
|
185
|
-
|
|
189
|
+
### New Features
|
|
186
190
|
|
|
187
191
|
- Add URL validation to links.
|
|
188
192
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/format-library",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "Format library for the WordPress editor.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"react-native": "src/index",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "^7.16.0",
|
|
30
|
-
"@wordpress/a11y": "^4.0
|
|
31
|
-
"@wordpress/block-editor": "^13.0
|
|
32
|
-
"@wordpress/components": "^28.0
|
|
33
|
-
"@wordpress/compose": "^7.0
|
|
34
|
-
"@wordpress/data": "^10.0
|
|
35
|
-
"@wordpress/element": "^6.0
|
|
36
|
-
"@wordpress/html-entities": "^4.0
|
|
37
|
-
"@wordpress/i18n": "^5.0
|
|
38
|
-
"@wordpress/icons": "^10.0
|
|
39
|
-
"@wordpress/private-apis": "^1.0
|
|
40
|
-
"@wordpress/rich-text": "^7.0
|
|
41
|
-
"@wordpress/url": "^4.0
|
|
30
|
+
"@wordpress/a11y": "^4.2.0",
|
|
31
|
+
"@wordpress/block-editor": "^13.2.0",
|
|
32
|
+
"@wordpress/components": "^28.2.0",
|
|
33
|
+
"@wordpress/compose": "^7.2.0",
|
|
34
|
+
"@wordpress/data": "^10.2.0",
|
|
35
|
+
"@wordpress/element": "^6.2.0",
|
|
36
|
+
"@wordpress/html-entities": "^4.2.0",
|
|
37
|
+
"@wordpress/i18n": "^5.2.0",
|
|
38
|
+
"@wordpress/icons": "^10.2.0",
|
|
39
|
+
"@wordpress/private-apis": "^1.2.0",
|
|
40
|
+
"@wordpress/rich-text": "^7.2.0",
|
|
41
|
+
"@wordpress/url": "^4.2.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": "^18.0.0",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
51
51
|
}
|