Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile
2 unresolved threads
Closes #3518990
Merge request reports
Activity
added 93 commits
-
cb218fd3...09633691 - 92 commits from branch
project:11.x
- 4d1fcda0 - Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile
-
cb218fd3...09633691 - 92 commits from branch
added 10 commits
-
0b48e905...ff186c39 - 5 commits from branch
project:11.x
- 1c8daffa - Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile
- 28a85a7b - Remove syndicate block from update fixture
- f36ef1df - Fix BlockConfigSchemaTest
- 138a9107 - Fix navigation performance test
- 92ff12a1 - Fix StandardPerformanceTest
Toggle commit list-
0b48e905...ff186c39 - 5 commits from branch
88 88 $expected_queries = [ 89 89 'SELECT "base_table"."id" AS "id", "base_table"."path" AS "path", "base_table"."alias" AS "alias", "base_table"."langcode" AS "langcode" FROM "path_alias" "base_table" WHERE ("base_table"."status" = 1) AND ("base_table"."alias" LIKE "/node" ESCAPE ' . "'\\\\'" . ') AND ("base_table"."langcode" IN ("en", "und")) ORDER BY "base_table"."langcode" ASC, "base_table"."id" DESC', 90 90 'SELECT "name", "route", "fit" FROM "router" WHERE "pattern_outline" IN ( "/node" ) AND "number_parts" >= 1', 91 'SELECT 1 AS "expression" FROM "path_alias" "base_table" WHERE ("base_table"."status" = 1) AND ("base_table"."path" LIKE "/rss.xml%" ESCAPE ' . "'\\\\'" . ') LIMIT 1 OFFSET 0', This is the pre-caching path_alias check that previously would have happened in the pre warming step of this test when visiting user/login.
Quoting @berdir
specifically, the reason is that the test visits the user/login page first to warm up global caches, on HEAD, that renders the block and caches the block including that link. but now it only happens on the frontpage view
added 24 commits
-
7d06ae13...b3238209 - 17 commits from branch
project:11.x
- 767e45f9 - Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile
- 3f00d186 - Remove syndicate block from update fixture
- e2730816 - Fix BlockConfigSchemaTest
- c6c79ebc - Fix navigation performance test
- 70ddc6ee - Fix StandardPerformanceTest
- 1e3ec084 - Remove syndicate block from bare fixture
- 0e0ce891 - Hide the syndicate block from being added via the UI
Toggle commit list-
7d06ae13...b3238209 - 17 commits from branch
added 37 commits
-
7d28797c...148d8ddb - 36 commits from branch
project:11.x
- b0569fd1 - Merged 11.x
-
7d28797c...148d8ddb - 36 commits from branch
66 66 } 67 67 } 68 68 69 /** 70 * Implements hook_block_alter(). 71 */ 72 #[Hook('block_alter')] 73 public function blockAlter(&$definitions): void { 74 // Hide the deprecated Syndicate block from the UI. 75 $definitions['node_syndicate_block']['_block_ui_hidden'] = TRUE;
Please register or sign in to reply