@wordpress/block-serialization-spec-parser 5.1.0 → 5.3.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 +7 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.3.0 (2024-07-10)
|
|
6
|
+
|
|
7
|
+
## 5.2.0 (2024-06-26)
|
|
8
|
+
|
|
5
9
|
## 5.1.0 (2024-06-15)
|
|
6
10
|
|
|
7
11
|
## 5.0.0 (2024-05-31)
|
|
@@ -137,11 +141,11 @@
|
|
|
137
141
|
|
|
138
142
|
## 3.0.0 (2019-03-06)
|
|
139
143
|
|
|
140
|
-
|
|
144
|
+
### Breaking Changes
|
|
141
145
|
|
|
142
146
|
- A `parser.js` file generated from the PEGJS grammar is now outputted in commonjs format.
|
|
143
147
|
|
|
144
|
-
|
|
148
|
+
### New Features
|
|
145
149
|
|
|
146
150
|
- A `parser.php` file generated from the PEGJS grammar is now added upon installation.
|
|
147
151
|
|
|
@@ -151,7 +155,7 @@
|
|
|
151
155
|
|
|
152
156
|
## 2.0.0 (2018-11-12)
|
|
153
157
|
|
|
154
|
-
### Breaking
|
|
158
|
+
### Breaking Changes
|
|
155
159
|
|
|
156
160
|
- JS and PHP parsers now behave consistently when parsing empty attributes.
|
|
157
161
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/block-serialization-spec-parser",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "Block serialization specification parser for WordPress posts.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"build:js": "pegjs --format commonjs -o ./parser.js ./grammar.pegjs",
|
|
39
39
|
"build:php": "node bin/create-php-parser.js"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "122867d355ca4edc63d3a3bbd9411d3a2e1458df"
|
|
42
42
|
}
|