@wordpress/block-serialization-spec-parser 5.43.0 → 5.44.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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.44.0 (2026-04-15)
6
+
5
7
  ## 5.43.0 (2026-04-01)
6
8
 
7
9
  ## 5.42.0 (2026-03-18)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-serialization-spec-parser",
3
- "version": "5.43.0",
3
+ "version": "5.44.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",
@@ -44,5 +44,5 @@
44
44
  "build:js": "pegjs --format commonjs -o ./parser.js ./grammar.pegjs",
45
45
  "build:php": "node bin/create-php-parser.js"
46
46
  },
47
- "gitHead": "2cea90674d11aa521ec3f71652fb3a6a4c383969"
47
+ "gitHead": "b862d8c84121a47bbeff882f6c87e61681ce2e0d"
48
48
  }
package/shared-tests.js CHANGED
@@ -372,7 +372,7 @@ export const phpTester = ( name, filename ) =>
372
372
  '"attrs":{}'
373
373
  )
374
374
  );
375
- } catch ( e ) {
375
+ } catch {
376
376
  throw new Error(
377
377
  'failed to parse JSON:\n' + process.stdout
378
378
  );
package/.eslintrc.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "overrides": [
3
- {
4
- "files": [ "shared-tests.js" ],
5
- "extends": [ "plugin:@wordpress/eslint-plugin/test-unit" ],
6
- "rules": {
7
- "jest/no-export": "off"
8
- }
9
- }
10
- ]
11
- }