@wordpress/e2e-tests 9.4.1-next.v.202602111440.0 → 9.5.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
+ ## 9.5.0 (2026-02-18)
6
+
5
7
  ## 9.4.0 (2026-01-29)
6
8
 
7
9
  ## 9.3.0 (2026-01-16)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/e2e-tests",
3
- "version": "9.4.1-next.v.202602111440.0+a307a2e35",
3
+ "version": "9.5.0",
4
4
  "description": "Test plugins and mu-plugins for E2E tests in WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -24,8 +24,8 @@
24
24
  "npm": ">=8.19.2"
25
25
  },
26
26
  "dependencies": {
27
- "@wordpress/interactivity": "^6.39.1-next.v.202602111440.0+a307a2e35",
28
- "@wordpress/interactivity-router": "^2.39.2-next.v.202602111440.0+a307a2e35"
27
+ "@wordpress/interactivity": "^6.40.0",
28
+ "@wordpress/interactivity-router": "^2.40.0"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "jest": ">=29",
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "e0a2324a9690e55f4101d61113f4bbbf240b55ed"
39
+ "gitHead": "376124aa10dbc2cc0c81c964ec00b99fcfee5382"
40
40
  }
@@ -44,7 +44,7 @@ add_action(
44
44
  )
45
45
  );
46
46
 
47
- // PHP-only block with auto_register flag, will be auto-registered without JS code
47
+ // PHP-only block with autoRegister flag, will be auto-registered without JS code
48
48
  register_block_type(
49
49
  'test/auto-register-block',
50
50
  array(
@@ -67,8 +67,8 @@ add_action(
67
67
  );
68
68
  },
69
69
  'supports' => array(
70
- 'auto_register' => true,
71
- 'color' => array(
70
+ 'autoRegister' => true,
71
+ 'color' => array(
72
72
  'background' => true,
73
73
  'text' => false,
74
74
  ),
@@ -76,7 +76,7 @@ add_action(
76
76
  )
77
77
  );
78
78
 
79
- // PHP-only block WITHOUT auto_register flag, will NOT be auto-registered without JS code
79
+ // PHP-only block WITHOUT autoRegister flag, will NOT be auto-registered without JS code
80
80
  register_block_type(
81
81
  'test/php-only-no-auto-register',
82
82
  array(
@@ -162,7 +162,7 @@ add_action(
162
162
  );
163
163
  },
164
164
  'supports' => array(
165
- 'auto_register' => true,
165
+ 'autoRegister' => true,
166
166
  ),
167
167
  )
168
168
  );