diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 9a3628e68d..0e014457c5 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,5 +1,7 @@ Unreleased --- +* [*] Add disabled style to `Cell` component [https://github.com/WordPress/gutenberg/pull/50665] +* [**] Disable details settings for not belonged VideoPress videos [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5782] * [***] Enable VideoPress block on Android (only available in Simple WPCOM sites) [#5780] * [**] Tapping any type of nested block moves focus to the nested block directly, rather than requiring multiple taps to navigate down each nesting levels. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5781] diff --git a/gutenberg b/gutenberg index 714d1f05f6..a093361fe9 160000 --- a/gutenberg +++ b/gutenberg @@ -1 +1 @@ -Subproject commit 714d1f05f655e64df1daa76b046224143a2798f7 +Subproject commit a093361fe96a7dc3763a50949952fba638a382c2 diff --git a/jetpack b/jetpack index 5f2d6e6939..5f34572991 160000 --- a/jetpack +++ b/jetpack @@ -1 +1 @@ -Subproject commit 5f2d6e6939ccb6aef986f3a24606c547209078a1 +Subproject commit 5f3457299197bd6adbcae147a0928f4bdba74407 diff --git a/src/setup.js b/src/setup.js index c0bc968a71..55a8bebd77 100644 --- a/src/setup.js +++ b/src/setup.js @@ -50,7 +50,11 @@ const setupHooks = () => { ( endpoints ) => { return { ...endpoints, - GET: [ ...endpoints.GET, /rest\/v1.1\/videos.*/i ], + GET: [ + ...endpoints.GET, + /rest\/v1.1\/videos.*/i, + /wpcom\/v2\/videopress\/\w*\/check-ownership\/.*/i, + ], POST: [ ...endpoints.POST, /wpcom\/v2\/(media)\/.*/i,