@wordpress/e2e-tests 9.5.1-next.v.202602271551.0 → 9.6.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.6.0 (2026-03-04)
6
+
5
7
  ## 9.5.0 (2026-02-18)
6
8
 
7
9
  ## 9.4.0 (2026-01-29)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/e2e-tests",
3
- "version": "9.5.1-next.v.202602271551.0+464abe399",
3
+ "version": "9.6.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.40.1-next.v.202602271551.0+464abe399",
28
- "@wordpress/interactivity-router": "^2.40.1-next.v.202602271551.0+464abe399"
27
+ "@wordpress/interactivity": "^6.41.0",
28
+ "@wordpress/interactivity-router": "^2.41.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": "95aa7055a5757219e2d96a91efc69f7dd1b2d4c3"
39
+ "gitHead": "8bfc179b9aed74c0a6dd6e8edf7a49e40e4f87cc"
40
40
  }
@@ -172,7 +172,7 @@ function gutenberg_test_block_bindings_registration() {
172
172
  'type' => 'number',
173
173
  'show_in_rest' => true,
174
174
  'single' => true,
175
- 'default' => 5.5,
175
+ 'default' => 0.5,
176
176
  )
177
177
  );
178
178
  register_meta(
@@ -183,7 +183,7 @@ function gutenberg_test_block_bindings_registration() {
183
183
  'type' => 'integer',
184
184
  'show_in_rest' => true,
185
185
  'single' => true,
186
- 'default' => 5,
186
+ 'default' => 3,
187
187
  )
188
188
  );
189
189
  register_meta(
@@ -87,6 +87,14 @@ add_action(
87
87
  )
88
88
  );
89
89
 
90
+ // Add binding support for the auto-register-with-controls block.
91
+ add_filter(
92
+ 'block_bindings_supported_attributes_test/auto-register-with-controls',
93
+ static function () {
94
+ return array( 'title', 'count', 'spacing', 'showEmojis' );
95
+ }
96
+ );
97
+
90
98
  // PHP-only block with auto-generated controls from various attribute types
91
99
  register_block_type(
92
100
  'test/auto-register-with-controls',