@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -3
  2. 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
- ## Breaking Change
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
- ## New Feature
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 Change
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.1.0",
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": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
41
+ "gitHead": "122867d355ca4edc63d3a3bbd9411d3a2e1458df"
42
42
  }